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=38®istration__remaining_waiting_list_capacity__isnull=true
{ "meta": { "count": 32742, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=39®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=37®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "kulke:68170", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1518238, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-04T07:13:18.286079Z", "last_modified_time": "2026-03-04T07:13:18.286095Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785960.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1518238/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-04T07:13:18.139245Z", "last_modified_time": "2026-03-20T01:14:13.237151Z", "date_published": null, "start_time": "2026-04-27T16: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": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5F0D9951C5930857DCD7130CFC99A03F/Pop_Jazz_Konservatorion_ammattiopiskelijoiden_konsertit", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5F0D9951C5930857DCD7130CFC99A03F/Pop_Jazz_Konservatorion_ammattiopiskelijoiden_konsertit", "en": "http://www.malmitalo.fi/en/events/event/5F0D9951C5930857DCD7130CFC99A03F/Pop_Jazz_Konservatorion_ammattiopiskelijoiden_konsertit" }, "description": { "fi": "<p>Ammattiopiskelijoista koostuvat bändit saapuvat Malmitaloon ja illassa nähdään kaksi konserttia:</p><p>Unelmiin mä jään -Disney-musikaali</p><p>Unelmiin mä jään -Disneymusikaali kertoo kahden eri taustoista tulevan nuoren ystävyydestä. Cindy (Jenna Mikkanen) ja Rosie (Aino Oikarinen) kohtaavat musiikkikoulussa yhteisen unelmansa äärellä, ja heidän välinen ystävyys alkaa kuin itsestään. Vanhat tuulet puhaltavat koulun käytäville, mikä saa ystävysten välit rakoilemaan, ja entisen elämän vaietut salaisuudet nousevat jälleen pintaan. Miksi menneisyyttä salataan? Kuka huijaa ketä? Miten Cindyn ja Rosien ystävyydelle käy?</p><p>Unelmiin mä jään” on Helsingin Pop & Jazz konservatorion opiskelijoiden käsikirjoittama ja ohjaama teos. Lavalla nähdään yli 20-henkinen kokoonpano, joka herättää eloon uuden tarinan Disneyn klassikoiden säestämänä. Tule näkemään, kun satukirja avautuu, ja kuule lempi Disney-kappaleesi livenä.</p><p>Solistit:<br>Laulu - Jenna Mikkanen<br>Laulu - Aino OIkarinen</p><p>Bändi:<br>Piano - Helmi Ketola<br>Kitara - Elvan Deveci<br>Basso - Daniel Boswell<br>Rummut - Vilppu Lokki<br>Perkat - Joel Mäntyvaara</p><p>Orkesteri:<br>Alttoviulu - Elena Rusakova<br>Viulu - Ellen Hellberg <br>Viulu - Riina Åmann<br>Sello - Olivia Sirén<br>Saksofoni - Eemeli Ylianttila<br>Klarinetti - Silja Muttonen<br>Huilu - Anniina Tuomaala<br>Pasuuna - Emily Miettunen<br>Trumpetti - Joona Hirvonen</p><p>Ensemble:<br>Taustalaulu - Aino Kallio<br>Taustalaulu - Minttu Tenhovirta<br>Taustalaulu - Aurora Konttinen<br>Taustalaulu - Ruut Särkijärvi</p><p>Laulu - Panu Laakso<br>Kertoja - Axel Arttio</p><p>GAGA - The Mayhem Miniature' on kokonaisvaltainen pienoismalli Lady Gagan 2025-2026 konserttikiertueesta The Mayhem Ball Tour. Lavashow'sta on tehty artistinsa arvoinen, mikä sisältää kahden koreografin tanssikoreografiat, kahdeksan hengen livebändin, sekä laulusolistin sovituksen ja ohjauksen läpi ohjelmiston. Solistina toimii kokonaisvaltainen esiintyjä ja ammattilaulaja Saimi Räty.</p><p>Ohjelmisto on monipuolinen, kuten Gagan omalla kiertueellakin. Tulet esimerkiksi kuulemaan kappaleita legendaariselta The Fame -albumilta, sekä myös uusimmalta läpilyöneeltä albumilta Mayhem. Olitpa sitten Gaga -fani taikka et, tämä on mahdollisuus nauttia taidokkaimmista laulunuoteista, vahvan elektronisen musiikin voimasta, sekä ammattitason tanssijoista, laulusolisti tanssijana mukaanlukien. Tervetuloa Mayhemiin!</p><p>Saimi Räty - voc<br>Onni Koivisto - drums<br>Sofía Kaipainen - bass, synth bass<br>Elli Astikainen - synth, synth bass<br>Aamu Kallio - keys, synth<br>Pyry Aaltonen - guitar<br>Elizabeth Krause - B voc</p><p>Kesto: 2 t, sis 20min väliajan</p><p>Vapaa pääsy, tervetuloa!</p>" }, "name": { "fi": "Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit", "sv": "Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit", "en": "Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68170/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68022", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-793/?format=api" }, "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": 1494628, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-26T10:12:59.394133Z", "last_modified_time": "2026-01-26T10:12:59.394145Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777685.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494628/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-26T10:12:59.296387Z", "last_modified_time": "2026-03-20T01:14:13.114629Z", "date_published": null, "start_time": "2026-04-27T13:00:00Z", "end_time": "2026-04-27T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.", "sv": "På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.", "en": "On Monday afternoons, we will be doing arts and crafts and spending fun time together." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D7E6BE36D309F5C3FA61877105AC331B/Nuorten_suunnittelemat_iltapaivat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D7E6BE36D309F5C3FA61877105AC331B/Eftermiddagar_planerade_av_unga", "en": "http://www.vuotalo.fi/en/events/event/D7E6BE36D309F5C3FA61877105AC331B/Afternoons_planned_by_young_people" }, "description": { "fi": "<p>Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.</p><p>Vuosaarelaiset nuoret ovat ideoineet tekemistä koulu- tai työpäivän päätteeksi. Kaikki ovat tervetulleita, ikään katsomatta. Iltapäivät ovat ilmaisia ja tarvittavat materiaalit saa paikan päältä.</p><p>Pistäydy tai viihdy vaikka koko aika!</p><p>Työpajoja ohjaavat nuorisotyöntekijä sekä nuoret itse. Tarkemmasta ohjelmasta kerrotaan Vuotalon aulassa ja somekanavissa viimeistään viikkoa ennen.</p><p>Vapaa pääsy</p><p>Huom! Ei järjestetä 6.4.2026.</p>", "sv": "<p>På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.</p><p>Ungdomar i Nordsjö har kommit med idéer om vad man kan göra när skol- eller arbetsdagen är slut. Alla är välkomna, oavsett ålder. Eftermiddagarna är kostnadsfria och det nödvändiga materialet finns tillgängligt på plats. Titta in eller stanna hela tiden!</p><p>Workshopparna leds av en ungdomsledare och ungdomarna själva. Det detaljerade programmet publiceras i Nordhusets aula och på sociala medier minst en vecka innan.</p>", "en": "<p>On Monday afternoons, we will be doing arts and crafts and spending fun time together.</p><p>Young people in Vuosaari have come up with ideas for things to do at the end of the school or workday. All are welcome, regardless of age. The afternoons are free of charge and the materials needed are available on-site. Drop by for a moment or stay the whole time!</p><p>The workshops are run by a youth worker and the young people themselves. The detailed programme will be posted in the Vuotalo lobby and on social media at least one week in advance.</p>" }, "name": { "fi": "Nuorten suunnittelemat iltapäivät – Operaatio Pulssi", "sv": "Eftermiddagar planerade av unga – Operaatio Pulssi", "en": "Afternoons planned by young people – Operation Pulse!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68022/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67930", "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: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: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-4069809", "sv": "https://www.lippu.fi/eventseries/name-4069809", "en": "https://www.lippu.fi/eventseries/name-4069809" }, "description": null, "price": { "fi": "33,90-65,60 €", "sv": "33,90-65,60 €", "en": "33,90-65,60 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494405, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-08T11:13:11.037563Z", "last_modified_time": "2026-01-08T11:13:11.037578Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783592.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494405/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-08T11:13:10.931888Z", "last_modified_time": "2026-03-20T01:14:12.971752Z", "date_published": null, "start_time": "2026-04-26T16: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": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CC31813E6A8C9BF0AA9EBFC33D0C4CF8/Illallinen_holmon_kanssa_-komedia_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/CC31813E6A8C9BF0AA9EBFC33D0C4CF8/Komedin_Middag_med_en_idiot_", "en": "http://www.savoyteatteri.fi/en/events/event/CC31813E6A8C9BF0AA9EBFC33D0C4CF8/Dinner_with_a_Fool_comedy_" }, "description": { "fi": "<p>Ainutlaatuinen virolainen komediakaksikko Boris Bogdanov – Sergei Rymar uudessa komediassa ”Illallinen hölmön kanssa”!</p><p>Kun loistava äly kohtaa nerokkaan tyhmyyden – alkaa todellinen esitys!</p><p><b>”Illallinen hölmön kanssa”</b> on loistava tilannekomedia, jossa nauru sekoittuu ironiaan ja näennäisen keveyden takana piilee syvällisiä teemoja.</p><p>Joka viikko joukko ylimielisiä intellektuelleja järjestää illallisen... typerysten kanssa. Jokainen tuo mukanaan mielestään naurettavimman vieraan – hauskan pilkan vuoksi. Mutta tällä kertaa kaikki menee pieleen.</p><p>Päähenkilö, itsevarma kustantaja Brochan, löytää ”ihanteellisen” ehdokkaan: yksinkertaisen verotarkastajan, jolla on hullu intohimo keräilyyn. Mutta tämä ”typerys” ei olekaan niin yksinkertainen. Sen sijaan, että hänestä tulisi pilkan kohde, Pignon alkaa tuhota Brochandin elämän. Sarjan absurdeja sattumia seurauksena ilta muuttuu katastrofiksi, ja itserakas älykkö muuttuu metsästäjästä oman suunnitelmansa uhriksi.</p><p>Komedia ”Illallinen hölmön kanssa” on todellinen ranskalaisen huumorin juhla: nokkelat vuoropuhelut, hienostuneet juonenkäänteet, värikkäät hahmot ja kansainvälinen näyttelijäkaarti tarjoavat teille illan täynnä naurua ja loistavaa teatteria.</p><p><b>Esitys on venäjänkielinen.</p><p>Tuottaja:</b> Igor Levin (Israel-Latvia)<br><b>Ohjaaja:</b> Boris Bogdanov (Viro)<br><b>Näyttelijät:</b> <br>Pierre Brochan - Sergei Rymar (Viro)<br>François Pignon - Boris Bogdanov (Viro)<br>Tarkastaja Lucien Cheval – Andrei Klimenko (Ukraina)<br>Christine Brochan, Marlene Sassua – Julia Efimenko (Ukraina)<br>Tohtori, Justine Leblanc – Maksim Terletski (Latvia)</p><p>Hitistä ”Banketti Pariisissa” tunnetuilta tekijöiltä – ilta, joka tarjoaa sinulle naurua, keveyttä ja hyvää mieltä!</p><p>Kesto n. 2 h 55 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>Unika estniska komediduon Boris Bogdanov – Sergei Rymar i nya komedin ”Middag med en idiot”!</p><p>När ett briljant intellekt möter genialisk idioti – då börjar den verkliga showen!</p><p>”Middag med en iditot” är en lysande situationskomedi, där skrattet blandas med ironi och djupa teman döljer sig bakom det synbart lättsamma.</p><p>Varje vecka ordnar en grupp arroganta intellektuella en middag... med idioter. Alla tar med sig den löjligaste gästen de kan tänka sig – som ett kul skämt. Men den här gången går allt fel.</p><p>Huvudpersonen, den självsäkre förläggaren Brochan, hittar den ”perfekta” kandidaten: en enkel skatteinspektör med en galen passion för samlande. Men denna ”dumhet” är inte så enkel. I stället för att bli förlöjligad börjar Pignon förstöra Brochans liv. Genom en rad absurda sammanträffanden förvandlas kvällen till en katastrof, och den självbelåtne intellektualisten går från att vara jägare till att bli offer för sin egen plan.</p><p>Komedin ”Middag med en idiot” är en verklig fest av fransk humor: finurliga dialoger, oväntade vändningar, färggranna karaktärer och ett internationellt garde av skådespelare bjuder på en kväll fylld av skratt och briljant teater.</p><p>Föreställningen är på ryska.</p><p>Producent: Igor Levin (Israel-Lettland)<br>Regissör: Boris Bogdanov (Estland)<br>Medverkande:<br>Pierre Brochan – Sergei Rymar (Estland)<br>François Pignon – Boris Bogdanov (Estland)<br>Inspektör Lucien Cheval – Andrei Klimenko (Ukraina)<br>Christine Brochan, Marlene Sassua – Julia Efimenko (Ukraina)<br>Doktorn, Justine Leblanc – Maksim Terletski (Lettland)</p><p>Av skaparna av hitten ”Banketten i Paris” – en kväll som bjuder på skratt, lättsamhet och gott humör!</p><p>Längd ca 2 h 55 min., inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>The unique Estonian comedy duo Boris Bogdanov and Sergei Rymar in a new production of the comedy Dinner with a Fool!</p><p>When a brilliant mind encounters genius stupidity, the real show begins!</p><p><b>Dinner with a Fool</b> is a brilliant comedy of manners in which laughter coexists with irony, and deep themes are hidden behind apparent lightness.</p><p>Every week, a group of arrogant intellectuals hosts a dinner party... with fools. Each brings along the most ridiculous guest they can find, for the sake of merry mockery. But this time, things don't go according to the plan.</p><p>The main character, Brochan, a self-confident publisher, finds the “perfect” candidate: a simple-minded tax inspector with a mad passion for collecting. But this “fool” turns out to be not so simple. Instead of becoming the object of ridicule, Pignon begins to destroy Brochan's life. Due to a series of absurd coincidences, the evening turns into a disaster, and the smug intellectual from hunter to victim of his own plan.</p><p>The comedy Dinner with a Fool is a true celebration of French humor: witty dialogue, elegant plot twists, colorful characters, and an international cast will give you an evening of laughter and brilliant theater!</p><p><b>The play is in Russian.</p><p>Producer:</b> Igor Levin (Israel-Latvia)<br><b>Director:</b> Boris Bogdanov (Estonia)<br><b>Cast: </b><br>Pierre Brochan - Sergei Rymar (Estonia)<br>François Pignon - Boris Bogdanov (Estonia)<br>Inspector Lucien Cheval – Andrey Klimenko (Ukraine)<br>Christine Brochan, Marlene Sassua – Yulia Efimenko (Ukraine)<br>Doctor, Justine Leblanc – Maxim Terletsky (Latvia)</p><p><i>From the creators of the hit “Banquet in Paris” – an evening that will give you laughter, lightness, and a great mood!</i></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><p>***</p>", "ru": "<p>Уникальный Эстонский комедийный дуэт Борис Богданов – Сергей Рымар в новой постановке комедии «Ужин с дураком»!</p><p>Когда блестящий ум сталкивается с гениальной глупостью — начинается настоящий спектакль!</p><p><b>Ужин с дураком</b> - это блистательная комедия положений, в которой смех соседствует с иронией, а за кажущейся легкостью скрываются глубокие темы.</p><p>Каждую неделю группа высокомерных интеллектуалов устраивает ужин… с дураками. Каждый приводит с собой самого нелепого, по его мнению, гостя — ради весёлой насмешки. Но на этот раз всё пойдёт не по плану.</p><p>Главный герой, Брошан - самоуверенный издатель — находит «идеального» кандидата: простодушного налогового инспектора с безумной страстью к коллекционированию. Вот только этот «дурак» оказывается не таким уж простым. Вместо того, чтобы стать объектом насмешек, Пиньон начинает разрушать жизнь Брошана. Из-за череды нелепых случайностей вечер превращается в катастрофу, а самодовольный интеллектуал из охотника - в жертву собственного плана.</p><p>Комедия «Ужин с дураком» - это настоящий праздник французского юмора: остроумные диалоги, изящные сюжетные повороты, яркие персонажи и международный актёрский состав подарят вам вечер смеха и блестящего театра.</p><p><b>Спектакль на русском языке.</p><p>Продюсер:</b> Игорь Левин (Израиль-Латвия)<br><b>Режиссер:</b> Борис Богданов (Эстония)<br><b>В ролях: </b><br>Пьер Брошан - Сергей Рымар (Эстония)<br>Франсуа Пиньон - Борис Богданов (Эстония)<br>Инспектор Люсьен Шеваль – Андрей Клименко (Украина)<br>Кристин Брошан, Марлен Сассуа – Юлия Ефименко (Украина)<br>Доктор, Жюстин Леблан – Максим Терлецкий (Латвия)</p><p>От создателей хита «Банкет в Париже» — вечер, который подарит вам смех, лёгкость и отличное настроение!</p><p>Партер является зоной (K18), где разрешено употребление напитков в пластиковых бутылках и жестяных банках, приобретенных в буфете театра.<br>Не разрешается приносить напитки на балкон!</p>" }, "name": { "fi": "Illallinen hölmön kanssa -komedia / Комедия \"Ужин с дураком\"", "sv": "Komedin Middag med en idiot / Комедия \"Ужин с дураком\"", "en": "Dinner with a Fool comedy / Комедия \"Ужин с дураком\"" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "SIA Unicorn Production", "sv": "SIA Unicorn Production", "en": "SIA Unicorn Production" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67930/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67905", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/mimmit-paa-svenska-vuotalo-21086435/", "sv": "https://www.lippu.fi/event/mimmit-paa-svenska-vuotalo-21086435/", "en": "https://www.lippu.fi/event/mimmit-paa-svenska-vuotalo-21086435/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494326, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-29T12:13:41.977620Z", "last_modified_time": "2025-12-29T12:13:41.977639Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780511.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-29T12:13:41.850951Z", "last_modified_time": "2026-03-20T01:14:12.845876Z", "date_published": null, "start_time": "2026-04-25T14: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": "Mimmit på svenska är ett svängigt barnmusikband som sprudlar av musikglädje.", "sv": "Mimmit på svenska är ett svängigt barnmusikband som sprudlar av musikglädje." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5E241CC8AE8F582B030F59D853382F16/Mimmit_pa_svenska", "sv": "http://www.vuotalo.fi/sv/evenemang/event/5E241CC8AE8F582B030F59D853382F16/Mimmit_pa_svenska", "en": "http://www.vuotalo.fi/en/events/event/5E241CC8AE8F582B030F59D853382F16/Mimmit_pa_svenska" }, "description": { "fi": "<p>Mimmit på svenska är ett svängigt barnmusikband som sprudlar av musikglädje.</p><p>Under Mimminas konsert lär vi oss nya spännande saker. I de fartyllda sångerna träffar vi på olika djur, vi äventyrar på Antarktis, i dinosauriernas värld och i männinskans tarmsystem. De medryckande låtarna lär oss enkelt om barnens rättigheter och mycket annat spännande som ryms i Musiksnilles geniala huvud. Vi får givetvis också höra Mimminas hitlåtar \"Tvätta dina händer\", \"Borsta dina tänder\" och \"Familjesamba\".<br> <br>Översättningarna är gjorda av Pasi Hiihtola. Mimminas \"Musiksnille\" skiva nominerades till årets barnskiva år 2020. Bandets andra digiskiva utkom i juni 2024.<br> <br>På scenen: Daniela Fogelholm, Nina Palmgren, Pauliina Lerche med band.</p><p>Språk: svenska<br>Längd: ca 40 min.</p>", "sv": "<p>Mimmit på svenska är ett svängigt barnmusikband som sprudlar av musikglädje.</p><p>Under Mimminas konsert lär vi oss nya spännande saker. I de fartyllda sångerna träffar vi på olika djur, vi äventyrar på Antarktis, i dinosauriernas värld och i männinskans tarmsystem. De medryckande låtarna lär oss enkelt om barnens rättigheter och mycket annat spännande som ryms i Musiksnilles geniala huvud. Vi får givetvis också höra Mimminas hitlåtar \"Tvätta dina händer\", \"Borsta dina tänder\" och \"Familjesamba\".<br> <br>Översättningarna är gjorda av Pasi Hiihtola. Mimminas \"Musiksnille\" skiva nominerades till årets barnskiva år 2020. Bandets andra digiskiva utkom i juni 2024.<br> <br>På scenen: Daniela Fogelholm, Nina Palmgren, Pauliina Lerche med band.</p><p>Språk: svenska<br>Längd: ca 40 min.</p>" }, "name": { "fi": "Mimmit på svenska – Ruotsinkielinen konsertti", "sv": "Mimmit på svenska", "en": "Mimmit på svenska" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67905/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67837", "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-4054268", "sv": "https://www.lippu.fi/eventseries/name-4054268", "en": "https://www.lippu.fi/eventseries/name-4054268" }, "description": null, "price": { "fi": "35 €", "sv": "35 €", "en": "35 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494215, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-15T14:13:46.766831Z", "last_modified_time": "2025-12-15T14:13:46.766851Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783072.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494215/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-15T14:13:46.606854Z", "last_modified_time": "2026-03-20T01:14:12.690940Z", "date_published": null, "start_time": "2026-04-25T13: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": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/AB7D31428560B96D05EE12A0790F761E/Rehupiikles_Paivapohona", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/AB7D31428560B96D05EE12A0790F761E/Rehupiikles_Paivapohona", "en": "http://www.savoyteatteri.fi/en/events/event/AB7D31428560B96D05EE12A0790F761E/Rehupiikles_Paivapohona" }, "description": { "fi": "<p><i>“Rehupiikles konsertti. Kun tappelet itsesi kanssa peilin eressä miettien, ostanko liput ja lähären Rehupiikles Päiväpöhonä konserttiin niin tässä sulle vinkkejä itsetutkiskelun tueksi. Rehupiikles-konsertissa on aina hyviä ja huonoja puolia”</p><p><b>Hyvät puolet</b><br>1. Pääsöö aioos maate kun konsertti alkaa jo neljältä<br>2. Kukaan ei kysele ookko pöhönäs. Ku mä voin olla.. Päiväpöhönäs<br>3. Pehemooset penkit<br>4. Viinatarjoolu tauolla<br>5. Halavat liput<br>6. Lapset voi oppia jotain uutta, mitä ei internetissä opeteta.<br>Vaikkapa <br>7. Helsingissä on paljon katu-ja liikennevaloja</p><p><b>Huonot puolet</b><br>Ei tuu ny heti mieleen, jonsei mahdollisesti yhtyeestä tarttuvaa hajua lasketa negatiiviseksi ( vihriä Mennen)</i></p><p>Konsertti alkaa nimensä mukaisesti jo päivällä klo 16.00. Etkot puolen päivän maissa. Etkot on vähän niinkuin alkuverryttely. Lihakset lämpöösiksi. Ei kai kukaan nyt kylmiltään konserttiin tuu. Näillä etkoilla kerrataan konsertin käyttäymissäännöt ja miten niitä rikotaan.</p><p>Kesto n. 2 h, sisältää väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>”Rehupiikles konsert. När du står framför spegeln och kämpar med om du ska köpa biljetter och gå på Rehupiikles Päiväpöhonä-konsert, så här är några tips till stöd för din självrannsakan. Det finns alltid både fördelar och nackdelar med en Rehupiikles-konsert”</p><p>Fördelarna<br>1. Man kommer i säng i tid när konserten börjar redan klockan fyra<br>2. Ingen frågar om du är full. När jag kan vara... Dagsfull<br>3. Mjuka bänkar<br>4. Spritservering under pausen<br>5. Billiga biljetter<br>6. Barnen kan lära sig något nytt som de inte lär sig på nätet.<br>Till exempel<br>7. Det finns många gatlyktor och trafikljus i Helsingfors</p><p>Nackdelar<br>Jag kan nu inte komma på något, om nu inte lukten från bandet räknas som negativ (grön Mennen)</p><p>Konserten börjar redan under dagtid, kl. 16.00. Förfest vid lunchtid. Förfesten är lite som en uppvärmning. Vi får igång musklerna. Ingen kommer väl kall till en konsert. Under den här förfesten går vi igenom uppförandereglerna för konserten och hur man bryter mot dem.</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>“A Rehupiikles concert. If you’re fighting yourself in front of a mirror wondering whether you should buy tickets and go to the Rehupiikles Päiväpöhonä concert, here are some tips to support your introspection. There are always good and bad things about a Rehupiikles concert.”</p><p>The good things<br>1. You’ll get to go to bed early, as the show starts at four in the afternoon<br>2. Nobody asks you if you’re drunk. You see, I may be... day drinking<br>3. The seats are cushioned<br>4. They serve booze during the break<br>5. Cheap tickets<br>6. Children can learn something new that is not taught on the internet.<br>For example:<br>7. Helsinki has a lot of street and traffic lights</p><p>The bad things<br>Can’t really think of any right now, unless you count the smell of the band (green Mennen) as a bad thing.</p><p>As the name Päiväpöhonä suggests, the concert will start during daytime, at 16.00. Pre-party at around noon. The pre-party is kind of like warming up. You warm up your muscles. No one goes to a concert without warming up, right? At the pre-party, we’ll go over the code of conduct at the concert and how we will breach it.</p><p>Duration: roughly 2 h, incl. intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p>" }, "name": { "fi": "Rehupiikles: Päiväpöhönä", "sv": "Rehupiikles: Päiväpöhönä", "en": "Rehupiikles: Päiväpöhönä" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Central Line Entertainment Oy", "sv": "Central Line Entertainment Oy", "en": "Central Line Entertainment Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67837/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67409", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472892/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472892/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472892/" }, "description": null, "price": { "fi": "7€", "sv": "7€", "en": "7€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1672950, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T12:14:55.334449Z", "last_modified_time": "2026-03-19T12:14:55.334466Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781106.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672950/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T12:14:55.204727Z", "last_modified_time": "2026-03-20T01:14:12.563764Z", "date_published": null, "start_time": "2026-04-25T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A82AFDC0B6DC6C65C0ABB668A907189B/The_Super_Mario_Galaxy_Movie_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A82AFDC0B6DC6C65C0ABB668A907189B/The_Super_Mario_Galaxy_Movie_7_", "en": "http://www.malmitalo.fi/en/events/event/A82AFDC0B6DC6C65C0ABB668A907189B/The_Super_Mario_Galaxy_Movie_7_" }, "description": { "fi": "<p>Animaatioelokuva The Super Mario Galaxy Movie perustuu Super Mario Bros. -pelisarjan maailmaan. Elokuva jatkaa vuonna 2023 ensi-iltansa saaneen ja yli 1,3 miljardia dollaria tuottaneen The Super Mario Bros. Movie -elokuvan tarinaa. Sekä vuoden 2023 elokuva että The Super Mario Galaxy Movie -elokuva ovat Illuminationin Chris Meledandrin ja Nintendon Shigeru Miyamoton yhteistuotantoja.</p><p>Elokuvan rahoituksesta vastaavat yhdessä Universal Pictures ja Nintendo ja sen kansainvälinen levittäjä on Universal Pictures.</p><p>The Super Mario Galaxy Movien ohjaajina ovat The Super Mario Bros. Movie -elokuvasta tutut nimet, Aaron Horvath ja Michael Jelenic. Edellisen elokuvan tapaan käsikirjoittajana on Matthew Fogel ja elokuvan musiikin on säveltänyt Brian Tyler.</p><p>Ikäraja: 7<br>Kesto: 98 min<br>Ensi-ilta: 1.4.2026<br>Elokuva on puhuttu suomeksi</p>" }, "name": { "fi": "The Super Mario Galaxy Movie (7) – Kino Helios", "sv": "The Super Mario Galaxy Movie (7) – Kino Helios", "en": "The Super Mario Galaxy Movie (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67409/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67296", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/kanneltalo/gallinago-gallinago-4025195/", "sv": "https://www.lippu.fi/artist/kanneltalo/gallinago-gallinago-4025195/", "en": "https://www.lippu.fi/artist/kanneltalo/gallinago-gallinago-4025195/" }, "description": { "fi": "https://www.lippu.fi/eventseries/name-4025274/?affiliate=FSF" }, "price": { "fi": "20 / 15 €", "sv": "20 / 15 €", "en": "20 / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493843, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-19T10:13:00.956580Z", "last_modified_time": "2025-11-19T10:13:00.956594Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780855.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493843/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-19T10:13:00.888500Z", "last_modified_time": "2026-03-20T01:14:12.439981Z", "date_published": null, "start_time": "2026-04-25T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Gallinago gallinago on kaunis ja makaaberi konsertto kaikille meille voimansa kadottaneille, shamaaninsa poptähtiin vaihtaneille ihmispoloille.", "sv": "Gallinago gallinago är en vacker och makaber konsert för alla vi som förlorat får kraft och bytt ut schamanen mot en popstjärna.", "en": "The Common Snipe (Gallinago gallinago) is a kind of mythical bird, whose rattling call brings good luck in the evenings, but at night is said to be a harbinger of death." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/86F77C0DC7792699E7747F4D501585A6/Reetta-Kaisa_Iles_I_Ville_Rauhala_I_Janne_Teivainen_Gallinago_gallinago_-_taivaanvuohi_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/86F77C0DC7792699E7747F4D501585A6/Reetta-Kaisa_Iles_I_Ville_Rauhala_I_Janne_Teivainen_Gallinago_gallinago_-_taivaanvuohi_", "en": "http://www.kanneltalo.fi/en/events/event/86F77C0DC7792699E7747F4D501585A6/Reetta-Kaisa_Iles_I_Ville_Rauhala_I_Janne_Teivainen_Gallinago_gallinago_-_taivaanvuohi_" }, "description": { "fi": "<p>Gallinago gallinago on kaunis ja makaaberi konsertto kaikille meille voimansa kadottaneille, shamaaninsa poptähtiin vaihtaneille ihmispoloille.</p><p>Taivaanvuohi (Gallinago gallinago) on eräänlainen kuukkeli, jonka mäkätyksen kuuleminen iltaisin tuo onnea, mutta yöaikaan enteilee kuolemaa. Se on vanhojen eukkojen sielulintu. Taivaanvuohessa elää kuolemaa pettäneen pelurin sielu, joka ei pääse Taivaaseen, eikä Helvettiin, vaan on tuomittu liitämään ikuisesti maailmojen välissä.</p><p>“Me mitättömät, harmaat mäkättäjät kahlaamme pakoon vääjäämätöntä loppua. Pelkäämme kuolemaa niin paljon, että emme uskalla elää. Pelkäämme elämää, koska se muistuttaa liikaa kuolemasta.”*</p><p>Teoksen soiva selkäranka syntyy ihmisäänen, kontrabasson ja elektroniikan vuoropuhelusta. Visuaalit ja karjalaisuudesta vaikuttunut muotisuunnittelu luovat omaperäisen esitysuniversumin, jonka sisällä vyöryy tummanpuhuva, arkaais-avantgardistinen sävelmaailma. Esitys on liikkeen ja ihmisäänen synteesi, jossa tanssiin yhdistyvät hengittävä laulullinen voima, rustiikkiset etnosävyt ja spoken word. Tekijät ammentavat niin kansanperinteestä kuin 70-luvun New Yorkin loft jazzista. Monikieliset tekstit ovat enemmänkin post-pop runoutta kuin perinteisiä laululyriikoita.</p><p>Kesto n. 1 tunti</p><p>Common Spine -kollektiivi<br>Laulu, tanssi, koreografia, sävellys, tekstit: Reetta-Kaisa Iles<br>Kontrabasso, sävellys, äänisuunnittelu, tekstit: Ville Rauhala<br>Valo- ja videosuunnittelu, äänisuunnittelu, tekstit: Janne Teivainen<br>Esiintyjät: Reetta-Kaisa Iles, Ville Rauhala ja Janne Teivainen<br>Pukusuunnittelu: Antrea Kantakoski<br>Konseptin mentorointi ja kiertuetuotanto: Harri Kuorelahti<br>Valokuvaus: Mortti Saarnia</p><p>Reetta-Kaisa Iles toimii väitöskirjatutkijana Taideyliopiston Sibelius-Akatemian MuTri-taiteilijakoulutuksessa. Gallinago gallinago on hänen taiteellisen tutkimuksensa ensimmäinen osio. Opinnäytteen ohjaajina toimivat koreografit Ervi Sirén, Elina Pirinen sekä tutkija Anne Tarvainen.</p><p>*Lainaus Reetta-Kaisa Iles</p>", "sv": "<p>Gallinago gallinago är en vacker och makaber konsert för alla vi som förlorat får kraft och bytt ut schamanen mot en popstjärna.</p><p>Enkelbeckasinen (Gallinago gallinago) är en fågel vars gnällande läte ger lycka om man hör det på kvällen, men förebådar död nattetid. Den är de gamla gummornas självfågel. I enkelbeckasinen lever själen av en myglare som lurat döden och varken kommer till himlen eller helvetet, utan är dömd att sväva mellan världarna för evigt.</p><p>”Vi obetydliga, gråa gnällspikar försöker vada ifrån det ofrånkomliga slutet. Vi är så rädda för döden att vi inte vågar leva. Vi fruktar livet för att det påminner oss för mycket om döden.”*</p><p>Verkets musikaliska ryggrad skapas av ett samspel mellan den mänskliga rösten, kontrabasen och elektroniken. De visuella inslagen och den karelskinspirerade formdesignen skapar ett säreget föreställningsuniversum, inom vilket en mörk, arkaisk-avantgardistisk musikvärld virvlar. Föreställningen är en syntes av rörelse och den mänskliga rösten, som kombinerar sångens kraft, rustika etnotoner och spoken word. Kompositörerna hämtar inspiration från både folktradition och 70-talets loft jazz i New York. De flerspråkiga texterna påminner mer om post-pop-poesi än om traditionella låttexter.</p><p>Längd: cirka 1 timme</p><p>Common Spine-kollektivet<br>Sång, dans, koreografi, tonsättning, texter: Reetta-Kaisa Iles<br>Kontrabas, tonsättning, ljuddesign, texter: Ville Rauhala<br>Ljus- och videodesign, ljuddesign, texter: Janne Teivainen<br>På scenen: Reetta-Kaisa Iles, Ville Rauhala och Janne Teivainen<br>Kostym: Antrea Kantakoski<br>Konceptrådgivning och turnéproduktion: Harri Kuorelahti<br>Fotografering: Mortti Saarnia</p><p>Reetta-Kaisa Iles är doktorand vid konstnärsutbildningen MuTri vid Konstuniversitetets Sibelius-Akademi. Gallinago gallinago är den första delen av hennes konstnärliga studie. Handledare för avhandlingen är koreograferna Ervi Sirén och Elina Pirinen samt forskaren Anne Tarvainen.</p><p>*Citat av Reetta-Kaisa Iles</p>", "en": "<p>The Common Snipe (Gallinago gallinago) is a kind of mythical bird, whose rattling call brings good luck in the evenings, but at night is said to be a harbinger of death.</p><p>It is a soul-bird, especially for old women. Within the snipe lives the soul of a<br>gambler who has cheated death; one who, unable to enter Heaven or Hell, is<br>doomed to forever soar between worlds.</p><p>“We, the insignificant gray rattlers, wade through life trying to escape our inevitable<br>end. We fear death so much that we dare not live. We fear life, because it reminds<br>us too much of death.”*</p><p>The musical backbone of the work is created by a dialogue between the human<br>voice, double bass, and electronics. Visuals and fashion design - strongly inspired<br>by Karelian folklore - create a unique performance universe, whose core is a dark,<br>archaic-avant-garde sound world. The performative narrative is shaped by the<br>synthesis of movement and the human voice, where dance merges with breathing,<br>singing power, rustic ethnic tones, and spoken word. The creators draw from both<br>folk traditions and 1970s New York loft jazz. The multilingual texts are closer to<br>post-pop poetry than to traditional song lyrics.</p><p>A beautiful and macabre concerto for all of us poor souls who have lost our power, who have exchanged our shamans for pop stars.</p><p>Duration: 1 h</p><p>Vocals, dance, choreography, composition, text: Reetta-Kaisa Iles<br>Double bass, composition, sound design, text: Ville Rauhala<br>Lighting and video design, sound design, text: Janne Teivainen<br>Performers: Reetta-Kaisa Iles, Ville Rauhala, Janne Teivainen<br>Costume design: Antrea Kantakoski<br>Harri Kuorelahti: concept mentoring / tour production<br>Mortti Saarnia: photography</p><p>Reetta-Kaisa Iles is a doctoral researcher in the MuTri Doctoral School for Artists at<br>the Sibelius Academy of the University of the Arts Helsinki. Gallinago Gallinago is<br>the first artistic component of her doctoral research. The work has been supervised<br>by choreographers Ervi Sirén and Elina Pirinen, as well as researcher Anne<br>Tarvainen.</p><p>*Quote: Reetta-Kaisa Iles</p>" }, "name": { "fi": "Reetta-Kaisa Iles I Ville Rauhala I Janne Teivainen: Gallinago gallinago - taivaanvuohi – – Ruumiillinen konsertto tanssille, kontrabassolle ja elektroniikalle", "sv": "Reetta-Kaisa Iles I Ville Rauhala I Janne Teivainen: Gallinago gallinago - taivaanvuohi – – En fysisk konsert för dans, kontrabas och elektronik", "en": "Reetta-Kaisa Iles I Ville Rauhala I Janne Teivainen: Gallinago gallinago - taivaanvuohi – A corporeal concerto for dancing, double bass, and electronics." }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67296/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67563", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21080993/", "sv": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21080993/", "en": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21080993/" }, "description": null, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494339, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-30T14:13:08.261655Z", "last_modified_time": "2025-12-30T14:13:08.261669Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781736.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494339/?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-30T14:13:08.151813Z", "last_modified_time": "2026-03-20T01:14:12.319557Z", "date_published": null, "start_time": "2026-04-25T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Omituiset puolittamistapaukset Outolassa tempaavat Tatun ja Patun keskelle salaperäisten tapahtumien ketjua.", "sv": "De märkliga halveringsfallen i Outola kastar Tatu och Patu rakt in i en kedja av mystiska händelser.", "en": "Strange cases of halving occurring in Outola plunge Tatu and Patu into the middle of a chain of mysterious events." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6C5CD97600F1AFAAF7B8D289185E7799/LOPPUUNMYYTY_Teatteri_Hevosenkenka_Tatu_ja_Patu_etsivina", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6C5CD97600F1AFAAF7B8D289185E7799/SLUTSALT_Teatteri_Hevosenkenka_Tatu_ja_Patu_etsivina_Tatu_och_Patu_som_detektiver_", "en": "http://www.malmitalo.fi/en/events/event/6C5CD97600F1AFAAF7B8D289185E7799/SOLD-OUT_Hevosenkenka_Theatre_Tatu_ja_Patu_etsivina" }, "description": { "fi": "<p>Omituiset puolittamistapaukset Outolassa tempaavat Tatun ja Patun keskelle salaperäisten tapahtumien ketjua.</p><p>Mysteerien selvittämiseen tarvitaan rautahermoisten ammattilaisten terävää ja äärettömän nopeaa päättelykykyä. Tatu ja Patu perustavat etsivätoimiston ja heidän outolalaiset älynystyränsä joutuvat tositoimiin.<br>Kuka tämä mystinen Puolittaja on?<br>Missä hän piileksii?<br>Ja miksi hän puolittaa?<br>Vahingonteot on selvitettävä, ja siihen pystyvät vain etsivä Tatu ja etsivä Patu.</p><p>Tekijät:<br>Dramatisointi ja ohjaus: Elina Stirkkinen<br>Nuket: Fanni Lieto<br>Lavastus: Juhana Hirvonen<br>Musiikki: Tommi Lindell<br>Laulu: Maiju Lindell<br>Valosuunnittelu ja projisoinnit: Jani Salmi<br>Äänisuunnittelu: Janne Levänen<br>Rooleissa: Krista Putkonen-Örn ja Antero Nieminen<br>Äänirooleissa: Pekka Heiman, Tuisku Levänen, Mona Salmi ja Elina Stirkkinen<br>Esitystekniikka: Janne Levänen ja Jani Salmi<br>Lavasteiden rakennus: Horst Wein ja Juhana Hirvonen</p><p>Esitys perustuu kirjaan: Aino Havukainen ja Sami Toivonen: TATU JA PATU ETSIVINÄ -Tapaus Puolittaja</p><p>Kesto: noin 45 min<br>Ikäsuositus: 3+<br>Kieli: suomi</p>", "sv": "<p>De märkliga halveringsfallen i Outola kastar Tatu och Patu rakt in i en kedja av mystiska händelser.</p><p>För att lösa gåtorna krävs järnnerviga proffs med blixtsnabb slutledningsförmåga! Tatu och Patu grundar en detektivbyrå, och deras knasiga hjärnor får verkligen jobba.<br>Vem är denna mystiska Halveraren?<br>Var gömmer hen sig?<br>Och varför halverar hen?<br>Skadegörelsen måste uppklaras – och bara detektiven Tatu och detektiven Patu klarar det!</p><p>Skapare:<br>Dramatisering och regi: Elina Stirkkinen<br>Dockor: Fanni Lieto<br>Iscensättning: Juhana Hirvonen<br>Musik: Tommi Lindell<br>Sång: Maiju Lindell<br>Ljusdesign och projicering: Jani Salmi<br>Ljuddesign: Janne Levänen<br>I rollerna: Krista Putkonen-Örn och Antero Nieminen<br>I röstrollerna: Pekka Heiman, Tuisku Levänen, Mona Salmi och Elina Stirkkinen<br>Föreställningsteknik: Janne Levänen och Jani Salmi<br>Kulissbygge: Horst Wein och Juhana Hirvonen</p><p>Föreställningen baserar sig på boken: Aino Havukainen och Sami Toivonen TATU JA PATU ETSIVINÄ – Tapaus Puolittaja (TATU OCH PATU SOM DETEKTIVER – Fallet Halveraren)</p><p>Längd: cirka 45 min.<br>Åldersrekommendation: 3+<br>Språk: finska</p>", "en": "<p>Strange cases of halving occurring in Outola plunge Tatu and Patu into the middle of a chain of mysterious events.</p><p>Solving these mysteries demands the sharp and lightning-fast skills of reasoning of professionals with nerves of steel. Tatu and Patu set up a detective agency, putting their big brains into work.<br>Who is this mysterious villain?<br>Where are they hiding?<br>And why do they keep halving stuff?<br>These misdeeds must be solved, and only detectives Tatu and Patu can do it.</p><p>Creators:<br>Dramatised and directed by: Elina Stirkkinen<br>Puppets: Fanni Lieto<br>Staging: Juhana Hirvonen<br>Music: Tommi Lindell<br>Vocals: Maiju Lindell<br>Lighting design and projections: Jani Salmi<br>Sound design: Janne Levänen<br>Starring: Krista Putkonen-Örn and Antero Nieminen<br>Voice roles: Pekka Heiman, Tuisku Levänen, Mona Salmi and Elina Stirkkinen<br>Presentation technology: Janne Levänen and Jani Salmi<br>Stage building: Horst Wein and Juhana Hirvonen</p><p>The performance is based on the book: Aino Havukainen and Sami Toivonen: TATU JA PATU ETSIVINÄ -Tapaus Puolittaja</p><p>Duration: approximately 45 minutes<br>Recommended ages: 3+<br>Language: Finnish</p>" }, "name": { "fi": "LOPPUUNMYYTY: Teatteri Hevosenkenkä: Tatu ja Patu etsivinä", "sv": "SLUTSÅLT: Teatteri Hevosenkenkä: Tatu ja Patu etsivinä (Tatu och Patu som detektiver)", "en": "SOLD-OUT: Hevosenkenkä Theatre: Tatu ja Patu etsivinä" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67563/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68068", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/circo-aereo-circo-aereo-pyorre-annantalo-21333720/", "sv": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333720/", "en": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333720/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494897, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-18T13:13:40.118481Z", "last_modified_time": "2026-02-18T13:13:40.118498Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778229.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494897/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-02-18T13:13:39.954963Z", "last_modified_time": "2026-03-20T01:14:12.015225Z", "date_published": null, "start_time": "2026-04-25T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.", "sv": "Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.", "en": "Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6DCCD6BCF873FCDEB87BDDA3B160FC65/Circo_Aereo_Pyorre", "sv": "http://www.annantalo.fi/sv/evenemang/event/6DCCD6BCF873FCDEB87BDDA3B160FC65/Circo_Aereo_Pyorre_Virvel", "en": "http://www.annantalo.fi/en/events/event/6DCCD6BCF873FCDEB87BDDA3B160FC65/Circo_Aereo_Pyorre" }, "description": { "fi": "<p>Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.</p><p>Akrobatian ja jongleerauksen luoma pyörivä, hypnoottinen liike saa mukaansa paitsi esineet, materiaalit myös äänen ja valon. Pyörre on yhdistelmä erilaisia sirkuslajeja ja niiden kohtaamisia - kokoelma liikkeitä, tunnelmia ja mielikuvia.</p><p>Esitystä varten on kerätty eri kulttuureissa, eri puolilla maailmaa käytettyjä leluja ja työvälineitä, joiden käsittely vaatii taitoa ja tuntemusta fysiikan lakien vaikutuksesta liikkeeseen.</p><p>Alun perin luonnonmateriaaleista tehdyt välineet, kuten kotilon kuoresta tehty nigerialainen rascal-hyrrä, meksikolainen lasso tai kiinalainen diabolo saavat esityksessä uuden käsittelyn ja elämän.</p><p>Taidokkaasti käsiteltynä esineiden pyörivän, hypnoottisen liikkeen tuottamat äänet luovat mielikuvia luonnon ilmiöistä, kuten tuulesta tai myrskystä, jotka tuntuvat vaikuttavan esiintyjän liikkeisiin ja koreografiaan.</p><p>Eetu Ranta on poikkeuksellisen laaja-alainen uuden sukupolven nykysirkustaiteilija. Hän on työskennellyt Suomessa mm. Circo Aereon, Race Horse Companyn, Tanssiteatteri Hurjaruuthin ja Suomen kansallisoopperan teoksissa.</p><p>Kesto n. 45 minuuttia<br>Ikäsuositus 5+<br>Esiintyminen ja koreografia: Eetu Ranta<br>Suunnittelu: Eetu Ranta ja Maksim Komaro<br>Valosuunnittelu: Juho Rahijärvi<br>Äänisuunnittelu: Ranta ja Komaro<br>Kuvat: Juho Rahijärvi<br>Tuotanto: Circo Aereo yhteistyössä Annantalon kanssa</p><p>Suomen ensimmäinen ja pisimpään toiminut nykysirkusryhmä Circo Aereo on Annantalon residenssiryhmä vuonna 2026.</p><p>Ryhmän taiteellisella työllä ja teoksilla on ollut keskeinen merkitys uuden sirkuksen kehityksessä itsenäiseksi taidemuodoksi Suomessa sekä suomalaisen sirkustaiteen kansainvälisessä läpimurrossa 2000-luvulla.</p><p>Ryhmän monitaiteisia esityksiä on nähty tuhansia kertoja yli 40:ssä maassa viidellä eri mantereella.</p><p>Ryhmä työskentelee paitsi sirkuksen myös esine- ja liiketeatterin, kuvataiteen, tanssin ja musiikin ammattilaisten kanssa.</p>", "sv": "<p>Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.</p><p>Den virvlande, hypnotiska rörelse som skapas genom akrobatik och jonglering fångar inte bara föremål och material, utan också ljud och ljus.</p><p>Pyörre är en kombination av olika cirkuskonster och mötet mellan dem – en samling rörelser, stämningar och bilder.</p><p>Till föreställningen har man samlat leksaker och redskap som används i olika kulturer runt om i världen och som kräver skicklighet och kunskap om de fysikaliska lagar som påverkar rörelse.</p><p>Redskapen, som ursprungligen tillverkats av naturmaterial, till exempel en nigeriansk rascalsnurra gjord av snäckskal, en mexikansk lasso eller en kinesisk diabolo, hanteras på ett nytt sätt och<br>får nytt liv i föreställningen.</p><p>I skickliga händer skapar ljuden från den virvlande, hypnotiska rörelsen som föremålen ger upphov till bilder av naturfenomen som vind eller stormar som verkar påverka artistens rörelser och koreografi.</p><p>Eetu Ranta är en exceptionellt mångsidig nutida cirkusartist av den nya generationen. I Finland har han arbetat med bland annat Circo Aereo, Race Horse Company, dansteatern Hurjaruuth och Finlands nationalopera.</p><p>Längd: ca 45 minuter<br>Åldersrekommendation: 5+<br>Framförande och koreografi: Eetu Ranta<br>Planering: Eetu Ranta och Maksim Komaro<br>Ljusdesign: Juho Rahijärvi<br>Ljuddesign: Ranta och Komaro<br>Bilder: Juho Rahijärvi<br>Produktion: Circo Aereo i samarbete med Annegården</p><p>Circo Aereo, Finlands första och äldsta nutida cirkusgrupp, är en av Annegårdens residensgrupper 2026.<br> <br>Gruppens konstnärliga arbete och verk har spelat en nyckelroll i utvecklingen av den nutida cirkusen som en självständig konstform i Finland samt i den finska cirkuskonstens internationella genombrott under 2000-talet.</p><p>Gruppens tvärkonstnärliga föreställningar har visats tusentals gånger i mer än 40 länder på fem kontinenter.</p><p>Gruppen arbetar inte bara med cirkus utan även med professionella inom föremåls- och rörelseteater, bildkonst, dans och musik.</p>", "en": "<p>Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5.</p><p>The swirling, hypnotic movement created by acrobatics and juggling incorporates not only objects and materials, but also sound and light.</p><p>Pyörre is a combination of different circus acts and their encounters – a collection of movements, moods and mental images.</p><p>For the performance, Ranta collected toys and tools used in different cultures around the world, which require skill and knowledge of how the laws of physics affect movement.</p><p>Items made originally from natural materials, such as a Nigerian rascal top made of a snail shell, a Mexican lasso or a Chinese diabolo, receive a new treatment and life in the performance.</p><p>When handled skilfully, the sounds produced by the swirling, hypnotic movement of the items conjure up mental images of natural phenomena, such as wind or storms, that appear to influence the performer’s movements and choreography.</p><p>Eetu Ranta is an exceptionally wide-ranging new-generation contemporary circus artist. He has been featured in Finland in works by groups such as Circo Aereo, Race Horse Company, Dance Theatre Hurjaruuth and the Finnish National Opera.</p><p>Duration: roughly 45 min<br>Recommended age: 5+<br>Performance and choreography: Eetu Ranta<br>Design: Eetu Ranta and Maksim Komaro<br>Lighting design: Juho Rahijärvi<br>Sound design: Ranta and Komaro<br>Images: Juho Rahijärvi<br>Production: Circo Aereo in collaboration with Annantalo</p><p>Circo Aereo, Finland’s first and longest-running contemporary circus group, will be a resident group of Annantalo in 2026.</p><p>The group’s artistic work has played a key role in the development of new circus into an independent art form in Finland and in the international breakthrough of Finnish circus art in the 21st century.</p><p>The group’s multi-artistic performances have been seen thousands of times in more than 40 countries on five continents.</p><p>In addition to circus, the group also works with professionals of object and movement theatre, visual arts, dance and music.</p>" }, "name": { "fi": "Circo Aereo: Pyörre", "sv": "Circo Aereo: Pyörre– Virvel", "en": "Circo Aereo: Pyörre" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68068/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68067", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/circo-aereo-circo-aereo-pyorre-annantalo-21333719/", "sv": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333719/", "en": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333719/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494895, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-18T12:13:32.081533Z", "last_modified_time": "2026-02-18T12:13:32.081556Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778228.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494895/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-02-18T12:13:31.939239Z", "last_modified_time": "2026-03-20T01:14:11.847253Z", "date_published": null, "start_time": "2026-04-25T10: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": "Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.", "sv": "Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.", "en": "Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/533C6A1A304F01D2AC9D1461FDA06C41/Circo_Aereo_Pyorre", "sv": "http://www.annantalo.fi/sv/evenemang/event/533C6A1A304F01D2AC9D1461FDA06C41/Circo_Aereo_Pyorre_Virvel", "en": "http://www.annantalo.fi/en/events/event/533C6A1A304F01D2AC9D1461FDA06C41/Circo_Aereo_Pyorre" }, "description": { "fi": "<p>Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.</p><p>Akrobatian ja jongleerauksen luoma pyörivä, hypnoottinen liike saa mukaansa paitsi esineet, materiaalit myös äänen ja valon.</p><p>Pyörre on yhdistelmä erilaisia sirkuslajeja ja niiden kohtaamisia - kokoelma liikkeitä, tunnelmia ja mielikuvia.</p><p>Esitystä varten on kerätty eri kulttuureissa, eri puolilla maailmaa käytettyjä leluja ja työvälineitä, joiden käsittely vaatii taitoa ja tuntemusta fysiikan lakien vaikutuksesta liikkeeseen.</p><p>Alun perin luonnonmateriaaleista tehdyt välineet, kuten kotilon kuoresta tehty nigerialainen rascal-hyrrä, meksikolainen lasso tai kiinalainen diabolo saavat esityksessä uuden käsittelyn ja elämän.</p><p>Taidokkaasti käsiteltynä esineiden pyörivän, hypnoottisen liikkeen tuottamat äänet luovat mielikuvia luonnon ilmiöistä, kuten tuulesta tai myrskystä, jotka tuntuvat vaikuttavan esiintyjän liikkeisiin ja koreografiaan.</p><p>Eetu Ranta on poikkeuksellisen laaja-alainen uuden sukupolven nykysirkustaiteilija. Hän on työskennellyt Suomessa mm. Circo Aereon, Race Horse Companyn, Tanssiteatteri Hurjaruuthin ja Suomen kansallisoopperan teoksissa.</p><p>Kesto n. 45 minuuttia<br>Ikäsuositus 5+<br>Esiintyminen ja koreografia: Eetu Ranta<br>Suunnittelu: Eetu Ranta ja Maksim Komaro<br>Valosuunnittelu: Juho Rahijärvi<br>Äänisuunnittelu: Ranta ja Komaro<br>Kuvat: Juho Rahijärvi<br>Tuotanto: Circo Aereo yhteistyössä Annantalon kanssa</p><p>Suomen ensimmäinen ja pisimpään toiminut nykysirkusryhmä Circo Aereo on Annantalon residenssiryhmä vuonna 2026.</p><p>Ryhmän taiteellisella työllä ja teoksilla on ollut keskeinen merkitys uuden sirkuksen kehityksessä itsenäiseksi taidemuodoksi Suomessa sekä suomalaisen sirkustaiteen kansainvälisessä läpimurrossa 2000-luvulla.</p><p>Ryhmän monitaiteisia esityksiä on nähty tuhansia kertoja yli 40:ssä maassa viidellä eri mantereella.</p><p>Ryhmä työskentelee paitsi sirkuksen myös esine- ja liiketeatterin, kuvataiteen, tanssin ja musiikin ammattilaisten kanssa.</p>", "sv": "<p>Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.</p><p>Den virvlande, hypnotiska rörelse som skapas genom akrobatik och jonglering fångar inte bara föremål och material, utan också ljud och ljus.</p><p>Pyörre är en kombination av olika cirkuskonster och mötet mellan dem – en samling rörelser, stämningar och bilder.</p><p>Till föreställningen har man samlat leksaker och redskap som används i olika kulturer runt om i världen och som kräver skicklighet och kunskap om de fysikaliska lagar som påverkar rörelse.</p><p>Redskapen, som ursprungligen tillverkats av naturmaterial, till exempel en nigeriansk rascalsnurra gjord av snäckskal, en mexikansk lasso eller en kinesisk diabolo, hanteras på ett nytt sätt och<br>får nytt liv i föreställningen.</p><p>I skickliga händer skapar ljuden från den virvlande, hypnotiska rörelsen som föremålen ger upphov till bilder av naturfenomen som vind eller stormar som verkar påverka artistens rörelser och koreografi.</p><p>Eetu Ranta är en exceptionellt mångsidig nutida cirkusartist av den nya generationen. I Finland har han arbetat med bland annat Circo Aereo, Race Horse Company, dansteatern Hurjaruuth och Finlands nationalopera.</p><p>Längd: ca 45 minuter<br>Åldersrekommendation: 5+<br>Framförande och koreografi: Eetu Ranta<br>Planering: Eetu Ranta och Maksim Komaro<br>Ljusdesign: Juho Rahijärvi<br>Ljuddesign: Ranta och Komaro<br>Bilder: Juho Rahijärvi<br>Produktion: Circo Aereo i samarbete med Annegården</p><p>Circo Aereo, Finlands första och äldsta nutida cirkusgrupp, är en av Annegårdens residensgrupper 2026.</p><p>Gruppens konstnärliga arbete och verk har spelat en nyckelroll i utvecklingen av den nutida cirkusen som en självständig konstform i Finland samt i den finska cirkuskonstens internationella genombrott under 2000-talet.</p><p>Gruppens tvärkonstnärliga föreställningar har visats tusentals gånger i mer än 40 länder på fem kontinenter.</p><p>Gruppen arbetar inte bara med cirkus utan även med professionella inom föremåls- och rörelseteater, bildkonst, dans och musik.</p>", "en": "<p>Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5.</p><p>The swirling, hypnotic movement created by acrobatics and juggling incorporates not only objects and materials, but also sound and light.</p><p>Pyörre is a combination of different circus acts and their encounters – a collection of movements, moods and mental images.</p><p>For the performance, Ranta collected toys and tools used in different cultures around the world, which require skill and knowledge of how the laws of physics affect movement.</p><p>Items made originally from natural materials, such as a Nigerian rascal top made of a snail shell, a Mexican lasso or a Chinese diabolo, receive a new treatment and life in the performance.</p><p>When handled skilfully, the sounds produced by the swirling, hypnotic movement of the items conjure up mental images of natural phenomena, such as wind or storms, that appear to influence the performer’s movements and choreography.</p><p>Eetu Ranta is an exceptionally wide-ranging new-generation contemporary circus artist. He has been featured in Finland in works by groups such as Circo Aereo, Race Horse Company, Dance Theatre Hurjaruuth and the Finnish National Opera.</p><p>Duration: roughly 45 min<br>Recommended age: 5+<br>Performance and choreography: Eetu Ranta<br>Design: Eetu Ranta and Maksim Komaro<br>Lighting design: Juho Rahijärvi<br>Sound design: Ranta and Komaro<br>Images: Juho Rahijärvi<br>Production: Circo Aereo in collaboration with Annantalo</p><p>Circo Aereo, Finland’s first and longest-running contemporary circus group, will be a resident group of Annantalo in 2026.</p><p>The group’s artistic work has played a key role in the development of new circus into an independent art form in Finland and in the international breakthrough of Finnish circus art in the 21st century.</p><p>The group’s multi-artistic performances have been seen thousands of times in more than 40 countries on five continents.</p><p>In addition to circus, the group also works with professionals of object and movement theatre, visual arts, dance and music.</p>" }, "name": { "fi": "Circo Aereo: Pyörre", "sv": "Circo Aereo: Pyörre – Virvel", "en": "Circo Aereo: Pyörre" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68067/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68179", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21411055/", "sv": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21411055/", "en": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21411055/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1574887, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-09T08:13:01.173037Z", "last_modified_time": "2026-03-09T08:13:01.173050Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785992.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1574887/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-03-09T08:13:01.055179Z", "last_modified_time": "2026-03-20T01:14:11.720001Z", "date_published": null, "start_time": "2026-04-25T10: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": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E70A1C43469F5DCCDE1D3C62EA5DAFF4/Teatteri_Hevosenkenka_Tatu_ja_Patu_etsivina", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E70A1C43469F5DCCDE1D3C62EA5DAFF4/Teatteri_Hevosenkenka_Tatu_ja_Patu_etsivina_Tatu_och_Patu_som_detektiver_", "en": "http://www.malmitalo.fi/en/events/event/E70A1C43469F5DCCDE1D3C62EA5DAFF4/Hevosenkenka_Theatre_Tatu_ja_Patu_etsivina" }, "description": { "fi": "<p>Omituiset puolittamistapaukset Outolassa tempaavat Tatun ja Patun keskelle salaperäisten tapahtumien ketjua.</p><p>Mysteerien selvittämiseen tarvitaan rautahermoisten ammattilaisten terävää ja äärettömän nopeaa päättelykykyä. Tatu ja Patu perustavat etsivätoimiston ja heidän outolalaiset älynystyränsä joutuvat tositoimiin.<br>Kuka tämä mystinen Puolittaja on?<br>Missä hän piileksii?<br>Ja miksi hän puolittaa?<br>Vahingonteot on selvitettävä, ja siihen pystyvät vain etsivä Tatu ja etsivä Patu.</p><p>Tekijät:<br>Dramatisointi ja ohjaus: Elina Stirkkinen<br>Nuket: Fanni Lieto<br>Lavastus: Juhana Hirvonen<br>Musiikki: Tommi Lindell<br>Laulu: Maiju Lindell<br>Valosuunnittelu ja projisoinnit: Jani Salmi<br>Äänisuunnittelu: Janne Levänen<br>Rooleissa: Krista Putkonen-Örn ja Antero Nieminen<br>Äänirooleissa: Pekka Heiman, Tuisku Levänen, Mona Salmi ja Elina Stirkkinen<br>Esitystekniikka: Janne Levänen ja Jani Salmi<br>Lavasteiden rakennus: Horst Wein ja Juhana Hirvonen</p><p>Esitys perustuu kirjaan: Aino Havukainen ja Sami Toivonen: TATU JA PATU ETSIVINÄ -Tapaus Puolittaja</p><p>Kesto: noin 45 min<br>Ikäsuositus: 3+<br>Kieli: suomi</p>", "sv": "<p>De märkliga halveringsfallen i Outola kastar Tatu och Patu rakt in i en kedja av mystiska händelser.</p><p>För att lösa gåtorna krävs järnnerviga proffs med blixtsnabb slutledningsförmåga! Tatu och Patu grundar en detektivbyrå, och deras knasiga hjärnor får verkligen jobba.<br>Vem är denna mystiska Halveraren?<br>Var gömmer hen sig?<br>Och varför halverar hen?<br>Skadegörelsen måste uppklaras – och bara detektiven Tatu och detektiven Patu klarar det!</p><p>Skapare:<br>Dramatisering och regi: Elina Stirkkinen<br>Dockor: Fanni Lieto<br>Iscensättning: Juhana Hirvonen<br>Musik: Tommi Lindell<br>Sång: Maiju Lindell<br>Ljusdesign och projicering: Jani Salmi<br>Ljuddesign: Janne Levänen<br>I rollerna: Krista Putkonen-Örn och Antero Nieminen<br>I röstrollerna: Pekka Heiman, Tuisku Levänen, Mona Salmi och Elina Stirkkinen<br>Föreställningsteknik: Janne Levänen och Jani Salmi<br>Kulissbygge: Horst Wein och Juhana Hirvonen</p><p>Föreställningen baserar sig på boken: Aino Havukainen och Sami Toivonen TATU JA PATU ETSIVINÄ – Tapaus Puolittaja (TATU OCH PATU SOM DETEKTIVER – Fallet Halveraren)</p><p>Längd: cirka 45 min.<br>Åldersrekommendation: 3+<br>Språk: finska</p>", "en": "<p>Strange cases of halving occurring in Outola plunge Tatu and Patu into the middle of a chain of mysterious events.</p><p>Solving these mysteries demands the sharp and lightning-fast skills of reasoning of professionals with nerves of steel. Tatu and Patu set up a detective agency, putting their big brains into work.<br>Who is this mysterious villain?<br>Where are they hiding?<br>And why do they keep halving stuff?<br>These misdeeds must be solved, and only detectives Tatu and Patu can do it.</p><p>Creators:<br>Dramatised and directed by: Elina Stirkkinen<br>Puppets: Fanni Lieto<br>Staging: Juhana Hirvonen<br>Music: Tommi Lindell<br>Vocals: Maiju Lindell<br>Lighting design and projections: Jani Salmi<br>Sound design: Janne Levänen<br>Starring: Krista Putkonen-Örn and Antero Nieminen<br>Voice roles: Pekka Heiman, Tuisku Levänen, Mona Salmi and Elina Stirkkinen<br>Presentation technology: Janne Levänen and Jani Salmi<br>Stage building: Horst Wein and Juhana Hirvonen</p><p>The performance is based on the book: Aino Havukainen and Sami Toivonen: TATU JA PATU ETSIVINÄ -Tapaus Puolittaja</p><p>Duration: approximately 45 minutes<br>Recommended ages: 3+<br>Language: Finnish</p>" }, "name": { "fi": "Teatteri Hevosenkenkä: Tatu ja Patu etsivinä", "sv": "Teatteri Hevosenkenkä: Tatu ja Patu etsivinä (Tatu och Patu som detektiver)", "en": "Hevosenkenkä Theatre: Tatu ja Patu etsivinä" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68179/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68187", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1585995, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-10T08:13:01.924077Z", "last_modified_time": "2026-03-10T08:13:01.924090Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786113.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1585995/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-10T08:13:01.816146Z", "last_modified_time": "2026-03-20T01:14:11.605005Z", "date_published": null, "start_time": "2026-04-25T07:00:00Z", "end_time": "2026-04-25T11: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": "Tervetuloa kannelmäkeläisten yhteisiin siivoustalkoisiin lauantaina 25. huhtikuuta klo 10–14!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5656C54C86FCF39EB6B9EDDB47440954/Kannelmaen_siivoustalkoot_Kotiseutu_kesakuntoon", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5656C54C86FCF39EB6B9EDDB47440954/Kannelmaen_siivoustalkoot_Kotiseutu_kesakuntoon", "en": "http://www.kanneltalo.fi/en/events/event/5656C54C86FCF39EB6B9EDDB47440954/Kannelmaen_siivoustalkoot_Kotiseutu_kesakuntoon" }, "description": { "fi": "<p>Tervetuloa kannelmäkeläisten yhteisiin siivoustalkoisiin lauantaina 25. huhtikuuta klo 10–14!</p><p>Talkootapahtuma on lähtöisin asukkaan ajatuksesta ja toiveesta ja se toteutetaan yhteistyössä Kanneltalon ja muiden toimijoiden kanssa.</p><p>Talkoiden tukikohtana toimii Sitratori, josta saat mukaasi roskapihdit ja -pussin. Henkilökunta päivystää torilla koko tapahtuman ajan, joten voit osallistua itsellesi parhaiten sopivaan aikaan. Huonon sään sattuessa tukikohta siirtyy Kanneltalon aulaan. Ympäristöä säästääksemme emme jaa tapahtumassa kertakäyttöhanskoja, vaan halutessasi voit ottaa omat pestävät käsineet käsien suojaksi. Roskapihtien kanssa hanskat eivät ole kuitenkaan välttämättömät!</p><p>Kanneltalo tarjoaa jokaiselle pihdit palauttaneelle kerääjälle pientä talkooevästä.</p><p>Talkoot ovat avoimet kaikenikäisille. Tule siis mukaan yksin, kaverin kanssa tai koko perheen voimin.</p><p>P.S. Sanna Pelliccionin ihana osallistava Onni on olla -näyttely on avoinna talkoiden aikana viimeistä päivää, joten siivouslenkin lomassa kannattaa piipahtaa myös Kanneltalon gallerian puolella.</p><p>Haluatko olla apuna tapahtuman järjestämisessä? Ota yhteyttä Kanneltalon yhteisötuottajaan Taru Honkaseen: taru.honkanen@hel.fi</p>" }, "name": { "fi": "Kannelmäen siivoustalkoot – Kotiseutu kesäkuntoon", "sv": "Kannelmäen siivoustalkoot – Kotiseutu kesäkuntoon", "en": "Kannelmäen siivoustalkoot – Kotiseutu kesäkuntoon" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68187/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67822", "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/event/antti-ketonen-eka-elama-levynjulkaisukiertue-savoy-teatteri-21092562/", "sv": "https://www.lippu.fi/event/antti-ketonen-eka-elama-levynjulkaisukiertue-savoy-teatteri-21092562/", "en": "https://www.lippu.fi/event/antti-ketonen-eka-elama-levynjulkaisukiertue-savoy-teatteri-21092562/" }, "description": null, "price": { "fi": "29,90 €", "sv": "29,90 €", "en": "29,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494914, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-20T10:13:20.671093Z", "last_modified_time": "2026-02-20T10:13:20.671115Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782940.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494914/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-12T14:13:34.431972Z", "last_modified_time": "2026-03-20T01:14:11.485761Z", "date_published": null, "start_time": "2026-04-24T16: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": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A4F2DC4A36209CC8F651568722414324/Antti_Ketonen_Eka_Elama_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/A4F2DC4A36209CC8F651568722414324/Antti_Ketonen_Eka_Elama_", "en": "http://www.savoyteatteri.fi/en/events/event/A4F2DC4A36209CC8F651568722414324/Antti_Ketonen_Eka_Elama_" }, "description": { "fi": "<p>Antti Ketonen saapuu ensi keväänä konserttisaleihin <b>Eka Elämä -levynjulkaisukiertueen</b> merkeissä. Uusi albumi ilmestyy ennen kiertuetta, ja yleisö pääsee ensimmäisten joukossa kokemaan sen kappaleet livenä. Lisää maistiaisia albumilta tulee vielä ennen kiertueen alkua.</p><p>Luvassa on lämmin ja eläväinen ilta, joka juhlistaa uutta musiikkia ja kevään<br>taikaa. <i>“On mahtavaa päästä ensimmäistä kertaa esittämään levy kokonaisuudessaan. Konserttisali on paikka jossa välittyy kappaleiden pienimmätkin nyanssit”</i>, Antti Ketonen toteaa.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>", "sv": "<p>Antti Ketonen intar konsertsalarna med sin Eka Elämä-skivsläppskonsert under våren. Det nya albumet släpps före turnén och publiken blir bland de första som får uppleva låtarna live. Fler smakprov från albumet kommer att släppas innan turnén startar.</p><p>Det blir en varm och livfull kväll för att fira den nya musiken och vårens<br>magi. ”Det är fantastiskt att kunna framföra albumet i sin helhet för första gången. En konsertsal är en plats där även de minsta nyanserna i sångerna förmedlas”, säger Antti Ketonen.</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>This spring, Antti Ketonen will appear in concert halls on his Eka Elämä (‘First Life’) album release tour. The new album will be released before the tour, and the audience will be among the first to experience the songs live. More samples of the album will be released before the tour starts.</p><p>The event will be a warm and lively evening that celebrates new music and the magic of<br>spring. “I’m looking forward to performing the album in its entirety for the first time. A concert hall is a place where even the smallest nuances of the songs are conveyed,” Antti Ketonen comments.</p><p>Duration: roughly 2 h, incl. intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p>" }, "name": { "fi": "Antti Ketonen: Eka Elämä", "sv": "Antti Ketonen: Eka Elämä", "en": "Antti Ketonen: Eka Elämä" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Central Line Entertainment Oy", "sv": "Central Line Entertainment Oy", "en": "Central Line Entertainment Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67822/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67597", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/tinyhawk-bizzarro/tinyhawk-bizzarro-viive-4037220/", "sv": "https://www.lippu.fi/artist/tinyhawk-bizzarro/tinyhawk-bizzarro-viive-4037220/", "en": "https://www.lippu.fi/artist/tinyhawk-bizzarro/tinyhawk-bizzarro-viive-4037220/" }, "description": null, "price": { "fi": "15€/20€", "sv": "15€/20€", "en": "15€/20€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494106, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-05T11:12:56.318262Z", "last_modified_time": "2025-12-05T11:12:56.318277Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781996.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494106/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-05T11:12:56.192636Z", "last_modified_time": "2026-03-20T01:14:11.275796Z", "date_published": null, "start_time": "2026-04-24T16: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": "Ennakkoluulotonta musiikkihulluutta, massiivisia kitaravalleja ja psykedeelistä funkya!", "sv": "Fördomsfri musikalisk galenskap, massiva gitarrvallar och psykedelisk funk!", "en": "Open-minded musical madness, massive guitar riffs and psychedelic funk!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F9FBD68F7D5730902676AF9BCB8ED575/Tinyhawk_Bizzarro", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F9FBD68F7D5730902676AF9BCB8ED575/Tinyhawk_Bizzarro", "en": "http://www.malmitalo.fi/en/events/event/F9FBD68F7D5730902676AF9BCB8ED575/Tinyhawk_Bizzarro" }, "description": { "fi": "<p>Ennakkoluulotonta musiikkihulluutta, massiivisia kitaravalleja ja psykedeelistä funkya!</p><p>Kinnuselle sähkökitara on enemmän kuin pelkkä soitin. Tinyhawk & Bizzarro-yhtyeen pääsolistin ja säveltäjän käsissä kitara on avaruusraketti ja portti estoitta tanssivan mielikuvituksen maailmaan. Rosita Luu-yhtyeen kitaristina suomalaisen indiepopin äänimaisemaa herkkävaistoisella Jenni tyylikkyydellään rikastuttanut Kinnunen ei ole tarponut tavanomaisimpia polkuja soittajana ja se kuuluu. Hänen soitossaan ja sävellyksissään soi oma ääni.</p><p>Vuosia kyteneet unelmat ja visiot omasta musiikista vaativat oikeat liittolaiset päästäkseen lentoon. Vastaus löytyi Savosta. Kitaristi Markus Väisäsen vuosia luotsaama Bizzarro-trio oli valmiiksi täsmälleen oikealla aaltopituudella operoiva, värisävyt ja rytmit hallitseva oikea bändi. Kevät-talvella 2022 palaset asettuvat oikeaan asentoon, vaivattomasti, jopa maagisen oloisesti. Väisäsen kitara on telepaattisessa yhteydessä Jenni Kinnusen soittoon ja basso-rumpu-pari Teemu Aho ja Jaakko Pöyhönen luo jykevän perustan kitaroiden liihottelulle. Kinnusen mielen sopukoissa pyörinyt musiikki oli selvästi tarkoitettu tämän yhtyeen soitettavaksi!</p><p>Tinyhawkin kitarainen maailma on täynnä seikkailua, silmissä viliseviä maisemia ja sukelluksia yllättäviin tilanteisiin. Eletty ja koettu muuttuu musiikiksi. Flamencon tanssillinen totaalisuus. Klassisen kitaran espanjalaiset klassikot. Ghibli-animaatioista roihahtanut hullu rakkaus japanilaiseen kulttuuriin. Beatles-Black Sabbath-Jay Reatard-Grimes-akselilta rehottava ennakkoluuloton musiikkihulluus. Savolaisuus. Sielunsukulaisuus Khruangbin psykedeelisen funkyyn mielikuvitusetnoon. Massiiviset kitaravallit. Sekopäinen euforia diskon tanssilattialla. Melankolian syvä lämpö. Kaikki tämä kuuluu Tinyhawk & Bizzarron musiikissa, jossa olennaisinta on tuntemisen kokemus. Sillä luodaan yhteyksiä kaikkiin ulottuvuuksiin.</p><p>Rohkea ja tuore ote kitarainstrumentaalimusiikkiin ei ole jäänyt huomaamatta. Tinyhawk & Bizzarron debyytti ”Nekorok” sai riemastuneen vastaanoton suomalaisen musiikkimedian kovilta konkareilta syksyllä 2023. Helsingin Sanomien Ilkka Mattilan mukaan ” yhtyeen esikoisalbumi Nekorok kuulostaa raikkaalta tuulelta, joka puhaltaa pölyt pois ullakolle turvaan talletetusta suomalaisesta sähkökitaramusiikista.” Yleisradion Susanna Vainiola ihastui ”kitaralla kerrottuihin tarinoihin”. Arttu Seppänen totesi Keskisuomalaisessa Tinyhawk-debyytin olevan ”yksi tämän syksyn ilahduttavimpia kotimaisia albumeja.”</p><p>Tinyhawk & Bizzarro on palkittu tammikuussa 2024 ”Vuoden tulokas” -palkinnolla Indie Awardseissa ja voitti arvostetun Teosto -palkinnon huhtikuussa 2024.Uusi albumi “Neko-A-Sekoi” sai päivänvalon lokakuussa 2025, ja se julkaistiin mitä parhaimman Humu Recordsin toimesta. Helsingin Sanomien Harri römpötti antoi albumille täydet viisi tähteä.</p><p>Tinyhawk & Bizzarro on:<br>Jenni Kinnunen<br>Teemu Aho<br>Markus Väisänen<br>Jaakko Pöyhönen</p>", "sv": "<p>Fördomsfri musikalisk galenskap, massiva gitarrvallar och psykedelisk funk!</p><p>För Jenni Kinnunen är elgitarren mer än bara ett instrument. I händerna på Tinyhawk & Bizzarros huvudsolist och kompositör är gitarren en rymdraket och en port till den ohämmat dansande fantasins värld. Kinnunen, som har berikat det finländska indiepop-ljudlandskapet med sin sensitiva stil som gitarrist i bandet Rosita Luu, har inte gått de allra vanligaste vägarna som musiker, och det hörs. Hennes musik och kompositioner har en egen röst.</p><p>De drömmar och visioner om musiken som grott i flera år behövde rätt kompanjoner för att få luft under vingarna. Svaret fanns i Savolax. Bizzarro-trion, som letts av gitarristen Markus Väisänen i åratal, var ett riktigt band som redan opererade på exakt rätt våglängd och behärskade nyanserna och rytmerna. Under vårvintern 2022 föll bitarna på plats, utan ansträngning och nästan på ett magiskt sätt. Väisänens gitarr har telepatisk kontakt med Jenni Kinnunens musicerande och Teemu Aho och Jaakko Pöyhönen på bas och trummor skapar en solid grund för gitarrerna att sväva på. Den musik som snurrade i Kinnunens huvud var helt klart avsedd att spelas av detta band!</p><p>Tinyhawks gitarrvärld är full av äventyr, landskap som fladdrar förbi och djupdykningar i överraskande situationer. Det levda och upplevda förvandlas till musik. Flamencons dansanta totalitet. Spanska klassiker på klassisk gitarr. En galen kärlek till japansk kultur som föddes ur Ghibli-animationer. En fördomsfri musikalisk galenskap som lever på axeln Beatles-Black Sabbath-Jay Reatard-Grimes. Det savolaxiska. Ett själsfrändskap med Khruangbins psykedeliska funky fantasietno. Massiva gitarrvallar. Galen eufori på discots dansgolv. Melankolins djupa värme. Allt detta finns med i Tinyhawk & Bizzarros musik, där upplevelsen av att känna är det mest väsentliga. Den skapar länkar till alla dimensioner.</p><p>Det djärva och fräscha greppet om instrumental gitarrmusik har inte gått obemärkt förbi. Tinyhawk & Bizzarros debut ”Nekorok” togs emot med förtjusning av veteraner inom finsk musikmedia hösten 2023. Helsingin Sanomats Ilkka Mattila skrev att ”gruppens debutalbum Nekorok låter som en frisk fläkt som blåser bort dammet från den finländska elgitarrmusiken som lagts undan på vinden”. Susanna Vainiola på Yle blev förtjust i ”berättelserna som berättas med gitarren”. Arttu Seppänen skrev i Keskisuomalainen att Tinyhawks debut är ”ett av höstens mest glädjande finska album”.</p><p>Tinyhawk & Bizzarro utsågs till årets nykomling på Indie Awards i januari 2024 och tilldelades det prestigefyllda Teosto-priset i april 2024. Det nya albumet Neko-A-Sekoi såg dagens ljus i oktober 2025 och gavs ut av Humu Records. Helsingin Sanomats Harri Römpötti gav albumet fulla fem stjärnor.</p><p>Tinyhawk & Bizzarro är:<br>Jenni Kinnunen<br>Teemu Aho<br>Markus Väisänen<br>Jaakko Pöyhönen</p>", "en": "<p>Open-minded musical madness, massive guitar riffs and psychedelic funk!</p><p>For Jenni Kinnunen, the electric guitar is more than just an instrument. In the hands of the lead soloist and composer of the band Tinyhawk & Bizzarro, the guitar is a space rocket and a gateway to a world of imagination dancing without inhibitions. Kinnunen, who has enriched the Finnish indie pop soundscape with her intuitive elegance as a guitarist for the band Rosita Luu, has not taken the usual paths as a musician, and it shows. Her playing and compositions have their own unique sound.</p><p>The dreams and visions of her own music, which had been smouldering for years, needed the right allies to take flight. She found the answer in Savo. The Bizzarro trio, led for years by guitarist Markus Väisänen, was just the right band, operating on exactly the right wavelength and having a good command of colours and rhythms. In late winter and early spring 2022, the pieces fell into place effortlessly, as though by magic. Väisänen’s guitar has a telepathic connection with Jenni Kinnunen’s playing, and the bass-drum duo Teemu Aho and Jaakko Pöyhönen create a solid foundation for the flight of the guitars. The music that was swirling around in the recesses of Kinnunen’s mind was clearly meant to be played by this band!</p><p>Tinyhawk’s guitar world is full of adventure, sceneries flashing by, and dives into unexpected situations. The lived and the experienced turns into music. The totality of flamenco. Spanish classics for the classical guitar. A mad love for Japanese culture, sparked by Ghibli animations. An open-minded enthusiasm for music that feeds off the The Beatles-Black Sabbath-Jay Reatard-Grimes axis. Savo roots. A kinship with Khruangbin’s psychedelic, funky, imaginative ethno. Massive guitar riffs. Crazy euphoria on the dance floor of a disco. The deep warmth of melancholy. All of this is present in the music of Tinyhawk & Bizzarro, where the key is the experience of feeling. It creates connections to all dimensions.</p><p>The bold and fresh approach to guitar instrumental music has not gone unnoticed. Tinyhawk & Bizzarro’s debut album Nekorok was enthusiastically received by the veterans of the Finnish music media in autumn 2023. According to Ilkka Mattila from Helsingin Sanomat: “the band’s debut album Nekorok sounds like a breath of fresh air that blows the dust off the Finnish electric guitar music stored safely in the attic.” Susanna Vainiola from YLE was fascinated by “the stories told with the guitar”. Arttu Seppänen remarked in the Keskisuomalainen newspaper that Tinyhawk’s debut is “one of the most enjoyable Finnish albums of this autumn”.</p><p>Tinyhawk & Bizzarro received the ‘Newcomer of the Year’ award at the Indie Awards in January 2024 and won the prestigious Teosto Prize in April 2024. The band’s new album Neko-A-Sekoi was released in October 2025 by Humu Records, the best of the best. Harri Römpötti from Helsingin Sanomat gave the album a full five stars.</p><p>Tinyhawk & Bizzarro comprises:<br>Jenni Kinnunen<br>Teemu Aho<br>Markus Väisänen<br>Jaakko Pöyhönen</p>" }, "name": { "fi": "Tinyhawk & Bizzarro – A la Malmi", "sv": "Tinyhawk & Bizzarro – A la Malmi", "en": "Tinyhawk & Bizzarro – A la Malmi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67597/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67295", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/kanneltalo/gallinago-gallinago-4025195/", "sv": "https://www.lippu.fi/artist/kanneltalo/gallinago-gallinago-4025195/", "en": "https://www.lippu.fi/artist/kanneltalo/gallinago-gallinago-4025195/" }, "description": null, "price": { "fi": "20 / 15 €", "sv": "20 / 15 €", "en": "20 / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493842, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-19T10:13:00.668403Z", "last_modified_time": "2025-11-19T10:13:00.668433Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780853.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493842/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-19T10:13:00.572866Z", "last_modified_time": "2026-03-20T01:14:11.141333Z", "date_published": null, "start_time": "2026-04-24T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Gallinago gallinago on kaunis ja makaaberi konsertto kaikille meille voimansa kadottaneille, shamaaninsa poptähtiin vaihtaneille ihmispoloille.", "sv": "Gallinago gallinago är en vacker och makaber konsert för alla vi som förlorat får kraft och bytt ut schamanen mot en popstjärna.", "en": "The Common Snipe (Gallinago gallinago) is a kind of mythical bird, whose rattling call brings good luck in the evenings, but at night is said to be a harbinger of death." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7E10C14300411977C832406F2342A458/Reetta-Kaisa_Iles_I_Ville_Rauhala_I_Janne_Teivainen_Gallinago_gallinago_-_taivaanvuohi_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7E10C14300411977C832406F2342A458/Reetta-Kaisa_Iles_I_Ville_Rauhala_I_Janne_Teivainen_Gallinago_gallinago_-_taivaanvuohi_", "en": "http://www.kanneltalo.fi/en/events/event/7E10C14300411977C832406F2342A458/Reetta-Kaisa_Iles_I_Ville_Rauhala_I_Janne_Teivainen_Gallinago_gallinago_-_taivaanvuohi_" }, "description": { "fi": "<p>Gallinago gallinago on kaunis ja makaaberi konsertto kaikille meille voimansa kadottaneille, shamaaninsa poptähtiin vaihtaneille ihmispoloille.</p><p>Taivaanvuohi (Gallinago gallinago) on eräänlainen kuukkeli, jonka mäkätyksen kuuleminen iltaisin tuo onnea, mutta yöaikaan enteilee kuolemaa. Se on vanhojen eukkojen sielulintu. Taivaanvuohessa elää kuolemaa pettäneen pelurin sielu, joka ei pääse Taivaaseen, eikä Helvettiin, vaan on tuomittu liitämään ikuisesti maailmojen välissä.</p><p>“Me mitättömät, harmaat mäkättäjät kahlaamme pakoon vääjäämätöntä loppua. Pelkäämme kuolemaa niin paljon, että emme uskalla elää. Pelkäämme elämää, koska se muistuttaa liikaa kuolemasta.”*</p><p>Teoksen soiva selkäranka syntyy ihmisäänen, kontrabasson ja elektroniikan vuoropuhelusta. Visuaalit ja karjalaisuudesta vaikuttunut muotisuunnittelu luovat omaperäisen esitysuniversumin, jonka sisällä vyöryy tummanpuhuva, arkaais-avantgardistinen sävelmaailma. Esitys on liikkeen ja ihmisäänen synteesi, jossa tanssiin yhdistyvät hengittävä laulullinen voima, rustiikkiset etnosävyt ja spoken word. Tekijät ammentavat niin kansanperinteestä kuin 70-luvun New Yorkin loft jazzista. Monikieliset tekstit ovat enemmänkin post-pop runoutta kuin perinteisiä laululyriikoita.</p><p>Kesto n. 1 tunti</p><p>Common Spine -kollektiivi<br>Laulu, tanssi, koreografia, sävellys, tekstit: Reetta-Kaisa Iles<br>Kontrabasso, sävellys, äänisuunnittelu, tekstit: Ville Rauhala<br>Valo- ja videosuunnittelu, äänisuunnittelu, tekstit: Janne Teivainen<br>Esiintyjät: Reetta-Kaisa Iles, Ville Rauhala ja Janne Teivainen<br>Pukusuunnittelu: Antrea Kantakoski<br>Konseptin mentorointi ja kiertuetuotanto: Harri Kuorelahti<br>Valokuvaus: Mortti Saarnia</p><p>Reetta-Kaisa Iles toimii väitöskirjatutkijana Taideyliopiston Sibelius-Akatemian MuTri-taiteilijakoulutuksessa. Gallinago gallinago on hänen taiteellisen tutkimuksensa ensimmäinen osio. Opinnäytteen ohjaajina toimivat koreografit Ervi Sirén, Elina Pirinen sekä tutkija Anne Tarvainen.</p><p>*Lainaus Reetta-Kaisa Iles</p>", "sv": "<p>Gallinago gallinago är en vacker och makaber konsert för alla vi som förlorat får kraft och bytt ut schamanen mot en popstjärna.</p><p>Enkelbeckasinen (Gallinago gallinago) är en fågel vars gnällande läte ger lycka om man hör det på kvällen, men förebådar död nattetid. Den är de gamla gummornas självfågel. I enkelbeckasinen lever själen av en myglare som lurat döden och varken kommer till himlen eller helvetet, utan är dömd att sväva mellan världarna för evigt.</p><p>”Vi obetydliga, gråa gnällspikar försöker vada ifrån det ofrånkomliga slutet. Vi är så rädda för döden att vi inte vågar leva. Vi fruktar livet för att det påminner oss för mycket om döden.”*</p><p>Verkets musikaliska ryggrad skapas av ett samspel mellan den mänskliga rösten, kontrabasen och elektroniken. De visuella inslagen och den karelskinspirerade formdesignen skapar ett säreget föreställningsuniversum, inom vilket en mörk, arkaisk-avantgardistisk musikvärld virvlar. Föreställningen är en syntes av rörelse och den mänskliga rösten, som kombinerar sångens kraft, rustika etnotoner och spoken word. Kompositörerna hämtar inspiration från både folktradition och 70-talets loft jazz i New York. De flerspråkiga texterna påminner mer om post-pop-poesi än om traditionella låttexter.</p><p>Längd: cirka 1 timme</p><p>Common Spine-kollektivet<br>Sång, dans, koreografi, tonsättning, texter: Reetta-Kaisa Iles<br>Kontrabas, tonsättning, ljuddesign, texter: Ville Rauhala<br>Ljus- och videodesign, ljuddesign, texter: Janne Teivainen<br>På scenen: Reetta-Kaisa Iles, Ville Rauhala och Janne Teivainen<br>Kostym: Antrea Kantakoski<br>Konceptrådgivning och turnéproduktion: Harri Kuorelahti<br>Fotografering: Mortti Saarnia</p><p>Reetta-Kaisa Iles är doktorand vid konstnärsutbildningen MuTri vid Konstuniversitetets Sibelius-Akademi. Gallinago gallinago är den första delen av hennes konstnärliga studie. Handledare för avhandlingen är koreograferna Ervi Sirén och Elina Pirinen samt forskaren Anne Tarvainen.</p><p>*Citat av Reetta-Kaisa Iles</p>", "en": "<p>The Common Snipe (Gallinago gallinago) is a kind of mythical bird, whose rattling call brings good luck in the evenings, but at night is said to be a harbinger of death.</p><p>It is a soul-bird, especially for old women. Within the snipe lives the soul of a<br>gambler who has cheated death; one who, unable to enter Heaven or Hell, is<br>doomed to forever soar between worlds.</p><p>“We, the insignificant gray rattlers, wade through life trying to escape our inevitable<br>end. We fear death so much that we dare not live. We fear life, because it reminds<br>us too much of death.”*</p><p>The musical backbone of the work is created by a dialogue between the human<br>voice, double bass, and electronics. Visuals and fashion design - strongly inspired<br>by Karelian folklore - create a unique performance universe, whose core is a dark,<br>archaic-avant-garde sound world. The performative narrative is shaped by the<br>synthesis of movement and the human voice, where dance merges with breathing,<br>singing power, rustic ethnic tones, and spoken word. The creators draw from both<br>folk traditions and 1970s New York loft jazz. The multilingual texts are closer to<br>post-pop poetry than to traditional song lyrics.</p><p>A beautiful and macabre concerto for all of us poor souls who have lost our power, who have exchanged our shamans for pop stars.</p><p>Duration: 1 h</p><p>Vocals, dance, choreography, composition, text: Reetta-Kaisa Iles<br>Double bass, composition, sound design, text: Ville Rauhala<br>Lighting and video design, sound design, text: Janne Teivainen<br>Performers: Reetta-Kaisa Iles, Ville Rauhala, Janne Teivainen<br>Costume design: Antrea Kantakoski<br>Harri Kuorelahti: concept mentoring / tour production<br>Mortti Saarnia: photography</p><p>Reetta-Kaisa Iles is a doctoral researcher in the MuTri Doctoral School for Artists at<br>the Sibelius Academy of the University of the Arts Helsinki. Gallinago Gallinago is<br>the first artistic component of her doctoral research. The work has been supervised<br>by choreographers Ervi Sirén and Elina Pirinen, as well as researcher Anne<br>Tarvainen.</p><p>*Quote: Reetta-Kaisa Iles</p>" }, "name": { "fi": "Reetta-Kaisa Iles I Ville Rauhala I Janne Teivainen: Gallinago gallinago - taivaanvuohi – – Ruumiillinen konsertto tanssille, kontrabassolle ja elektroniikalle", "sv": "Reetta-Kaisa Iles I Ville Rauhala I Janne Teivainen: Gallinago gallinago - taivaanvuohi – – En fysisk konsert för dans, kontrabas och elektronik", "en": "Reetta-Kaisa Iles I Ville Rauhala I Janne Teivainen: Gallinago gallinago - taivaanvuohi – A corporeal concerto for dancing, double bass, and electronics." }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67295/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68065", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/circo-aereo-circo-aereo-pyorre-annantalo-21333702/", "sv": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333702/", "en": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333702/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494894, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-18T12:13:31.478906Z", "last_modified_time": "2026-02-18T12:13:31.478920Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785385.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-02-18T12:13:31.351651Z", "last_modified_time": "2026-03-20T01:14:10.950619Z", "date_published": null, "start_time": "2026-04-24T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.", "sv": "Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.", "en": "Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/639F63E46C6A0A05F7628148F058E7B2/Circo_Aereo_Pyorre", "sv": "http://www.annantalo.fi/sv/evenemang/event/639F63E46C6A0A05F7628148F058E7B2/Circo_Aereo_Pyorre_Virvel", "en": "http://www.annantalo.fi/en/events/event/639F63E46C6A0A05F7628148F058E7B2/Circo_Aereo_Pyorre" }, "description": { "fi": "<p>Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.</p><p>Akrobatian ja jongleerauksen luoma pyörivä, hypnoottinen liike saa mukaansa paitsi esineet, materiaalit myös äänen ja valon. Pyörre on yhdistelmä erilaisia sirkuslajeja ja niiden kohtaamisia - kokoelma liikkeitä, tunnelmia ja mielikuvia.</p><p>Esitystä varten on kerätty eri kulttuureissa, eri puolilla maailmaa käytettyjä leluja ja työvälineitä, joiden käsittely vaatii taitoa ja tuntemusta fysiikan lakien vaikutuksesta liikkeeseen. Alun perin luonnonmateriaaleista tehdyt välineet, kuten kotilon kuoresta tehty nigerialainen rascal-hyrrä, meksikolainen lasso tai kiinalainen diabolo saavat esityksessä uuden käsittelyn ja elämän.</p><p>Taidokkaasti käsiteltynä esineiden pyörivän, hypnoottisen liikkeen tuottamat äänet luovat mielikuvia luonnon ilmiöistä, kuten tuulesta tai myrskystä, jotka tuntuvat vaikuttavan esiintyjän liikkeisiin ja koreografiaan.</p><p>Eetu Ranta on poikkeuksellisen laaja-alainen uuden sukupolven nykysirkustaiteilija. Hän on työskennellyt Suomessa mm. Circo Aereon, Race Horse Companyn, Tanssiteatteri Hurjaruuthin ja Suomen kansallisoopperan teoksissa.</p><p>Kesto n. 45 minuuttia<br>Ikäsuositus 5+<br>Esiintyminen ja koreografia: Eetu Ranta<br>Suunnittelu: Eetu Ranta ja Maksim Komaro<br>Valosuunnittelu: Juho Rahijärvi<br>Äänisuunnittelu: Ranta ja Komaro<br>Kuvat: Juho Rahijärvi<br>Tuotanto: Circo Aereo yhteistyössä Annantalon kanssa</p><p>Suomen ensimmäinen ja pisimpään toiminut nykysirkusryhmä Circo Aereo on Annantalon residenssiryhmä vuonna 2026.</p><p>Ryhmän taiteellisella työllä ja teoksilla on ollut keskeinen merkitys uuden sirkuksen kehityksessä itsenäiseksi taidemuodoksi Suomessa sekä suomalaisen sirkustaiteen kansainvälisessä läpimurrossa 2000-luvulla.</p><p>Ryhmän monitaiteisia esityksiä on nähty tuhansia kertoja yli 40:ssä maassa viidellä eri mantereella. Ryhmä työskentelee paitsi sirkuksen myös esine- ja liiketeatterin, kuvataiteen, tanssin ja musiikin ammattilaisten kanssa.</p>", "sv": "<p>Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.</p><p>Den virvlande, hypnotiska rörelse som skapas genom akrobatik och jonglering fångar inte bara föremål och material, utan också ljud och ljus.</p><p>Pyörre är en kombination av olika cirkuskonster och mötet mellan dem – en samling rörelser, stämningar och bilder. Till föreställningen har man samlat leksaker och redskap som används i olika kulturer runt om i världen och som kräver skicklighet och kunskap om de fysikaliska lagar som påverkar rörelse.</p><p>Redskapen, som ursprungligen tillverkats av naturmaterial, till exempel en nigeriansk rascalsnurra gjord av snäckskal, en mexikansk lasso eller en kinesisk diabolo, hanteras på ett nytt sätt och får nytt liv i föreställningen.</p><p>I skickliga händer skapar ljuden från den virvlande, hypnotiska rörelsen som föremålen ger upphov till bilder av naturfenomen som vind eller stormar som verkar påverka artistens rörelser och koreografi.</p><p>Eetu Ranta är en exceptionellt mångsidig nutida cirkusartist av den nya generationen. I Finland har han arbetat med bland annat Circo Aereo, Race Horse Company, dansteatern Hurjaruuth och Finlands nationalopera.</p><p>Längd: ca 45 minuter<br>Åldersrekommendation: 5+<br>Framförande och koreografi: Eetu Ranta<br>Planering: Eetu Ranta och Maksim Komaro<br>Ljusdesign: Juho Rahijärvi<br>Ljuddesign: Ranta och Komaro<br>Bilder: Juho Rahijärvi<br>Produktion: Circo Aereo i samarbete med Annegården</p><p>Circo Aereo, Finlands första och äldsta nutida cirkusgrupp, är en av Annegårdens residensgrupper 2026.</p><p>Gruppens konstnärliga arbete och verk har spelat en nyckelroll i utvecklingen av den nutida cirkusen som en självständig konstform i Finland samt i den finska cirkuskonstens internationella genombrott under 2000-talet.</p><p>Gruppens tvärkonstnärliga föreställningar har visats tusentals gånger i mer än 40 länder på fem kontinenter. Gruppen arbetar inte bara med cirkus utan även med professionella inom föremåls- och rörelseteater, bildkonst, dans och musik.</p>", "en": "<p>Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5.</p><p>The swirling, hypnotic movement created by acrobatics and juggling incorporates not only objects and materials, but also sound and light.</p><p>Pyörre is a combination of different circus acts and their encounters – a collection of movements, moods and mental images.</p><p>For the performance, Ranta collected toys and tools used in different cultures around the world, which require skill and knowledge of how the laws of physics affect movement.</p><p>Items made originally from natural materials, such as a Nigerian rascal top made of a snail shell, a Mexican lasso or a Chinese diabolo, receive a new treatment and life in the performance.</p><p>When handled skilfully, the sounds produced by the swirling, hypnotic movement of the items conjure up mental images of natural phenomena, such as wind or storms, that appear to influence the performer’s movements and choreography.</p><p>Eetu Ranta is an exceptionally wide-ranging new-generation contemporary circus artist. He has been featured in Finland in works by groups such as Circo Aereo, Race Horse Company, Dance Theatre Hurjaruuth and the Finnish National Opera.</p><p>Duration: roughly 45 min<br>Recommended age: 5+<br>Performance and choreography: Eetu Ranta<br>Design: Eetu Ranta and Maksim Komaro<br>Lighting design: Juho Rahijärvi<br>Sound design: Ranta and Komaro<br>Images: Juho Rahijärvi<br>Production: Circo Aereo in collaboration with Annantalo</p><p>Circo Aereo, Finland’s first and longest-running contemporary circus group, will be a resident group of Annantalo in 2026.<br> <br>The group’s artistic work has played a key role in the development of new circus into an independent art form in Finland and in the international breakthrough of Finnish circus art in the 21st century.</p><p>The group’s multi-artistic performances have been seen thousands of times in more than 40 countries on five continents. In addition to circus, the group also works with professionals of object and movement theatre, visual arts, dance and music.</p>" }, "name": { "fi": "Circo Aereo: Pyörre", "sv": "Circo Aereo: Pyörre – Virvel", "en": "Circo Aereo: Pyörre" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68065/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68081", "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:350/?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:p1278/?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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494800, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-09T10:13:06.533238Z", "last_modified_time": "2026-02-09T10:13:06.533252Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782110.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494800/?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": "2026-02-09T10:13:06.383916Z", "last_modified_time": "2026-03-20T01:14:10.800806Z", "date_published": null, "start_time": "2026-04-24T13: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 DJ Börje soittaa retroa diskomusiikkia 60–80-luvuilta iltapäivädiskossa!", "sv": "Eftermiddags-disco med legendariska Dj Börje som spelar retro-disco-musik från 1960–80-talet!", "en": "The legendary DJ Börje plays retro disco music from the 1960s-80's in this afternoon disco!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4A12A29A7FDB3EAC6AEFC52876A0B413/DJ_Borje_Retro-Disco", "sv": "http://www.vuotalo.fi/sv/evenemang/event/4A12A29A7FDB3EAC6AEFC52876A0B413/DJ_Borje_Retro-Disco", "en": "http://www.vuotalo.fi/en/events/event/4A12A29A7FDB3EAC6AEFC52876A0B413/DJ_Borje_Retro-Disco" }, "description": { "fi": "<p>Legendaarinen DJ Börje soittaa retroa diskomusiikkia 60–80-luvuilta iltapäivädiskossa!</p><p>Kesto noin 2 tuntia <br>Vapaa pääsy</p><p>KIELI Suomi, ruotsi <br>KESTO 2h ilman väliaikaa</p>", "sv": "<p>Eftermiddags-disco med legendariska Dj Börje som spelar retro-disco-musik från 1960–80-talet!</p><p>Längd cirka 2 timmar</p><p>Fri entré</p><p>KIELI Suomi, ruotsi <br>KESTO 2h ilman väliaikaa</p>", "en": "<p>The legendary DJ Börje plays retro disco music from the 1960s-80's in this afternoon disco!</p><p>Duration approximately 2 hours</p><p>Free admission</p><p>KIELI Suomi, ruotsi <br>KESTO 2h ilman väliaikaa</p>" }, "name": { "fi": "DJ Börje: Retro-Disco", "sv": "DJ Börje: Retro-Disco", "en": "DJ Börje: Retro-Disco" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68081/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67596", "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:104/?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:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4022118", "sv": "https://www.lippu.fi/eventseries/name-4022118", "en": "https://www.lippu.fi/eventseries/name-4022118" }, "description": null, "price": { "fi": "11€/15€", "sv": "11€/15€", "en": "11€/15€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494105, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-05T11:12:55.261533Z", "last_modified_time": "2025-12-05T11:12:55.261548Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781994.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494105/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-05T11:12:55.145329Z", "last_modified_time": "2026-03-20T01:14:10.669701Z", "date_published": null, "start_time": "2026-04-24T10: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": "Tule kuulemaan tervolalaisen Mirjami Lehdon koskettavia runoja, jotka kertovat mm. syrjäytyneistä nuorista.", "sv": "Kom och lyssna på Mirjami Lehtos gripande dikter, som bland annat handlar om marginaliserade ungdomar.", "en": "Join us to listen to the touching poems on themes such as marginalised young people, written by Mirjami Lehto from Tervola." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B79CB23FD8D5DC2C07597EDB9A35FE7D/Mirjamin_Runot", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B79CB23FD8D5DC2C07597EDB9A35FE7D/Mirjamis_dikter", "en": "http://www.malmitalo.fi/en/events/event/B79CB23FD8D5DC2C07597EDB9A35FE7D/Mirjamin_Runot_Mirjami_s_poetry" }, "description": { "fi": "<p>Tule kuulemaan tervolalaisen Mirjami Lehdon koskettavia runoja, jotka kertovat mm. syrjäytyneistä nuorista.</p><p>Elämäntyönsä Tervolassa opettajana tehnyt 94-vuotias Mirjami Lehto on kirjoittanut valtavan määrän runoja, joista Tervola Group on valinnut esitettäväkseen 50 runon kokoelman.</p><p>Mirjamin runojen pääosassa ovat Pohjolan luonto, arkielämä ja sen onnen hetket, ja tietysti rakkaus. Erityisen koskettavia ovat runot syrjäytyneistä, kelkasta pudonneista nuorista. Näihin hän tutustui toimiessaan erityisopettajana viimeisinä työvuosinaan. Runot käsittelevät myös ikääntymistä, lopuksi kuolemaakin. Näitä hän kuvaa kuitenkin riemukkaan ironisesti.</p><p>Markus Fagerudd on säveltänyt muutaman runon lauluiksi.<br>Esiintyjinä nähdään Tervola Group eli Eila Halonen, Markku Huhtamo, Juhani Laitala, Juha Mäntylä, Marja Pesonen ja Timo Pylkkänen.</p><p>Kesto: 1 t</p>", "sv": "<p>Kom och lyssna på Mirjami Lehtos gripande dikter, som bland annat handlar om marginaliserade ungdomar.</p><p>Mirjami Lehto, 94, som utfört sitt livsarbete som lärare i Tervola, har skrivit ett stort antal dikter, av vilka Tervola Group har valt ut en samling på 50 dikter att framföra.</p><p>Huvudsakligen behandlar Mirjamis dikter den nordiska naturen, vardagen och dess lyckostunder, och naturligtvis kärlek. Särskilt gripande är dikterna om marginaliserade ungdomar som hamnat utanför samhället. Hon bekantade sig med dessa under sina sista år som speciallärare. Dikterna behandlar också åldrandet och slutligen även döden. Dessa beskriver hon dock med fröjdefull ironi.</p><p>Markus Fagerudd har tonsatt några dikter till sånger.<br>De medverkande är: Tervola Group, det vill säga Eila Halonen, Markku Huhtamo, Juhani Laitala, Juha Mäntylä, Marja Pesonen och Timo Pylkkänen.</p><p>Längd: 1 h</p>", "en": "<p>Join us to listen to the touching poems on themes such as marginalised young people, written by Mirjami Lehto from Tervola.</p><p>Mirjami Lehto, 94, did her life’s work as a teacher in Tervola. She has written a large number of poems, of which the Tervola Group has selected a collection of 50 poems to present.</p><p>Mirjami's poetry focuses on the Arctic nature, everyday life and its moments of happiness, and, of course, love. Her poems about marginalised young people who have been left behind are especially touching. She got to know these young people when working as a special education teacher during the final years of her career. The poems also deal with themes such as ageing and even eventual death. These topics, however, she describes with hilarious irony.</p><p>Markus Fagerudd has set a few of her poems to songs.<br>The performers are the Tervola Group, comprising Eila Halonen, Markku Huhtamo, Juhani Laitala, Juha Mäntylä, Marja Pesonen and Timo Pylkkänen.</p><p>Duration: 1 h</p>" }, "name": { "fi": "Mirjamin Runot", "sv": "Mirjamis dikter", "en": "Mirjamin Runot – Mirjami’s poetry" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67596/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68066", "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:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" } ], "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": 1494904, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-19T11:13:03.126492Z", "last_modified_time": "2026-02-19T11:13:03.126526Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783813.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494904/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-19T11:13:02.999817Z", "last_modified_time": "2026-03-20T01:14:10.480975Z", "date_published": null, "start_time": "2026-04-24T07: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": "Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.", "sv": "Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.", "en": "Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/18270EAAB07403B650B0810725A50B9B/Circo_Aereo_Pyorre", "sv": "http://www.annantalo.fi/sv/evenemang/event/18270EAAB07403B650B0810725A50B9B/Circo_Aereo_Pyorre_Virvel", "en": "http://www.annantalo.fi/en/events/event/18270EAAB07403B650B0810725A50B9B/Circo_Aereo_Pyorre" }, "description": { "fi": "<p>Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.</p><p>Akrobatian ja jongleerauksen luoma pyörivä, hypnoottinen liike saa mukaansa paitsi<br>esineet, materiaalit myös äänen ja valon. Pyörre on yhdistelmä erilaisia sirkuslajeja ja niiden kohtaamisia - kokoelma liikkeitä, tunnelmia ja mielikuvia.</p><p>Esitystä varten on kerätty eri kulttuureissa, eri puolilla maailmaa käytettyjä leluja ja työvälineitä, joiden käsittely vaatii taitoa ja tuntemusta fysiikan lakien vaikutuksesta liikkeeseen. Alun perin luonnonmateriaaleista tehdyt välineet, kuten kotilon kuoresta tehty nigerialainen rascal-hyrrä, meksikolainen lasso tai kiinalainen diabolo saavat esityksessä uuden käsittelyn ja elämän.</p><p>Taidokkaasti käsiteltynä esineiden pyörivän, hypnoottisen liikkeen tuottamat äänet luovat mielikuvia luonnon ilmiöistä, kuten tuulesta tai myrskystä, jotka tuntuvat vaikuttavan esiintyjän liikkeisiin ja koreografiaan.</p><p>Eetu Ranta on poikkeuksellisen laaja-alainen uuden sukupolven nykysirkustaiteilija. Hän on työskennellyt Suomessa mm. Circo Aereon, Race Horse Companyn, Tanssiteatteri Hurjaruuthin ja Suomen kansallisoopperan teoksissa.</p><p>Kesto n. 45 minuuttia<br>Ikäsuositus 5+<br>Esiintyminen ja koreografia: Eetu Ranta<br>Suunnittelu: Eetu Ranta ja Maksim Komaro<br>Valosuunnittelu: Juho Rahijärvi<br>Äänisuunnittelu: Ranta ja Komaro<br>Kuvat: Juho Rahijärvi<br>Tuotanto: Circo Aereo yhteistyössä Annantalon kanssa</p><p>Suomen ensimmäinen ja pisimpään toiminut nykysirkusryhmä Circo Aereo on Annantalon residenssiryhmä vuonna 2026.</p><p>Ryhmän taiteellisella työllä ja teoksilla on ollut keskeinen merkitys uuden sirkuksen kehityksessä itsenäiseksi taidemuodoksi Suomessa sekä suomalaisen sirkustaiteen kansainvälisessä läpimurrossa 2000-luvulla. Ryhmän monitaiteisia esityksiä on nähty tuhansia kertoja yli 40:ssä maassa viidellä eri mantereella.</p><p>Ryhmä työskentelee paitsi sirkuksen myös esine- ja liiketeatterin, kuvataiteen, tanssin ja musiikin ammattilaisten kanssa.</p><p>ryhmille, paikkavaraukset 23.3. klo 8.00 alkaen, kultus.hel.fi</p>", "sv": "<p>Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.</p><p>Den virvlande, hypnotiska rörelse som skapas genom akrobatik och jonglering fångar inte bara<br>föremål och material, utan också ljud och ljus. Pyörre är en kombination av olika cirkuskonster och mötet mellan dem – en samling rörelser, stämningar och bilder.</p><p>Till föreställningen har man samlat leksaker och redskap som används i olika kulturer runt om i världen och som kräver skicklighet och kunskap om de fysikaliska lagar som påverkar rörelse.</p><p>Redskapen, som ursprungligen tillverkats av naturmaterial, till exempel en nigeriansk rascalsnurra gjord av snäckskal, en mexikansk lasso eller en kinesisk diabolo, hanteras på ett nytt sätt och<br>får nytt liv i föreställningen.</p><p>I skickliga händer skapar ljuden från den virvlande, hypnotiska rörelsen som föremålen ger upphov till bilder av naturfenomen som vind eller stormar som verkar påverka artistens rörelser och koreografi.</p><p>Eetu Ranta är en exceptionellt mångsidig nutida cirkusartist av den nya generationen. I Finland har han arbetat med bland annat Circo Aereo, Race Horse Company, dansteatern Hurjaruuth och Finlands nationalopera.</p><p>Längd: ca 45 minuter<br>Åldersrekommendation: 5+<br>Framförande och koreografi: Eetu Ranta<br>Planering: Eetu Ranta och Maksim Komaro<br>Ljusdesign: Juho Rahijärvi<br>Ljuddesign: Ranta och Komaro<br>Bilder: Juho Rahijärvi<br>Produktion: Circo Aereo i samarbete med Annegården</p><p>Circo Aereo, Finlands första och äldsta nutida cirkusgrupp, är en av Annegårdens residensgrupper 2026. Gruppens konstnärliga arbete och verk har spelat en nyckelroll i utvecklingen av den nutida cirkusen som en självständig konstform i Finland samt i den finska cirkuskonstens internationella genombrott under 2000-talet.</p><p>Gruppens tvärkonstnärliga föreställningar har visats tusentals gånger i mer än 40 länder på fem kontinenter. Gruppen arbetar inte bara med cirkus utan även med professionella inom föremåls- och rörelseteater, bildkonst, dans och musik.</p>", "en": "<p>Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5.</p><p>The swirling, hypnotic movement created by acrobatics and juggling incorporates not only<br>objects and materials, but also sound and light. Pyörre is a combination of different circus acts and their encounters – a collection of movements, moods and mental images.</p><p>For the performance, Ranta collected toys and tools used in different cultures around the world, which require skill and knowledge of how the laws of physics affect movement. Items made originally from natural materials, such as a Nigerian rascal top made of a snail shell, a Mexican lasso or a Chinese diabolo, receive a new treatment and life in the performance.</p><p>When handled skilfully, the sounds produced by the swirling, hypnotic movement of the items conjure up mental images of natural phenomena, such as wind or storms, that appear to influence the performer’s movements and choreography.</p><p>Eetu Ranta is an exceptionally wide-ranging new-generation contemporary circus artist. He has been featured in Finland in works by groups such as Circo Aereo, Race Horse Company, Dance Theatre Hurjaruuth and the Finnish National Opera.</p><p>Duration: roughly 45 min<br>Recommended age: 5+<br>Performance and choreography: Eetu Ranta<br>Design: Eetu Ranta and Maksim Komaro<br>Lighting design: Juho Rahijärvi<br>Sound design: Ranta and Komaro<br>Images: Juho Rahijärvi<br>Production: Circo Aereo in collaboration with Annantalo</p><p>Circo Aereo, Finland’s first and longest-running contemporary circus group, will be a resident group of Annantalo in 2026. The group’s artistic work has played a key role in the development of new circus into an independent art form in Finland and in the international breakthrough of Finnish circus art in the 21st century.</p><p>The group’s multi-artistic performances have been seen thousands of times in more than 40 countries on five continents. In addition to circus, the group also works with professionals of object and movement theatre, visual arts, dance and music.</p>" }, "name": { "fi": "Circo Aereo: Pyörre", "sv": "Circo Aereo: Pyörre – Virvel", "en": "Circo Aereo: Pyörre" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68066/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67241", "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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494311, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T10:14:03.391997Z", "last_modified_time": "2025-12-23T10:14:03.392014Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780203.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494311/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-23T10:14:03.257308Z", "last_modified_time": "2026-03-20T01:14:10.314801Z", "date_published": null, "start_time": "2026-04-24", "end_time": "2026-09-26", "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": "Yksityiskohtaisia lyijykynäpiirroksia, joissa pohditaan elämän eri teemoja eläinhahmojen, luonnon ja erilaisten esineiden kautta.", "sv": "Detaljerade blyertsteckningar som reflekterar över olika teman i livet genom djurfigurer, naturen och olika föremål.", "en": "Detailed pencil drawings that reflect on different themes of life through animal characters, nature and various objects." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/02C71E1267C537CB7EA90E294FF4F9C5/Heli_Kemilainen_Connecting_", "sv": "http://www.annantalo.fi/sv/evenemang/event/02C71E1267C537CB7EA90E294FF4F9C5/Heli_Kemilainen_Connecting", "en": "http://www.annantalo.fi/en/events/event/02C71E1267C537CB7EA90E294FF4F9C5/Heli_Kemilainen_Connecting" }, "description": { "fi": "<p>Yksityiskohtaisia lyijykynäpiirroksia, joissa pohditaan elämän eri teemoja eläinhahmojen, luonnon ja erilaisten esineiden kautta.</p><p>Connecting - teoskokonaisuus koostuu yli kymmenestä lyijykynäpiirustuksesta, joissa keskiössä on yhteyden etsiminen itseensä, tunteisiin, toisiin ihmisiin sekä luontoon. Sarja koostuu yksityiskohtaisista lyijykynä piirustuksista, joissa katsoja saa pysähtyä havainnoimaan ja tutkimaan näkemäänsä. Työt ovat tarinoita, joissa jokaisessa on oma ilmiö taustalla. Näyttely koostuu lyijykynäteoksista, joissa pohdin elämän eri teemoja eläinhahmojen ja luonnon elementtien kautta. Näyttely nojaa lyijykynäpiirtämisen perinteeseen.</p><p>Teokset ovat prosessi, jossa syvennytään pitkäksi aikaa ihmettelemään lyijykynän monipuolisia mahdollisuuksia. Piirtäminen luovana menetelmänä itsessään on arvokas matka tarinoiden sisään - parhaimmillaan se tarjoaa mahdollisuuden mietiskelyyn, meditatiivisen tilan.</p><p>Avajaiset 23.4. klo 17-19 – Tervetuloa!</p><p>Näyttely on valittu ohjelmistoon Annantalon avoimen haun kautta. Kevään 2025 aikana hakuun tuli 230 hakemusta, joiden joukosta Annantalon oppilasraati valitsi kuusi taiteilijaa toisen kerroksen gallerioihin sekä alakerran yhteisnäyttelyyn.</p>", "sv": "<p>Detaljerade blyertsteckningar som reflekterar över olika teman i livet genom djurfigurer, naturen och olika föremål.</p><p>Connecting-utställningens verkhelhet består av mer än tio blyertsteckningar, som fokuserar på sökandet efter samhörighet med sig själv samt med känslor, andra människor och naturen. Serien består av detaljerade blyertsteckningar som ger betraktaren möjlighet att stanna upp för att iaktta och utforska vad hen ser. Verken är berättelser, var och en med sitt eget underliggande fenomen. Utställningen består av verk i blyerts som reflekterar över olika teman i livet genom djurfigurer och naturelement. Utställningen bygger på blyertsteckningstraditionen.</p><p>Verken är en process där man under en längre tid fördjupar sig i en förundran över blyertspennans mångsidiga möjligheter. Teckning som kreativ metod är i sig en värdefull resa in i berättelser – när den är som bäst erbjuder den en möjlighet till kontemplation, ett meditativt tillstånd.</p><p>Vernissage 23.4. kl. 17–19 – Välkommen!</p><p>Utställningen har tagits med i programmet genom Annegårdens öppna ansökan. Under våren 2025 inkom 230 ansökningar, bland vilka Annegårdens elevjury valde ut sex konstnärer till gallerierna på andra våningen och till den gemensamma utställningen på nedre våningen.</p>", "en": "<p>Detailed pencil drawings that reflect on different themes of life through animal characters, nature and various objects.</p><p>The Connecting exhibition consists of more than ten pencil drawings that focus on the search for connection with oneself, emotions, other people and nature. The series consists of detailed pencil drawings that allow the viewer to stop to observe and explore what they see. The works are stories, each with its own underlying phenomenon. The exhibition consists of pencil works in which I reflect on different themes of life through animal characters and elements of nature. The exhibition draws on the tradition of pencil drawing.</p><p>The works are a process, taking time to marvel at the versatile possibilities of a pencil. Drawing as a creative method is in itself a valuable journey into stories – at its best, it offers an opportunity for contemplation, a meditative state.</p><p>Opening event on 23 April at 17.00–19.00 – hope to see you there!</p><p>The exhibition was selected for the programme through an open call at Annantalo. During the spring of 2025, Annantalo received 230 applications, from which the Annantalo student jury selected six artists for the second floor galleries and the joint exhibition downstairs.</p>" }, "name": { "fi": "Heli Kemiläinen: Connecting – Piirrosnäyttely", "sv": "Heli Kemiläinen: Connecting – Teckningsutställning", "en": "Heli Kemiläinen: Connecting – Exhibition of drawings" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67241/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }