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=19&weekday=6%2C7
{ "meta": { "count": 6462, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=20&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=18&weekday=6%2C7" }, "data": [ { "id": "kulke:67419", "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-21472894/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472894/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472894/" }, "description": null, "price": { "fi": "7€", "sv": "7€", "en": "7€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1672953, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T12:14:58.682407Z", "last_modified_time": "2026-03-19T12:14:58.682421Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781121.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672953/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T12:14:58.552389Z", "last_modified_time": "2026-03-20T01:14:18.607146Z", "date_published": null, "start_time": "2026-05-09T12: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/DEAA19AEA3985F4FAC406B62D7B21C56/The_Super_Mario_Galaxy_Movie_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/DEAA19AEA3985F4FAC406B62D7B21C56/The_Super_Mario_Galaxy_Movie_7_", "en": "http://www.malmitalo.fi/en/events/event/DEAA19AEA3985F4FAC406B62D7B21C56/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:67419/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68212", "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/artist/savoy-teatteri/jumppatytoet-helsinki-3873721/", "sv": "https://www.lippu.fi/artist/savoy-teatteri/jumppatytoet-helsinki-3873721/", "en": "https://www.lippu.fi/artist/savoy-teatteri/jumppatytoet-helsinki-3873721/" }, "description": null, "price": { "fi": "22,80-38,90 €", "sv": "22,80-38,90 €", "en": "22,80-38,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1599273, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-12T10:13:36.339211Z", "last_modified_time": "2026-03-12T10:13:36.339226Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786239.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1599273/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-12T10:13:36.167151Z", "last_modified_time": "2026-03-20T01:14:18.286154Z", "date_published": null, "start_time": "2026-05-09T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jumppatytöt on esitys joukkuevoimistelusta.", "sv": "Jumppatytöt är en föreställning om estetisk truppgymnastik.", "en": "Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C4658F3883934D0BE18F6085D8247BFD/Jumppatytot", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C4658F3883934D0BE18F6085D8247BFD/Jumppatytot", "en": "http://www.savoyteatteri.fi/en/events/event/C4658F3883934D0BE18F6085D8247BFD/Jumppatytot" }, "description": { "fi": "<p>Jumppatytöt on esitys joukkuevoimistelusta.</p><p>Se on entisten voimistelijoiden matka menneisiin ja nykyisiin kehoihin – harjoittelun, kilpailun, vertailun, arvioinnin, ilon, kauneuden, yhteisöllisyyden ja vertaisuuden äärelle.<br>Esitys on oodi suomalaiselle naisvoimistelulle ja kaikille, jotka ovat joskus harjoitelleet niin, että suussa maistuu metalli.<br>Erityiskiitos päiväkirjoille vuosina 1998-2009 ja tytöille, jotka niitä jaksoivat raapustaa ja häpeästä huolimatta säilyttää.</p><p>“NAUTTIKAA!”</p><p>Jumppatytöt kiertueen tekijätiedot:</p><p>Teksti, ohjaus, dramaturgia, esiintyminen: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografia: Antton Laine ja työryhmä<br>Äänisuunnittelu: Roy Boswell, Oscar Fagerudd ja työryhmä<br>Video: Työryhmän kotivideoista ja arkistomateriaaleista koostanut Liisa Mudist<br>Kiertueen valosuunnittelu: Heikki Paasonen<br>Kiertueen skenografia: Heikki Paasonen ja työryhmä<br>Kiertueen teknikot: Oscar Fagerudd, Aleksi Karjalainen ja Pinja Kokkonen<br>Kiertueen tour manager: Jukka Siurua<br>Kiertueen tuotanto: Ella Lahdenmäki ja työryhmä<br>Esityskuvat: Jukka Hämeenniemi / @agg_dad Juliste: Jaakko Pietiläinen</p><p>Suositusikäraja: K-12<br>Esityksen kesto: 1 h 45 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Esitystä ovat tukeneet: Kansan sivistysrahasto (presidentti Tarja Halosen rahasto), Ida Aalberg -säätiö (Petra Uexküllin rahasto), Samuel Huberin taidesäätiö, Helsingin kaupunki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>", "sv": "<p>Jumppatytöt är en föreställning om estetisk truppgymnastik.</p><p>Den beskriver tidigare gymnasters resa till sina tidigare och nuvarande kroppar – träning, tävling, jämförelser, bedömning, glädje, skönhet, gemenskap och kamratskap.<br>Föreställningen är en hyllning till den finländska damgymnastiken och till alla som någon gång tränat så att de fått blodsmak i munnen.<br>Ett särskilt tack till dagböckerna från 1998–2009 och till de flickor som orkade skriva i dem och behöll dem trots skammen.</p><p>”NJUT!”</p><p>Om skaparna av Jumppatytöt-turnén:</p><p>Text, regi, dramaturgi, framförande: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografi: Antton Laine och en arbetsgrupp<br>Ljuddesign: Roy Boswell, Oscar Fagerudd och en arbetsgrupp<br>Video: Liisa Mudist har sammanställt arbetsgruppens hemmavideor och arkivmaterial<br>Ljusdesign för turnén: Heikki Paasonen<br>Turnéns scenografi: Heikki Paasonen och en arbetsgrupp<br>Tekniker under turnén: Oscar Fagerudd, Aleksi Karjalainen och Pinja Kokkonen<br>Tour manager för turnén: Jukka Siurua<br>Turnéproduktion: Ella Lahdenmäki och en arbetsgrupp<br>Bilder från föreställningen: Jukka Hämeenniemi/@agg_dad Juliste: Jaakko Pietiläinen</p><p>Åldersrekommendation: K-12<br>Föreställningens längd: 1 h 45 min, ingen paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Föreställningen har fått stöd av: Folkets Kulturfond (president Tarja Halonens fond), Ida Aalberg-stiftelsen (Petra Uexkülls fond), Samuel Hubers konststiftelse, Helsingfors stad, Finska Kulturfonden Birkaland, Finska Kulturfonden Nyland, Finska Kulturfonden Egentliga Finland</p>", "en": "<p>Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics.</p><p>It is a journey of former gymnasts into past and present bodies – into training, competition, comparison, evaluation, joy, beauty, communality and peerage.<br>The performance is an ode to Finnish women’s gymnastics and to everyone who has ever practised until they can taste metal in their mouth.<br>Special thanks to diary entries from 1998–2009 and the girls who kept writing them and held onto them despite the embarrassment.</p><p>“ENJOY!”</p><p>Jumppatytöt tour creative team:</p><p>Script, direction, dramaturgy, performance: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Choreography: Antton Laine and the team<br>Sound design: Roy Boswell, Oscar Fagerudd and the team<br>Video: Compiled by Liisa Mudist from the team’s home videos and archival material<br>Lighting design for the tour: Heikki Paasonen<br>Scenography for the tour: Heikki Paasonen and the team<br>Tour technicians: Oscar Fagerudd, Aleksi Karjalainen and Pinja Kokkonen<br>Tour manager: Jukka Siurua<br>Tour production: Ella Lahdenmäki and the team<br>Performance images: Jukka Hämeenniemi / @agg_dad Poster: Jaakko Pietiläinen</p><p>Minimum age recommendation: 12<br>Performance duration: 1 h 45 min, no intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p><p>The show is supported by: People’s Education Fund (President Tarja Halonen Fund), Ida Aalberg Foundation (Petra Uexküll Fund), Samuel Huber Art Foundation, City of Helsinki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>" }, "name": { "fi": "Jumppatytöt – Havukainen - Hyvönen - Lahdenmäki", "sv": "Jumppatytöt – Havukainen - Hyvönen - Lahdenmäki", "en": "Jumppatytöt – Havukainen - Hyvönen - Lahdenmäki" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Jumppatytöt ry", "sv": "Jumppatytöt ry", "en": "Jumppatytöt ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68212/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68072", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494750, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T15:13:55.009122Z", "last_modified_time": "2026-02-05T15:13:55.009145Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780739.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494750/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T15:13:54.893753Z", "last_modified_time": "2026-03-20T01:14:18.180130Z", "date_published": null, "start_time": "2026-05-09T09:00:00Z", "end_time": "2026-05-09T13: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": "Lähde spektaakkelimaiselle kuoromatkalle Stoan aukiolle!", "sv": "Kom med på en spektakulär körresa på Stoaplatsen!", "en": "Go on a spectacular choir trip to Stoa square!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/79C347F3AD6050633BB7C7B1FC88F809/Stoan_laulupaiva", "sv": "http://www.stoa.fi/sv/evenemang/event/79C347F3AD6050633BB7C7B1FC88F809/Stoas_kordag", "en": "http://www.stoa.fi/en/events/event/79C347F3AD6050633BB7C7B1FC88F809/Choir_day_at_Stoa" }, "description": { "fi": "<p>Lähde spektaakkelimaiselle kuoromatkalle Stoan aukiolle!</p><p>Herätään yhdessä muuttolintujen kanssa laulamaan kevät ja kesä tervetulleeksi. Stoan aukiolla moniääninen laulu raikaa, kun useat kuorot kokoontuvat laulamaan yhdessä eri kielillä. Yleisökin saa laulaa mukana!</p><p>Kesto: 4 tuntia<br>Kieli: suomi/monikielinen</p><p>Vapaa pääsy</p>", "sv": "<p>Kom med på en spektakulär körresa på Stoaplatsen!</p><p>Vi vaknar med flyttfåglarna för att sjunga in våren och sommaren.</p><p>På Stoatorget ljuder en mångröstad sång när flera körer samlas för att sjunga tillsammans på olika språk. Publiken får också sjunga med!</p><p>Längd: 4 timmar<br>Språk: finska/flerspråkigt</p>", "en": "<p>Go on a spectacular choir trip to Stoa square!</p><p>Let's join the migratory birds in welcoming spring and summer.</p><p>Polyphonic singing will echo in Stoa square as several choirs come together to sing in different languages. The audience can sing along too!</p><p>Duration: 4 hours<br>Language: Finnish/multilingual</p>" }, "name": { "fi": "Stoan laulupäivä", "sv": "Stoas kördag", "en": "Choir day at Stoa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68072/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68195", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/playground-co-paperia-stoa-21439552/", "sv": "https://www.lippu.fi/event/playground-co-paperia-stoa-21439552/", "en": "https://www.lippu.fi/event/playground-co-paperia-stoa-21439552/" }, "description": null, "price": { "fi": "15€- 11€", "sv": "15€- 11€", "en": "15€- 11€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1671290, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T08:14:28.424227Z", "last_modified_time": "2026-03-19T08:14:28.424243Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780725.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1671290/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T08:14:28.260656Z", "last_modified_time": "2026-03-20T01:14:17.915304Z", "date_published": null, "start_time": "2026-05-08T15: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": "Paperia on nykytanssiteos identiteetistä nopeasti muuttuvassa urbaanissa kulttuurissa.", "sv": "Paperia är ett modernt dansverk om identitet i en snabbt föränderlig urban kultur.", "en": "Paperia (Paper) is a contemporary dance piece about identity in a rapidly changing urban culture." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A23BF19945D9A8094C2CA8570A5B9B4B/Playground_Co_Paperia", "sv": "http://www.stoa.fi/sv/evenemang/event/A23BF19945D9A8094C2CA8570A5B9B4B/Playground_Co_Paperia", "en": "http://www.stoa.fi/en/events/event/A23BF19945D9A8094C2CA8570A5B9B4B/Playground_Co_Paperia" }, "description": { "fi": "<p>Paperia on nykytanssiteos identiteetistä nopeasti muuttuvassa urbaanissa kulttuurissa.</p><p>“Paperia” on nykytanssiteos teemoinaan muisti, säilyttäminen ja identiteetti nopeasti muuttuvassa urbaanissa kulttuurissa. Teos muodostuu lyhyistä kohtauksista ja tunnelmakuvista, joissa eri liiketekniikat - nykytanssi, sirkus, parkour - sulautuvat toisiinsa. Materiaaleina teos käyttää lankaa ja metallia, vanhaa ja uutta, kylmää ja pehmeää.</p><p>“Minulle teosprosessi alkoi suvussa kulkeneen vanhan neulontatekniikan opiskelusta. Aloin harjoitella katoavaa käsityötapaa pitääkseni sitä elävänä tulevaisuudessa. Neuloessani minusta tuntui, että asia joka voisi olla mitä suurimmassa määrin omaani onkin minulle vierasta, osa katoavaa maailmaa,johon saavuin myöhässä.”<br>Iiro Näkin nuorille suunnattu sooloteos “Paperia” on Playground Co.:n esikoisteos, joka saa ensi-iltansa</p><p>toukokuussa 2026.<br>...<br>Koreografi, esiintyjä Iiro Näkki</p><p>Äänisuunnittelu Touko Kemppainen</p><p>Valokonsultaatio ja toteutus Mikko Kaukonen</p><p>Historioitsijan konsultaatio Jenni Räikkönen</p><p>Tuotanto Hitaat Liikkeet ry / Palyground Co & JoJo – Oulun Tanssin Keskus</p><p>Yhteistyössä Taidetestaajat-kulttuurikasvatusohjelma</p><p>Teosta tukemassa Taike – Taiteen Edistämiskeskus, Vivicas Vänner</p>", "sv": "<p>Paperia är ett modernt dansverk om identitet i en snabbt föränderlig urban kultur.</p><p>I vår globaliserade värld finns det hur mycket material som helst för att bygga sig själv. Samtidigt förvandlas den gamla lokala identiteten från det levda till något exotiskt, en estetik. Det fysiska verket förenar det urbana och det gamla – kall metall och trådens mjukhet.</p><p>Verket utgår från en strävan som uppstått i den urbana ungdomskulturen att lära sig att fortsätta en stickteknik som gått i släkten. Iiro Näkkis soloverk består av övningar i nutidsdans, cirkus och parkour och en strävan efter att skapa en relation till sin egen lokala kultur och historia, som känns allt mer avlägsen.</p><p>Paperia riktar sig till unga och är Playground Co.:s debutverk, som har premiär våren 2026.</p><p>Koreograf/artist Iiro Näkki<br>Ljuddesign Touko Kemppainen<br>Ljuskonsultation och genomförande Mikko Kaukonen<br>Konsultation om historisk forskning Jenni Räikkönen<br>Produktion Hitaat Liikkeet ry / Playground Co & JoJo - Oulun Tanssin Keskus<br>I samarbete med Konsttestarna-programmet för kulturfostran<br>Verket stöds av Centret för konstfrämjande, Vivicas Vänner</p>", "en": "<p>Paperia (Paper) is a contemporary dance piece about identity in a rapidly changing urban culture.</p><p>In a globalised world, there is a limitless supply of building materials for the self. At the same time, the old, local identity is transformed from the lived to the exotic, into an aesthetic. The physical work reconciles the urban and the old – cold metal and the softness of thread.</p><p>The starting point of the work is an attempt by a product of urban youth culture to learn how to continue a knitting technique passed down through their family. Iiro Näkki's solo work consists of an exploration of contemporary dance, circus and parkour, and an attempt to form a relationship with an increasingly distant local culture and history.</p><p>Aimed at young people, Paperia is Playground Co.'s debut work, which will premiere in spring 2026.</p><p>Choreographer/Performer Iiro Näkki<br>Sound design Touko Kemppainen<br>Light consultation and implementation Mikko Kaukonen<br>Consultation in historical research Jenni Räikkönen<br>Production Hitaat Liikkeet ry / Playground Co & JoJo – Oulu Dance Centre<br>In cooperation with the Art Testers Cultural Education Programme<br>Supported by Taike – Art Promotion Centre Finland, Vivicas Vänner</p>" }, "name": { "fi": "Playground Co.: Paperia", "sv": "Playground Co.: Paperia", "en": "Playground Co.: Paperia" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68195/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67767", "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/markku-aro-vuotalo-vuotalo-21118476/", "sv": "https://www.lippu.fi/event/markku-aro-vuotalo-vuotalo-21118476/", "en": "https://www.lippu.fi/event/markku-aro-vuotalo-vuotalo-21118476/" }, "description": null, "price": { "fi": "15 € / 20 €", "sv": "15 € / 20 €", "en": "15 € / 20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494323, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-29T10:13:00.975417Z", "last_modified_time": "2025-12-29T10:13:00.975430Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780424.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494323/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-29T10:13:00.798368Z", "last_modified_time": "2026-03-20T01:14:17.581741Z", "date_published": null, "start_time": "2026-05-08T15: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 Markku Aro on alansa rautainen ammattilainen ja kiistatta yksi Suomen suosituimmista iskelmätähdistä.", "sv": "Den legendariske Markku Aro är ett riktigt proffs inom sitt område och utan tvekan en av Finlands mest populära schlagerstjärnor.", "en": "The legendary Markku Aro is a true professional in his field and undoubtedly one of Finland’s most popular schlager stars." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6C542EACF7DE97F84BBC171F07307075/Markku_Aro", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6C542EACF7DE97F84BBC171F07307075/Markku_Aro_", "en": "http://www.vuotalo.fi/en/events/event/6C542EACF7DE97F84BBC171F07307075/Markku_Aro_" }, "description": { "fi": "<p>Legendaarinen Markku Aro on alansa rautainen ammattilainen ja kiistatta yksi Suomen suosituimmista iskelmätähdistä.</p><p>Aro on viihdyttänyt yleisöä jo useita vuosikymmeniä. Vuoteen 1968 osui miehen todellinen läpimurtohitti \"Käyn uudelleen eiliseen\" ja sitä on seurannut mittava lista suomalaisen yleisön rakastamia hittejä - \"Hyvännäköinen\", \"Moskiitto\", \"Jestas sentään\", \"Oma kultasein\", \"Anna kaikkien kukkien kukkia\", \"Etsin kunnes löydän sun\", \"Pois sun vien\", \"Kun sä vierelläin sateessa oot\" ja \"Loit elämälle pohjaa\", \"Keskiyön aikaan\", \"Ollaan lähekkäin\"...Aro on edustanut Suomea Euroviisuissa 1971 Koivistolaisten kanssa kappaleella \"Tie muuteen päivään\".</p><p>Ainutlaatuisen ja pitkän musiikkiuran tehnyt Aro on taiteilija, jonka yleisö on ottanut kestosuosikikseen. Esiintymislavat toivottavat miehen Diesel-orkestereineen aina tervetulleeksi. Tämä ryhmä antaa yleisölle kaikkensa ja heistä huokuu ihailtava rakkaus musiikkiin ja viihdyttäjän työhön.</p><p>Keväällä 2015 Markku Aro nähtiin suositussa Tähdet, Tähdet -TV-ohjelmassa. Iskelmä-Finlandia -palkinto hänelle myönnettiin 4.8.2017.</p><p>Uran ensimmäinen konserttikiertue Markku Aro 70 vuotta -nimellä järjestettiin vuonna 2019. Markku Aro - Käyn uudelleen eiliseen -elämäntarina julkaistiin elokuussa 2023 (kirjoittaja Tomi Lindblom). Menestyksekkäällä Yhdessä-konserttikiertueella Markku oli 2023–2024 Lea Lavenin, Kai Hyttisen, Marion Rungin ja Esa Niemisen juhlaorkesterin kanssa. Yhdessä osa 2-kiertue keväällä 2025 samalla kokoonpanolla. Markun 75-vuotisjuhlakonsertti Tampere-talossa 30.11.2024.</p><p>Kesto: 2 t sis. väliajan</p><p>HUOM! Markku Aron & Dieselin perjantain 6.3. konsertti joudutaan siirtämään. Uusi konserttipäivä on pe 8.5. klo 18.</p><p>Ostetut liput käyvät uuteen ajankohtaan sellaisenaan.</p><p>Mikäli uusi ajankohta ei sovi, voi hakea lippurahojen palautusta alla olevasta linkistä 14.3. mennessä: https://web.lippu.fi/palautus/</p>", "sv": "<p>Den legendariske Markku Aro är ett riktigt proffs inom sitt område och utan tvekan en av Finlands mest populära schlagerstjärnor.</p><p>Aro har underhållit publiken i flera decennier. Han fick sitt genombrott 1968 med \"Käyn uudelleen eiliseen”, som har följts av en lång lista av hits som den finländska publiken älskar – \"Hyvännäköinen\", \"Moskiitto\", \"Jestas sentään\", \"Oma kultasein\", \"Anna kaikkien kukkien kukkia\", \"Etsin kunnes löydän sun\", \"Pois sun vien\", \"Kun sä vierelläin sateessa oot”, \"Loit elämälle pohjaa\", \"Keskiyön aikaan\", \"Ollaan lähekkäin”... Aro representerade Finland i Eurovisionen 1971 tillsammans med Koivistolaiset med låten \"Tie muuteen päivään\".</p><p>Tack vare sin långa och unika musikkarriär är Aro en ständig favorit bland publiken. Han är alltid välkommen på scenen med sin Diesel-orkester. Denna grupp ger sitt allt för publiken och strålar av en beundransvärd kärlek till musiken och underhållarens arbete.<br>Våren 2015 deltog Markku Aro i det populära tv-programmet Tähdet, Tähdet. Han tilldelades priset Iskelmä-Finlandia den 4 augusti 2017.</p><p>Karriärens första konsertturné, under namnet Markku Aro 70 år, ordnades 2019. Biografin Markku Aro – Käyn uudelleen eiliseen kom i augusti 2023 (författare Tomi Lindblom). Markku deltog i den framgångsrika konsertturnén Yhdessä åren 2023–2024 med Lea Laven, Kai Hyttinen, Marion Rung och Esa Nieminens jubileumsorkester. Yhdessä osa 2-turnén våren 2025 med samma sammansättning. Markkus 75-årsjubileumskonsert i Tammerforshuset den 30 november 2024.</p><p>Längd: 2 h inklusive paus</p>", "en": "<p>The legendary Markku Aro is a true professional in his field and undoubtedly one of Finland’s most popular schlager stars.</p><p>Aro has been entertaining audiences for several decades. 1968 was the year of his real breakthrough hit Käyn uudelleen eiliseen, which was then followed by a long list of beloved hits: Hyvännäköinen, Moskiitto, Jestas sentään, Oma kultasein, Anna kaikkien kukkien kukkia, Etsin kunnes löydän sun, Pois sun vien, Kun sä vierelläin sateessa oot and Loit elämälle pohjaa, Keskiyön aikaan, Ollaan lähekkäin... In 1971, Aro represented Finland in the Eurovision Song Contest with the song Tie uuteen päivään by Koivistolaiset.</p><p>Having had a unique and long musical career, Aro is an artist who has secured a permanent place in Finnish people’s hearts. He and his Diesel band are always welcome on the stage. This group gives their all to the audience and exude an admirable love of music and the work of an entertainer.</p><p>In spring 2015, Markku Aro made an appearance in the popular TV show Tähdet, Tähdet. He was awarded the Iskelmä-Finlandia prize on 4 August 2017.</p><p>The first concert tour of his career, entitled Markku Aro 70 vuotta (‘Markku Aro 70 Years’), took place in 2019. His biography, entitled Markku Aro – Käyn uudelleen eiliseen (‘Revisiting Yesterday’), was published in August 2023 (written by Tomi Lindblom). Markku was on the successful Yhdessä (‘Together’) concert tour 2023–2024 with Lea Laven, Kai Hyttinen, Marion Rung and the Juhlaorkesteri band led by Esa Nieminen. In spring 2025, the same line-up embarked on part two of the tour. Markku had a 75th anniversary concert at Tampere Hall on 30 November 2024.</p><p>Duration: 2 h, incl. intermission</p>" }, "name": { "fi": "Markku Aro", "sv": "Markku Aro", "en": "Markku Aro" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67767/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67574", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494592, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T13:13:11.534450Z", "last_modified_time": "2026-01-21T13:13:11.534464Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781797.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494592/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-21T13:13:11.428506Z", "last_modified_time": "2026-03-20T01:14:17.470142Z", "date_published": null, "start_time": "2026-05-08", "end_time": "2026-06-07", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Puotinharjun Puhos on paljon enemmän kuin ostoskeskus – se on elävä kohtaamispaikka, jossa yhteisö ja kulttuurien moninaisuus kukoistavat.", "sv": "Puhos i Botbyhöjden är mycket mer än ett köpcentrum – det är en levande mötesplats där gemenskapen och kulturens mångfald blomstrar.", "en": "Puhos in Puotinharju is much more than a shopping centre – it is a vibrant meeting place where community and cultural diversity flourish." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/D7027FC4306AFFFFDB99B52B88746965/Puhos_Itahelsinkilaisesta_ostarista_kulttuurien_keitaaksi", "sv": "http://www.stoa.fi/sv/evenemang/event/D7027FC4306AFFFFDB99B52B88746965/Puhos_Ett_kopcentrum_i_ostra_Helsingfors_blir_en_kulturoas", "en": "http://www.stoa.fi/en/events/event/D7027FC4306AFFFFDB99B52B88746965/Puhos_from_a_shopping_mall_in_East_Helsinki_to_an_oasis_of_cultures" }, "description": { "fi": "<p>Puotinharjun Puhos on paljon enemmän kuin ostoskeskus – se on elävä kohtaamispaikka, jossa yhteisö ja kulttuurien moninaisuus kukoistavat.</p><p>Stoan galleriaan avautuva valokuvanäyttely avaa näkymiä Puhoksen arkeen ja sen moniin ääniin. Puhoksen etniset kaupat, kahvilat ja ravintolat kertovat tarinaa ihmisistä, jotka tekevät Puhoksesta omanlaisen maailmansa.</p><p>Se kuvaa paikkaa, joka herättää vahvoja tunteita – ja kutsuu pohtimaan, mitä voimme Puhoksessa oppia yhteisöllisyydestä, monimuotoisuudesta ja kaupungin jatkuvasta muutoksesta.</p><p>Näyttelyn kuvat ovat pääasiassa syntyneet valokuvaaja Sami Mannerheimon monivuotisesta kuvausprojektista Puhoksella, ja mukana on myös Angela Mussen ja muiden avustajien otoksia.</p><p>Näyttely liittyy samannimisen kirjaan, joka julkaistaan näyttelyn yhteydessä. Kirjan tekstit, joista näyttelyssä on myös lainauksia, ovat kirjoittaneet Joonas Kervinen ja joukko Puhoksen yhteisöön kuuluvia avustajia.</p><p>Vapaa pääsy</p>", "sv": "<p>Puhos i Botbyhöjden är mycket mer än ett köpcentrum – det är en levande mötesplats där gemenskapen och kulturens mångfald blomstrar.</p><p>En fotoutställning som öppnar i Stoas galleri visar perspektiv på Puhos vardag och dess många röster. Puhos etniska butiker, kaféer och restauranger berättar om de människor som gör Puhos till sin egen värld.</p><p>Utställningen beskriver en plats som väcker starka känslor – och som bjuder in oss att fundera på vad vi i Puhos kan lära oss om gemenskap, mångfald och stadens ständiga förändring.</p><p>Bilderna i utställningen kommer främst från fotografen Sami Mannerheimos fleråriga fotograferingsprojekt i Puhos, och en del är också tagna av Angela Musse och andra medhjälpare.</p><p>Till utställningen hör också en bok som ges ut i samband med utställningen. Texterna i boken, som också citeras i utställningen, är skrivna av Joonas Kervinen och en grupp medhjälpare som tillhör Puhos gemenskap.</p><p>Fritt inträde</p>", "en": "<p>Puhos in Puotinharju is much more than a shopping centre – it is a vibrant meeting place where community and cultural diversity flourish.</p><p>The photographic exhibition opening in the Stoa gallery opens up a view of everyday life in Puhos and its many voices. The ethnic shops, cafés and restaurants in Puhos tell the story of the people who make Puhos a world of its own.</p><p>The exhibition depicts a place that evokes strong emotions – and invites us to reflect on what we can learn in Puhos about community, diversity and the constant change in the city.</p><p>The photos in the exhibition are mainly the result of Photographer Sami Mannerheimo's multi-year photography project in Puhos, but the exhibition also includes photographs by Angela Musse and other contributors.</p><p>The exhibition will be accompanied by a book of the same name, which will be published in conjunction with the exhibition. The texts of the book, which are also quoted in the exhibition, were written by Joonas Kervinen and a group of contributors from the Puhos community.</p><p>Free entry</p>" }, "name": { "fi": "Puhos – Itähelsinkiläisestä ostarista kulttuurien keitaaksi", "sv": "Puhos – Ett köpcentrum i östra Helsingfors blir en kulturoas", "en": "Puhos – from a shopping mall in East Helsinki to an oasis of cultures" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67574/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67413", "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-21472893/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472893/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472893/" }, "description": null, "price": { "fi": "7€", "sv": "7€", "en": "7€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1672951, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T12:14:56.607288Z", "last_modified_time": "2026-03-19T12:14:56.607303Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781112.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672951/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T12:14:56.474644Z", "last_modified_time": "2026-03-20T01:14:15.042449Z", "date_published": null, "start_time": "2026-05-02T12: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/53C57164931DA3A2DAB3D28D6A575001/The_Super_Mario_Galaxy_Movie_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/53C57164931DA3A2DAB3D28D6A575001/The_Super_Mario_Galaxy_Movie_7_", "en": "http://www.malmitalo.fi/en/events/event/53C57164931DA3A2DAB3D28D6A575001/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:67413/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67505", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494649, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-27T11:13:08.471193Z", "last_modified_time": "2026-01-27T11:13:08.471215Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781613.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494649/?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-01-27T11:13:08.353468Z", "last_modified_time": "2026-03-20T01:14:14.931038Z", "date_published": null, "start_time": "2026-05-02T08:00:00Z", "end_time": "2026-05-02T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E40831796619500107B59BE84D983F17/Annantalon_taidelauantai_Kampilla", "sv": "http://www.annantalo.fi/sv/evenemang/event/E40831796619500107B59BE84D983F17/Annegardens_konstlordagar_Kampilla_I_folks_lyor_", "en": "http://www.annantalo.fi/en/events/event/E40831796619500107B59BE84D983F17/Annantalo_Art_Saturdays_In_the_apartment_" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Kämpillä</b></p><p>Kenen koira on karannut naapuriin? Mitä piileskelee ullakolla? Keneltä on unohtunut puurokattila liedelle?</p><p>Annantalon taidelauantain avoimessa työpajassa pääset piirtämään oman huoneen yhteiseen kerrostaloon, jonka ikkunoiden takaa avautuu mitä kummallisempia tapahtumia. Mitä kummaa sinun kämpässäsi tapahtuu? Yhteinen teos jää osaksi Annantalon 2krs käytävän näyttelyä.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Kämpillä – I folks lyor</b><br>Vems hund har sprungit till grannen? Vad är det som gömmer sig på vinden? Vem har glömt grötkastrullen på spisen?</p><p>I den öppna verkstaden under Annegårdens konstlördag kan du rita ditt eget rum i ett gemensamt höghus, där de märkligaste saker händer bakom fönstren. Vad för konstigt händer i din lya? Det gemensamma verket blir en del av utställningen i korridoren på andra våningen i Annegården.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.<br>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>In the apartment</b><br>Whose dog has run away and gone next door? What is hiding in the attic? Who forgot their porridge pot on the stove? <br>At this Annantalo Art Monday open workshop, you will get to draw your own room in a shared apartment building, where the strangest things can be seen happening outside through the windows. What strange things are going on in your apartment? The resulting joint work will be featured in an exhibition in the second-floor corridor of Annantalo.</p><p>Annantalo Art Saturday <br>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.<br>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "name": { "fi": "Annantalon taidelauantai: Kämpillä", "sv": "Annegårdens konstlördagar: Kämpillä – I folks lyor", "en": "Annantalo Art Saturdays: In the apartment" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67429", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494786, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-06T12:13:43.731375Z", "last_modified_time": "2026-02-06T12:13:43.731390Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781198.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494786/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-06T12:13:43.583612Z", "last_modified_time": "2026-03-20T01:14:14.769018Z", "date_published": null, "start_time": "2026-05-02", "end_time": "2026-05-18", "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": "Kuvataidekurssien Matka-teemaisessa kevätnäyttelyssä on esillä eri tekniikoin tehtyjä maalauksia, piirustuksia, grafiikkaa ja veistoksia.", "sv": "Bildkonstlinjernas vårutställning på Resetema visar målningar, teckningar, grafik och skulpturer i olika tekniker.", "en": "The spring exhibition of the visual arts courses, themed Journey, features paintings, drawings, printmaking and sculptures created through various techniques." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/AAF4524228FFD4BE1EEC5D114D56956D/Matkalla_jossain_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/AAF4524228FFD4BE1EEC5D114D56956D/Ar_du_pa_resa_nagonstans_", "en": "http://www.kanneltalo.fi/en/events/event/AAF4524228FFD4BE1EEC5D114D56956D/On_a_Journey_Somewhere_" }, "description": { "fi": "<p>Kuvataidekurssien Matka-teemaisessa kevätnäyttelyssä on esillä eri tekniikoin tehtyjä maalauksia, piirustuksia, grafiikkaa ja veistoksia.</p><p>Näyttely on esillä 2.5. - 18.5.2026. <br>Avoinna ma-to klo 8–20, pe klo 8–18, la 10–16, su ja Helatorstaina suljettu. <br>Kanneltalon aukioloaikojen ja esitysten vuoksi ajat voivat poiketa annetuista.</p><p>Paikka: Kanneltalon Galleria</p><p>Vapaa pääsy! Tervetuloa!</p>", "sv": "<p>Bildkonstlinjernas vårutställning på Resetema visar målningar, teckningar, grafik och skulpturer i olika tekniker.</p><p>Utställningen visas 2.5–18.5.2026. <br>Öppet mån.–tor. kl. 8–20, fre. kl. 8–18, lör. kl. 10–16, stängt på sön. och Kristi himmelsfärdsdag. <br>På grund av Gamlasgårdens öppettider och föreställningar kan tiderna skilja sig från de angivna.</p><p>Plats: Gamlasgårdens Galleri</p><p>Fritt inträde! Välkommen!</p>", "en": "<p>The spring exhibition of the visual arts courses, themed Journey, features paintings, drawings, printmaking and sculptures created through various techniques.</p><p>The exhibition will be on display from 2 May to 18 May 2026. <br>Open Mon-Thu 8.00–20.00, Fri 8.00–18.00, Sat 10.00–16.00, closed on Sundays and Ascension Day. <br>Due to Kanneltalo's opening hours and performances, times may vary from those listed.</p><p>Location: Kanneltalo Gallery</p><p>Free entry! Welcome!</p>" }, "name": { "fi": "Matkalla jossain? – Työväenopiston kevätnäyttely", "sv": "Är du på resa någonstans? – Arbetarinstitutets vårutställning", "en": "On a Journey Somewhere? – Spring exhibition at the Adult Education Centre" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67429/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67576", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1519652, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-04T10:13:08.949479Z", "last_modified_time": "2026-03-04T10:13:08.949494Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781867.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1519652/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-03-04T10:13:08.837759Z", "last_modified_time": "2026-03-20T01:14:14.426782Z", "date_published": null, "start_time": "2026-04-30", "end_time": "2026-05-31", "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": "Porttitaide on porttiteorian mukainen sisäänkäynti uuteen monessakin mielessä.", "sv": "Porttitaide är i många avseenden en ingång till något nytt enligt portteorin.", "en": "In many ways, Porttitaide, or gateway art, is a gateway to the new in the sense of the gateway theory." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6ABB580085D6BB5179773DCD0A640DB2/Luukas_Rajamaki_Porttitaide", "sv": "http://www.stoa.fi/sv/evenemang/event/6ABB580085D6BB5179773DCD0A640DB2/Luukas_Rajamaki_Porttitaide", "en": "http://www.stoa.fi/en/events/event/6ABB580085D6BB5179773DCD0A640DB2/Luukas_Rajamaki_Porttitaide" }, "description": { "fi": "<p>Porttitaide on porttiteorian mukainen sisäänkäynti uuteen monessakin mielessä.</p><p>Se kertoo taiteilijan tarpeesta toteuttaa itseään tilanteesta riippumatta ja sitä vastustavista voimista.</p><p>Näyttelyn tarkoituksena on myös avata taiteen mysteerisyyttä katselijoille, joilla ei välttämättä ole paljoakaan kokemusta taiteen seuraamisesta.<br> <br>Näyttely sisältää installaatioita, maalaustaidetta, kuvanveistoa ja äänitaidetta.</p><p>Se on kaupunki- ja esikaupunkimaisema, joka koostuu talojen, autojen, luonnon, graffitin ja katutaiteen kohtaamisesta niiden luonnollisimmissa olosuhteissa: keskellä kaupunkia, hylätyissä rakennuksissa ja kulkuneuvoissa.</p><p>Kaikki teosten pohjamateriaalit ovat kierrätettyjä.</p>", "sv": "<p>Porttitaide är i många avseenden en ingång till något nytt enligt portteorin.</p><p>Den berättar om konstnärens behov av att förverkliga sig själv oberoende av situationen och motarbetande krafter.</p><p>Syftet med utställningen är att öppna upp konstens mystik för betraktare som kanske inte har så mycket erfarenhet av konst.<br> <br>Utställningen omfattar installationer, målningar, skulpturer och ljudkonst.</p><p>Det är ett stads- och förortslandskap med hus, bilar, natur, graffiti och gatukonst i sina mest naturliga miljöer: mitt i staden, i övergivna byggnader och fordon.</p><p>Alla basmaterial för verken är återvunna.</p>", "en": "<p>In many ways, Porttitaide, or gateway art, is a gateway to the new in the sense of the gateway theory.</p><p>It is about the artist's need to express themselves regardless of the situation and the forces that oppose it.</p><p>The exhibition also aims to open up the mystery of art to viewers who may not be used to experiencing art.<br> <br>The exhibition includes installations, paintings, sculpture and sound art.</p><p>It is an urban and suburban landscape made up of meetings between houses, cars, nature, graffiti and street art in their most natural settings: in the middle of the city and in abandoned buildings and vehicles.</p><p>All of the base materials for the works are recycled.</p>" }, "name": { "fi": "Luukas Rajamäki: Porttitaide", "sv": "Luukas Rajamäki: Porttitaide", "en": "Luukas Rajamäki: Porttitaide" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67576/?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: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" } ] }