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=22&weekday=6%2C7
{ "meta": { "count": 6468, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=23&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=21&weekday=6%2C7" }, "data": [ { "id": "kulke:68143", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494932, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-24T08:13:02.670934Z", "last_modified_time": "2026-02-24T08:13:02.670947Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785770.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494932/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-24T08:13:02.610426Z", "last_modified_time": "2026-03-20T01:13:50.880758Z", "date_published": null, "start_time": "2026-03-29T09:00:00Z", "end_time": "2026-03-29T14: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": "Tule kokeilemaan kudontaa kangaspuilla – olipa sinulla aiempaa kokemusta tai ei!", "sv": "Kom och prova på vävning i vävstolarna – oavsett om du har tidigare erfarenhet eller inte!", "en": "Come and try weaving on the looms – whether you have prior experience or not!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/1888DBC5FDCF4A9AA8DAC9E719E7494B/Kudontakioski", "sv": "http://www.stoa.fi/sv/evenemang/event/1888DBC5FDCF4A9AA8DAC9E719E7494B/VavKiosk", "en": "http://www.stoa.fi/en/events/event/1888DBC5FDCF4A9AA8DAC9E719E7494B/The_Weaving_Kiosk" }, "description": { "fi": "<p>Tule kokeilemaan kudontaa kangaspuilla – olipa sinulla aiempaa kokemusta tai ei!</p><p>Kudonta on käsityötaito, joka yhdistää kulttuureja ja ihmisiä ympäri maailmaa. Kudontakioski on kaikille avoin ja tilapäinen julkinen tila, jossa kudontatyökalut ja -materiaalit ovat helposti saatavilla.</p><p>Voit viihtyä niin pitkään kuin haluat ja nauttia käsillä tekemisen ilosta. Kangaspuut ovat kaikkien käytössä saapumisjärjestyksen mukaan.</p><p>Kudontakioski on Suomessa asuvan tanskalaisen tekstiilitaiteilijan, Rosa Tolnov Clausenin, eri puolilla maailmaa kiertänyt projekti, jonka avulla hän tutkii kudontatiloja ja kudonnan tulevaisuutta.</p><p>Lämpimästi tervetuloa!</p>", "sv": "<p>Kom och prova på vävning i vävstolarna – oavsett om du har tidigare erfarenhet eller inte!</p><p>Handvävning är ett hantverk som förenar kulturer och människor över hela världen. Vävkiosken är en öppen och tillfällig offentlig plats där vävredskap och material är lättillgängliga för alla.</p><p>Du kan stanna så länge du vill och njuta av glädjen i att arbeta med händerna. Vävstolarna används i turordning enligt principen först till kvarn.</p><p>Vävkiosken är ett projekt av den danska textilkonstnären Rosa Tolnov Clausen, bosatt i Finland. Den har rest runt i världen som ett sätt att utforska vävplatser och vävningens framtid.</p><p>Plats: Östra centrums bibliotek</p>", "en": "<p>Come and try weaving on the looms – whether you have prior experience or not!</p><p>Hand-weaving is a craft that connects cultures and people around the world. The Weaving Kiosk is an open and temporary public space where weaving tools and materials are easily available to everyone.</p><p>You can stay as long as you wish and enjoy the joy of working with your hands. The looms are available on a first-come, first-served basis.</p><p>The Weaving Kiosk is a project by Danish textile artist Rosa Tolnov Clausen, based in Finland. It has travelled across the world as a way of exploring weaving spaces and the future of weaving.</p><p>Place: Itäkeskus Library</p><p>We look forward to welcoming you!</p>" }, "name": { "fi": "Kudontakioski", "sv": "VävKiosk", "en": "The Weaving Kiosk" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68143/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67549", "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/4034695", "sv": "https://www.lippu.fi/eventseries/4034695", "en": "https://www.lippu.fi/eventseries/4034695" }, "description": null, "price": { "fi": "17-67 €", "sv": "17-67 €", "en": "17-67 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493918, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-26T11:13:57.406447Z", "last_modified_time": "2025-11-26T11:13:57.406461Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781690.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493918/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-26T11:13:57.282552Z", "last_modified_time": "2026-03-20T01:13:50.688740Z", "date_published": null, "start_time": "2026-03-28T17: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": "Vuonna 2026 tulee kuluneeksi 40 vuotta Paul Simonin Graceland-albumin julkaisusta. Tätä populaarimusiikin merkkipaalua juhlistetaan Savoy-teatterissa ainutlaatuisella konsertilla, kun lavalle nousee maailmalla ylistetty englantilais-afrikkalainen The London African Gospel Choir.", "sv": "2026 är det 40 år sedan Paul Simons album Graceland kom ut. Denna milstolpe inom populärmusiken kommer att firas med en unik konsert på Savoy-teatern, där den världsberömda engelsk-afrikanska kören The London African Gospel Choir uppträder på scenen.", "en": "The year 2026 will mark the 40th anniversary of the release of Paul Simon’s album Graceland. This milestone in popular music will be celebrated with a unique concert at the Savoy Theatre as the world-renowned Anglo-African choir The London African Gospel Choir takes to the stage." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/66B620656EBE4623A0FE22524697BF1B/Savoy_WORLD_The_London_African_Gospel_Choir_Graceland_40_vuotta_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/66B620656EBE4623A0FE22524697BF1B/Savoy_WORLD_The_London_African_Gospel_Choir_Graceland_40_ar_", "en": "http://www.savoyteatteri.fi/en/events/event/66B620656EBE4623A0FE22524697BF1B/Savoy_WORLD_The_London_African_Gospel_Choir_Graceland_turns_40_" }, "description": { "fi": "<p>Vuonna 2026 tulee kuluneeksi 40 vuotta Paul Simonin Graceland-albumin julkaisusta. Tätä populaarimusiikin merkkipaalua juhlistetaan Savoy-teatterissa ainutlaatuisella konsertilla, kun lavalle nousee maailmalla ylistetty englantilais-afrikkalainen The London African Gospel Choir.</p><p>Alkuperäinen Graceland (1986) oli uraauurtava teos, joka toi eteläafrikkalaiset rytmit ja township-musiikin suuren yleisön tietoisuuteen, voitti vuoden parhaan albumin Grammy-palkinnon ja rakensi siltaa kulttuurien välille. Juhlavuoden kunniaksi The London African Gospel Choir esittää albumista oman, kriitikoiden ja yleisön kiittämän tulkintansa.</p><p>Konsertti kunnioittaa alkuperäisteoksen henkeä, mutta tuo kappaleisiin kuoron oman värikkään kädenjäljen. Luvassa on kohottavia gospel-sovituksia kuusihenkisen yhtyeen säestämänä, voimakkaita solisteja ja tarttuvaa energiaa. Illan aikana kuullaan ikivihreät klassikot, kuten <i>Diamonds on the Soles of Her Shoes, Homeless</i> ja <i>You Can Call Me Al</i>.</p><p>Songlines Magazine on kuvannut esitystä sanoin: <i>”Korkeat odotukset lunastetaan täysin.”</i> Tämä ilta ei ole pelkkä konsertti, vaan musiikin ilon ja yhteisöllisyyden juhla, joka on koskettanut yleisöjä ympäri maailmaa.</p><p>Kesto n. 2,5 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>2026 är det 40 år sedan Paul Simons album Graceland kom ut. Denna milstolpe inom populärmusiken kommer att firas med en unik konsert på Savoy-teatern, där den världsberömda engelsk-afrikanska kören The London African Gospel Choir uppträder på scenen.</p><p>Det ursprungliga Graceland (1986) var ett banbrytande verk som gjorde sydafrikanska rytmer och townshipmusik kända för den breda allmänheten, vann en Grammy för årets bästa album och byggde en bro mellan kulturer. För att fira jubileet framför The London African Gospel Choir sin egen tolkning av albumet, som fått beröm av såväl kritiker som publik.</p><p>Konserten respekterar andan i det ursprungliga verket, med kören får också bidra med sin egen färggranna touch i låtarna. Det blir upplyftande gospelarrangemang ackompanjerade av ett sexmannaband, kraftfulla solister och smittande energi. Under kvällen får vi höra evergreens som Diamonds on the Soles of Her Shoes, Homeless och You Can Call Me Al.</p><p>Songlines Magazine har beskrivit föreställningen med orden: ”De höga förväntningarna infrias helt”. Den här kvällen är inte bara en konsert, utan en fest för musikglädje och gemenskap, som har berört publik över hela världen.</p><p>Längd ca 2,5 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>The year 2026 will mark the 40th anniversary of the release of Paul Simon’s album Graceland. This milestone in popular music will be celebrated with a unique concert at the Savoy Theatre as the world-renowned Anglo-African choir The London African Gospel Choir takes to the stage.</p><p>The original Graceland (1986) was a groundbreaking work that brought South African rhythms and township music to the attention of the general public, won a Grammy Award for Album of the Year and built a bridge between cultures. To mark the anniversary, The London African Gospel Choir will perform their own critically acclaimed and popular interpretation of the album.</p><p>The concert respects the spirit of the original work but brings the choir’s own colourful touch to the songs. The show will feature uplifting gospel arrangements accompanied by a six-piece band, powerful soloists and infectious energy. The setlist will include evergreen classics such as Diamonds on the Soles of Her Shoes, Homeless and You Can Call Me Al.</p><p>Songlines Magazine’s review of the performance states that “the high expectations are more than matched.” This evening will not be just a concert, but a celebration of musical joy and community spirit that has touched audiences around the world.</p><p>Duration: ~2,5 h, incl. intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p>" }, "name": { "fi": "Savoy WORLD: The London African Gospel Choir: Graceland 40 vuotta!", "sv": "Savoy WORLD: The London African Gospel Choir: Graceland 40 år!", "en": "Savoy WORLD: The London African Gospel Choir: Graceland turns 40!" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67549/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67950", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/the-sounds-vuotalo-21118200/", "sv": "https://www.lippu.fi/event/the-sounds-vuotalo-21118200/", "en": "https://www.lippu.fi/event/the-sounds-vuotalo-21118200/" }, "description": null, "price": { "fi": "15 €", "sv": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494670, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-28T15:13:04.633569Z", "last_modified_time": "2026-01-28T15:13:04.633594Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780464.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494670/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-09T10:13:01.575262Z", "last_modified_time": "2026-03-20T01:13:50.380181Z", "date_published": null, "start_time": "2026-03-28T16: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": "Suomalainen pop- ja rautalankayhtye The Sounds soi edelleen ja tällä kertaa Vuotalossa!", "sv": "Det finska pop- och ståltrådsbandet The Sounds spelar fortfarande, denna gång på Nordhuset!", "en": "Finnish pop and rautalanka band The Sounds are still playing, this time at Vuotalo!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1CE9DDD0F33D8E9411DD95D0EBF3A329/The_Sounds", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1CE9DDD0F33D8E9411DD95D0EBF3A329/The_Sounds", "en": "http://www.vuotalo.fi/en/events/event/1CE9DDD0F33D8E9411DD95D0EBF3A329/The_Sounds" }, "description": { "fi": "<p>Suomalainen pop- ja rautalankayhtye The Sounds soi edelleen ja tällä kertaa Vuotalossa!</p><p>The Sounds perustettiin syksyllä 1961. Ensimmäinen single ”Emma” myi yli 20.000 kappaletta ja nousi levymyynnin kärkeen Suomessa. Kääntöpuolen ”Mandschurian Beat” myi yli miljoona kappaletta Kaukoidässä ja oli suomalaisen kevyen musiikin ensimmäinen vientimenestys.</p><p>Yhtyeen nykyinen kokoonpano on seuraava:<br>Peter Ekman – bassokitara (yhtyeen perustajajäsen)<br>Esa Helasvuo – kosketinsoittimet (mukana vuodesta 1964)<br>Jorma Kettunen – rummut (mukana vuodesta 2014)<br>Ave Lönnfors – komppikitara ja laulu (mukana vuodesta 2019)<br>Jan-Erik Saine – soolokitara (mukana vuodesta 2019)</p><p>Kesto: 2 t, väliaika on</p>", "sv": "<p>Det finska pop- och ståltrådsbandet The Sounds spelar fortfarande, denna gång på Nordhuset!</p><p>The Sounds bildades hösten 1961. Deras första singel ”Emma” sålde i 20 000 exemplar och blev den mest sålda skivan i Finland. B-sidans ”Mandschurian Beat” sålde i över en miljon exemplar i Fjärran Östern och var den finländska popmusikens första exportframgång.</p><p>Gruppens nuvarande sammansättning är följande:</p><p>Peter Ekman – basgitarr (grundande medlem)<br>Esa Helasvuo – keyboards (sedan 1964)<br>Jorma Kettunen – trummor (sedan 2014)<br>Ave Lönnfors – kompgitarr och sång (sedan 2019)<br>Jan-Erik Saine – sologitarr (sedan 2019)</p><p>Längd: 2 h, paus ingår</p>", "en": "<p>Finnish pop and rautalanka band The Sounds are still playing, this time at Vuotalo!</p><p>The Sounds was formed in the autumn of 1961. Their first single, Emma, sold more than 20,000 copies and became the best-selling single in Finland. The B-side song, Mandschurian Beat, sold over a million copies in the Far East and was the first export success for Finnish popular music.</p><p>The current line-up of the band is as follows:</p><p>Peter Ekman – bass guitar (founding member)<br>Esa Helasvuo – keyboards (since 1964)<br>Jorma Kettunen – drums (since 2014)<br>Ave Lönnfors – rhythm guitar and vocals (since 2019)<br>Jan-Erik Saine – lead guitar (since 2019)</p><p>Duration: 2 h, incl. intermission</p>" }, "name": { "fi": "The Sounds – Armas Festival", "sv": "The Sounds – Armas Festival", "en": "The Sounds – Armas Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67950/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67641", "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/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-stoa-4036746/", "sv": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-stoa-4036746/", "en": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-stoa-4036746/" }, "description": null, "price": { "fi": "23€/15€/10€", "sv": "23€/15€/10€", "en": "23€/15€/10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493934, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-27T10:13:10.957561Z", "last_modified_time": "2025-11-27T10:13:10.957576Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780675.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493934/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-27T10:13:10.871010Z", "last_modified_time": "2026-03-20T01:13:50.263674Z", "date_published": null, "start_time": "2026-03-28T16: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": "Susanna Leinonen Companyn herkkä ja voimakas tanssiteos vie ikäihmiset ja ammattitanssijat yhteiselle matkalle kehon, kokemuksen ja rajojen maailmaan.", "sv": "Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.", "en": "Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/612A77296459A6A8717EC4251F4BF3FB/Susanna_Leinonen_Company_Rajatila_", "sv": "http://www.stoa.fi/sv/evenemang/event/612A77296459A6A8717EC4251F4BF3FB/Susanna_Leinonen_Company_Rajatila_", "en": "http://www.stoa.fi/en/events/event/612A77296459A6A8717EC4251F4BF3FB/Susanna_Leinonen_Company_Rajatila_" }, "description": { "fi": "<p>Susanna Leinonen Companyn herkkä ja voimakas tanssiteos vie ikäihmiset ja ammattitanssijat yhteiselle matkalle kehon, kokemuksen ja rajojen maailmaan.</p><p>Rajatila on Susanna Leinonen Companyn uusi, syvästi koskettava nykytanssiteos, joka tutkii elämää muovaavia näkyviä ja näkymättömiä rajoja. Teos jatkaa Susanna Leinonen Companyn ikäihmisten kanssa toteutettua teossarjaa ja muodostaa sen viidennen itsenäisen osan.</p><p>Teoksen koreografi Tatiana Urteva haluaa tutkia teoksessa elämää kokeneiden kehojen fyysistä ja emotionaalista voimaa – liikettä, rytmiä ja ilmaisua, joka kumpuaa vuosikymmenten kokemuksesta. Rajatila kutsuu pohtimaan, miten psykologiset ja fyysiset rajat ohjaavat arkeamme, miten niitä koetellaan ja miten ne lopulta muovaavat identiteettiämme.<br> <br>Näyttämöllä kohtaavat ilmaisuvoimaiset ikäihmiset ja ammattitanssijat. Ikäihmisten elämänkokemus ja kehollinen viisaus kietoutuvat yhteen tanssijoiden fyysisyyden ja tarkkuuden kanssa, synnyttäen koskettavan ja voimakkaan kokonaisuuden.Rajatila on teos ihmisyydestä, muutoksesta ja kestävyydestä. Se haastaa käsitykset siitä, miltä tanssi voi näyttää ja kuka saa olla sen tekijä.</p><p>Teos on osa Helsingin kaupungin iäkkäiden kulttuuritoiminnan <br>edistämishanketta.</p><p>Koreografia Tatiana Urteva<br>Musiikki Kasperi Laine<br>Valot Marianne Lagus<br>Puvut Sari Nuttunen<br>Kesto: 45 min<br>Kieli: suomi</p>", "sv": "<p>Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.</p><p>Verket fortsätter den serie av verk som Susanna Leinonen Company genomfört tillsammans med äldre personer och utgör den femte självständiga delen av den.</p><p>Verkets koreograf Tatiana Urteva vill i verket undersöka den fysiska och emotionella styrkan i de kroppar som har upplevt livet – rörelsen, rytmen och uttrycket som väller fram på grund av årtionden av erfarenhet. Gränsområdet inbjuder oss att reflektera över hur psykologiska och fysiska gränser styr vår vardag, hur de prövas och hur de slutligen formar vår identitet.</p><p>På scenen möts uttryksfulla äldre och professionella dansare. De äldres livserfarenhet och fysiska visdom sveper sig samman med dansarnas fysik och precision samt skapar en gripande och kraftfull helhet.</p><p>Rajatila är ett verk om mänsklighet, förändring och hållbarhet. Den utmanar uppfattningar om hur dans kan se ut och vem som får skapa den.</p><p>Verket är en del av Helsingfors stads projekt för att främja kulturverksamhet för äldre.</p><p>Koreografi: Tatiana Urteva<br>Musik: Kasperi Laine<br>Ljus: Marianne Lagus<br>Kostymer: Sari Nuttunen</p><p>Längd: 45 min.</p>", "en": "<p>Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life.</p><p>The piece continues the Susanna Leinonen Company's series of works created together with older people and forms the fifth independent part of the series.</p><p>Through this work,Choreographer Tatiana Urteva wishes to explore the physical and emotional power of bodies that have experienced life – their movement, rhythm and expression that comes from decades of experience. Rajatila invites us to reflect on how psychological and physical borders guide our everyday lives, how they are tested and how they ultimately shape our identity.</p><p>On the stage, expressive elderly people come together with professional dancers. The life experience and physical wisdom of older people intertwine with the physicality and precision of the dancers, creating a moving and powerful ensemble.</p><p>Rajatila is a work about humanity, change and resilience. It challenges notions of what dance can look like and who can create dance.</p><p>The work is part of the City of Helsinki's project to promote cultural activities for older people.</p><p>Choreography Tatiana Urteva<br>Music Kasperi Laine<br>Lights Marianne Lagus<br>Costumes Sari Nuttunen</p><p>Duration: 45 min</p>" }, "name": { "fi": "Susanna Leinonen Company: Rajatila", "sv": "Susanna Leinonen Company: Rajatila", "en": "Susanna Leinonen Company: Rajatila" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67641/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67390", "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-isanpaiva-malmitalo-21375688/", "sv": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375688/", "en": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375688/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1508336, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T10:13:01.544873Z", "last_modified_time": "2026-03-03T10:13:01.544887Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781077.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1508336/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T10:13:01.451158Z", "last_modified_time": "2026-03-20T01:13:50.155059Z", "date_published": null, "start_time": "2026-03-28T16: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": "Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4A73723678D516163F0A9D70691CD4DE/Isanpaiva_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4A73723678D516163F0A9D70691CD4DE/Isanpaiva_7_", "en": "http://www.malmitalo.fi/en/events/event/4A73723678D516163F0A9D70691CD4DE/Isanpaiva_7_" }, "description": { "fi": "<p>Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.</p><p>Elokuvassa Veikko (Tommi Korpela) auttaa ystäväänsä Tinkeä (Tomi Lindfors) selviämään arjesta palveluyksikössä. Tinke on juonut terveytensä, ja elämää pitää kasassa sen nurjasta puolesta kumpuava huumori.</p><p>Kun ystävysten bändimenneisyydestä tutun Saimin (Laura Birn) teini-ikäiset kaksoset (Vilja ja Varpu Rintanen) päättävät ottaa selvää isästään, etsintä johtaa heidät Tinken jäljille. Saimi aikoo estää kaksosia tapaamasta Tinkeä, mutta sotkun keskelle tempautunut Veikko on eri mieltä.</p><p>Salmenperän luottonäyttelijä Tommi Korpelan rinnalla näyttelevä Tomi Lindfors tuo katkeransuloiseen tarinaan omakohtaista kokemustaan elämästä sivuraiteilla.</p><p>Lindforsin ja Tommi Korpelan vuosikymmenten mittainen tosimaailman ystävyys on vilahtanut aiemmin myös Salmenperän Jussi-palkitussa elokuvassa Tyhjiö.</p><p>Ikäraja: 7<br>Kesto: 99 min<br>Ensi-ilta: 6.3.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Isänpäivä (7) – Kino Helios", "sv": "Isänpäivä (7) – Kino Helios", "en": "Isänpäivä (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67390/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67389", "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-operaatio-majava-malmitalo-21375691/", "sv": "https://www.lippu.fi/event/kino-helios-operaatio-majava-malmitalo-21375691/", "en": "https://www.lippu.fi/event/kino-helios-operaatio-majava-malmitalo-21375691/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1509285, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T12:13:15.227574Z", "last_modified_time": "2026-03-03T12:13:15.227591Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781076.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509285/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T12:13:15.094237Z", "last_modified_time": "2026-03-20T01:13:50.030522Z", "date_published": null, "start_time": "2026-03-28T13: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": "Uudessa Disneyn ja Pixarin animaatiokomediassa Operaatio Majava tutustutaan eläinrakkaaseen tyttöön nimeltä Mabel (Piper Curda), joka tarttuu uuden tekniikan suomaan tilaisuuteen hyppäyttää itsensä aivan aidonoloiseen robottimajavan hahmoon ja jutella suoraan eläinten kanssa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3280C6536AC90DD8CE3F506D0B47F2F8/Operaatio_Majava_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3280C6536AC90DD8CE3F506D0B47F2F8/Operaatio_Majava_7_", "en": "http://www.malmitalo.fi/en/events/event/3280C6536AC90DD8CE3F506D0B47F2F8/Operaatio_Majava_7_" }, "description": { "fi": "<p>Uudessa Disneyn ja Pixarin animaatiokomediassa Operaatio Majava tutustutaan eläinrakkaaseen tyttöön nimeltä Mabel (Piper Curda), joka tarttuu uuden tekniikan suomaan tilaisuuteen hyppäyttää itsensä aivan aidonoloiseen robottimajavan hahmoon ja jutella suoraan eläinten kanssa.</p><p>Mullistavan teknologian avulla Mabel saa selville eläinmaailman arvoituksia, joita ei olisi voinut kuvitellakaan.</p><p>Majavalan pormestarinvaaleissa uudelleenvalintaa tavoitteleva poliitikko Jerryn moitteettomasti muotoillun kuontalon alla on yhtä sliipatulla julkikuvalla varustettu persoona, jolta palaa hermo, kun vastaan asettuu ainoa asia, joka ei ole hänen hallittavissaan: Mabel.</p><p>Elokuvan on ohjannut Daniel Chong (We Bare Bears), tuottanut Nicole Paradis Grindle (Ihmeperhe 2) ja musiikista vastaa elokuvasäveltäjä Mark Mothersbaugh (Thor: Ragnarök).</p><p>Ikäraja: 7<br>Kesto: 104 min<br>Ensi-ilta: 6.3.2026<br>Elokuva on puhuttu suomeksi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Operaatio Majava (7) – Kino Helios", "sv": "Operaatio Majava (7) – Kino Helios", "en": "Operaatio Majava (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67389/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67678", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1278/?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": 1493980, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T13:14:18.846484Z", "last_modified_time": "2025-12-01T13:14:18.846499Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782327.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493980/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T13:14:18.755849Z", "last_modified_time": "2026-03-20T01:13:49.748525Z", "date_published": null, "start_time": "2026-03-28T12: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": "Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!", "sv": "Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!", "en": "How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/335125E662B455D0600F3B512DA3BAA8/Kaikkien_lasten_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/335125E662B455D0600F3B512DA3BAA8/Danslektion_for_alla_barn", "en": "http://www.annantalo.fi/en/events/event/335125E662B455D0600F3B512DA3BAA8/All_children_s_dance_class" }, "description": { "fi": "<p>Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!</p><p>Inklusiiviset kaikkien lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Tunteja ohjaavat tanssiin, vammaisuuteen, pedagogiikkaan ja esteettömyyteen perehtyneet ammattilaiset, joilla kaikilla on erilainen taiteellis-pedagoginen tausta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen: opetus@kaaoscompany.fi</p><p>Osallistujamäärä: max. 18 (lasta ja aikuista yhdessä)</p>", "sv": "<p>Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!</p><p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar.</p><p>Lektionerna leds av yrkesverksamma som är insatta i dans, funktionsnedsättning, pedagogik och tillgänglighet, som alla har olika konstnärlig-pedagogisk bakgrund.</p><p>Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning via e-post: opetus@kaaoscompany.fi</p><p>Antal deltagare: max. 18 (barn och vuxna tillsammans)</p>", "en": "<p>How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!</p><p>Children’s Inclusive Dance Classes offer children and their adults the joy of togetherness, movement and an opportunity to meet new people of similar and different backgrounds.</p><p>During the classes we play with movement together and each in our own way.<br>The classes are free and open to children of all ages, their siblings and adults, regardless of disability or non-disability.</p><p>The classes are taught by professionals with expertise in dance, theatre, disability, pedagogy and accessibility, all with different artistic-pedagogical backgrounds.</p><p>The lesson lasts one hour. The space is accessible.</p><p>Free admission, pre-registration required by email: opetus@kaaoscompany.fi</p><p>Number of participants: max. 18 (children and adults together)<br>Sat 18.10.2025 at 14.00<br>Tanssiluokka<br>Annankatu 30, Helsinki<br>Free entry</p>" }, "name": { "fi": "Kaikkien lasten tanssitunti – kaikenikäisille", "sv": "Danslektion för alla barn – för alla åldrar", "en": "All children's dance class – for all ages" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67678/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68135", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": 1494950, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-25T14:13:03.305999Z", "last_modified_time": "2026-02-25T14:13:03.306012Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785700.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494950/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-25T14:13:03.152827Z", "last_modified_time": "2026-03-20T01:13:49.503687Z", "date_published": null, "start_time": "2026-03-28T10: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": "Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!", "sv": "Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!", "en": "Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/083E5523C27FEBA6AF9875B7FC789F1D/Koko_perheen_kevatfestivaali", "sv": "http://www.malmitalo.fi/sv/evenemang/event/083E5523C27FEBA6AF9875B7FC789F1D/Koko_perheen_kevatfestivaali", "en": "http://www.malmitalo.fi/en/events/event/083E5523C27FEBA6AF9875B7FC789F1D/Koko_perheen_kevatfestivaali" }, "description": { "fi": "<p>Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!</p><p>Kuulo- ja viittomakielialan järjestöt järjestävät yhdessä Koko perheen kevätfestivaalin lauantaina 28.3.2026 Malmitalolla. Kevätfestivaali tarjoaa maksutonta, kivaa puuhaa kaikenikäisille viittoville ja/tai kuulovammaisille perheineen, kieli- tai kulttuuritaustasta riippumatta.</p><p>Ohjelmassa on luvassa mm.</p><p>Viittomakieliartisti Miguel Peltomaan esitys ja meet & greet Malmisalissa klo 12.30-13.30<br>Karkkiaskartelua (tarjolla myös liivatteettomia/vegaanisia karkkeja)<br>Kasvomaalausta<br>Viittoma-kuvamuistipelejä<br>Reaktiopelejä<br>ja paljon muuta!<br>Tapahtumaan ei tarvitse ilmoittautua etukäteen, paikalle voi tulla milloin vain. Puuhapisteet löytyvät Malmitalon aulasta ja parvelta, Miguel Peltomaan esitys pidetään Malmisalissa.</p><p>Tapahtuman järjestävät yhteistyössä LapCI ry, Kuuloliitto, KLVL ry, Kuurojen Liitto, Kuurojen palvelusäätiö sr, SKUL ry ja Suomen Kuurosokeat ry.</p><p>Vapaa pääsy, tervetuloa!</p>", "sv": "<p>Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!</p>", "en": "<p>Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!</p><p>Welcome to the Spring Family Fest!<br>Hearing and sign language organisations are hosting a Spring Family Fest on Saturday, 28 March 2026, 12-3 pm at Malmitalo in Helsinki (address: Ala-Malmi Square 1).</p><p>The Spring Festival offers free, fun activities for all ages for signing and/or deaf people and their families, regardless of language or cultural background.</p><p>What’s in store:</p><p>A performance by sign language artist Miguel Peltomaa + a meet & greet in Malmisali 12.30-1.30 pm<br>Candy crafts (gelatin-free and vegan options available)<br>Face painting<br>Sign and picture memory games<br>Reaction games<br>And much more!</p><p>No registration is required. You can arrive at any time during the event. Activities and stands can be found in the Malmitalo lobby and balcony, and Miguel Peltomaa’s performance will take place in Malmisali.</p><p>The event is held in collaboration with LapCI ry, Kuuloliitto, KLVL ry, Kuurojen Liitto, Kuurojen palvelusäätiö sr, SKUL ry and Suomen Kuurosokeat ry.</p><p>Free of charge. Welcome!</p>" }, "name": { "fi": "Koko perheen kevätfestivaali", "sv": "Koko perheen kevätfestivaali", "en": "Koko perheen kevätfestivaali" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68135/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68211", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1611074, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-13T12:13:31.319165Z", "last_modified_time": "2026-03-13T12:13:31.319179Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786238.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1611074/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-13T12:13:31.186755Z", "last_modified_time": "2026-03-20T01:13:49.401230Z", "date_published": null, "start_time": "2026-03-28T09: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/3A313964CEE49B426B92C221F4246EFC/Soitinesittelykonsertit_ja_soitinkokeilua", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3A313964CEE49B426B92C221F4246EFC/Soitinesittelykonsertit_ja_soitinkokeilua", "en": "http://www.malmitalo.fi/en/events/event/3A313964CEE49B426B92C221F4246EFC/Soitinesittelykonsertit_ja_soitinkokeilua" }, "description": { "fi": "<p>Pohjois-Helsingin musiikkiopisto antaa opetusta orkesterisoittimissa, bändisoittimissa sekä pianossa, laulussa ja kitarassa.</p><p>Tule kokeilemaan soittimia klo 11–14! Soitinesittelykonsertit klo 11.30 ja 12.30</p><p>Vapaa pääsy, tervetuloa!</p>" }, "name": { "fi": "Soitinesittelykonsertit ja soitinkokeilua – Pohjois-Helsingin musiikkiopisto", "sv": "Soitinesittelykonsertit ja soitinkokeilua", "en": "Soitinesittelykonsertit ja soitinkokeilua" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68211/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68142", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494931, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-24T08:13:02.105762Z", "last_modified_time": "2026-02-24T08:13:02.105776Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785768.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494931/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-24T08:13:02.023713Z", "last_modified_time": "2026-03-20T01:13:49.301528Z", "date_published": null, "start_time": "2026-03-28T09:00:00Z", "end_time": "2026-03-28T13: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": "Tule kokeilemaan kudontaa kangaspuilla – olipa sinulla aiempaa kokemusta tai ei!", "sv": "Kom och prova på vävning i vävstolarna – oavsett om du har tidigare erfarenhet eller inte!", "en": "Come and try weaving on the looms – whether you have prior experience or not!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4BDE88F5BBA334F3EB2EFD192D352E41/Kudontakioski", "sv": "http://www.stoa.fi/sv/evenemang/event/4BDE88F5BBA334F3EB2EFD192D352E41/VavKiosk", "en": "http://www.stoa.fi/en/events/event/4BDE88F5BBA334F3EB2EFD192D352E41/The_Weaving_Kiosk" }, "description": { "fi": "<p>Tule kokeilemaan kudontaa kangaspuilla – olipa sinulla aiempaa kokemusta tai ei!</p><p>Kudonta on käsityötaito, joka yhdistää kulttuureja ja ihmisiä ympäri maailmaa. Kudontakioski on kaikille avoin ja tilapäinen julkinen tila, jossa kudontatyökalut ja -materiaalit ovat helposti saatavilla.</p><p>Voit viihtyä niin pitkään kuin haluat ja nauttia käsillä tekemisen ilosta. Kangaspuut ovat kaikkien käytössä saapumisjärjestyksen mukaan.</p><p>Kudontakioski on Suomessa asuvan tanskalaisen tekstiilitaiteilijan, Rosa Tolnov Clausenin, eri puolilla maailmaa kiertänyt projekti, jonka avulla hän tutkii kudontatiloja ja kudonnan tulevaisuutta.</p><p>Lämpimästi tervetuloa!</p>", "sv": "<p>Kom och prova på vävning i vävstolarna – oavsett om du har tidigare erfarenhet eller inte!</p><p>Handvävning är ett hantverk som förenar kulturer och människor över hela världen. Vävkiosken är en öppen och tillfällig offentlig plats där vävredskap och material är lättillgängliga för alla.</p><p>Du kan stanna så länge du vill och njuta av glädjen i att arbeta med händerna. Vävstolarna används i turordning enligt principen först till kvarn.</p><p>Vävkiosken är ett projekt av den danska textilkonstnären Rosa Tolnov Clausen, bosatt i Finland. Den har rest runt i världen som ett sätt att utforska vävplatser och vävningens framtid.</p><p>Plats: Östra centrums bibliotek</p>", "en": "<p>Come and try weaving on the looms – whether you have prior experience or not!</p><p>Hand-weaving is a craft that connects cultures and people around the world. The Weaving Kiosk is an open and temporary public space where weaving tools and materials are easily available to everyone.</p><p>You can stay as long as you wish and enjoy the joy of working with your hands. The looms are available on a first-come, first-served basis.</p><p>The Weaving Kiosk is a project by Danish textile artist Rosa Tolnov Clausen, based in Finland. It has travelled across the world as a way of exploring weaving spaces and the future of weaving.</p><p>Place: Itäkeskus Library</p><p>We look forward to welcoming you!</p>" }, "name": { "fi": "Kudontakioski", "sv": "VävKiosk", "en": "The Weaving Kiosk" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68142/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67501", "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": 1644063, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T15:13:30.779982Z", "last_modified_time": "2026-03-16T15:13:30.780001Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781608.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1644063/?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-16T15:13:30.681865Z", "last_modified_time": "2026-03-20T01:13:49.200563Z", "date_published": null, "start_time": "2026-03-28T09:00:00Z", "end_time": "2026-03-28T12: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": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/690B72008A53B2F51E3992CB21CB1053/Annantalon_taidelauantai_Tunneduunarin_kunniamerkki", "sv": "http://www.annantalo.fi/sv/evenemang/event/690B72008A53B2F51E3992CB21CB1053/Annantalon_taidelauantai_Tunneduunarin_kunniamerkki_", "en": "http://www.annantalo.fi/en/events/event/690B72008A53B2F51E3992CB21CB1053/Annantalon_taidelauantai_Tunneduunarin_kunniamerkki_" }, "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>Tunneduunarin kunniamerkki</b><br>Työpajassa valmistetaan väripapereista, metallikartongeista ja nauhoista askarrellen upea tunneduunarin arvomerkki. Onko se sinulle, vai haluatko antaa sen jollekulle toiselle, joka myös on ansioitunut tunnetaitotreenissä? Missä merkin saaja on onnistunut?</p><p>Työpaja liittyy Annantalon kahvilan Tunnemuskelit-kuvitusnäyttelyyn ja sen ohjaajana toimii kuvittaja Satu Kettunen.</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>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p>" }, "name": { "fi": "Annantalon taidelauantai: Tunneduunarin kunniamerkki", "sv": "Annantalon taidelauantai: Tunneduunarin kunniamerkki", "en": "Annantalon taidelauantai: Tunneduunarin kunniamerkki" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67501/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67584", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4025929", "sv": "https://www.lippu.fi/eventseries/name-4025929", "en": "https://www.lippu.fi/eventseries/name-4025929" }, "description": null, "price": { "fi": "15€/20€", "sv": "15€/20€", "en": "15€/20€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494088, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T13:13:01.685628Z", "last_modified_time": "2025-12-04T13:13:01.685644Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781970.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494088/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T13:13:01.569071Z", "last_modified_time": "2026-03-20T01:13:48.979477Z", "date_published": null, "start_time": "2026-03-27T17: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": "Cleaning Women juhlistaa viidennen albuminsa julkaisua kattavalla kotimaan kiertueella.", "sv": "Cleaning Women firar utgivningen av sitt femte album med en omfattande turné i hemlandet.", "en": "Cleaning Women will celebrate the release of their fifth album with an extensive tour in Finland." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D88DF8AF0740C29ECA2B6B77EFA26241/Cleaning_Women", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D88DF8AF0740C29ECA2B6B77EFA26241/Cleaning_Women", "en": "http://www.malmitalo.fi/en/events/event/D88DF8AF0740C29ECA2B6B77EFA26241/Cleaning_Women" }, "description": { "fi": "<p>Cleaning Women juhlistaa viidennen albuminsa julkaisua kattavalla kotimaan kiertueella.</p><p>Cleaning Women on ainutlaatuinen itsetehdyillä soittimilla operoiva yhtye, joka muodostuu kolmesta “siivoojarobotista” (CW01, CW03, CW04). Yhtye on toiminut samalla kokooonpanolla jo yli 25 vuoden vuoden ajan, jona aikana se on hämmästyttänyt yleisöä ympäri Tellusta yli 600:n keikan verran soittaen ainakin 25:ssä maassa, kiertäen niin Kiinassa kuin Kanadassakin. Yhtye on tehnyt viisi albumia, 3D-varjovisuaalikeikkoja, installaatioita taidenäyttelyihin, soittanut sirkuksessa, tehnyt elokuvamusiikkia ja lukuisia kehuttuja mykkäelokuvasäestyksiä, joita se on esittänyt livenä mm. Sodankylän elokuvajuhlilla, Mexico Cityssä ja Telluriden elokuvajuhlilla Coloradossa Yhdysvalloissa. Vuonna 2023 yhtye sävelsi alkuperäismusiikin italialaisen Alice Rohrwacherin lyhytelokuvaan Le Pupille, joka valittiin Oscar-ehdokkaaksi näyteltyjen lyhytelokuvien sarjassa. Yhtye on tehnyt yhteistyötä esimerkiksi M.A. Nummisen ja saksalaisen Einstürzende Neubauten -industrialyhtyeen Alexander Hacken kanssa.</p><p>Omaperäisen musiikin lisäksi Cleaning Women on tunnettu myös vaihtoehtoisista instrumenttivalinnoistaan. Yhtyeen soundin peruspalikkoina toimivat itserakennetut instrumentit ja kotitalouksista tutut esineet, joita on modifioitu musiikillisiin tarpeisiin. Materiaali on usein peräisin roskalavoilta tai pelastettu päätymästä sinne. Vuosien saatossa yhtyeen instrumenttiperhe on laajentunut, sisältäen alkuperäisen mikitetyn pyykinkuivaustelineen lisäksi lukuisia erilaisia kieli- ja rytmisoittimia. Vaikka lähtökohta on avantgardistinen ja kokeellinen, lopputulos on yhdistelmä taidokasta soittimenhallintaa, uniikkeja äänimaisemia ja melodisesti sekä rytmillisesti rikasta musiikkia, jota voisi kuvailla vaikkapa yhdistelmänä elokuvallista sci-fi länkkäriä ja kipinöivää roskalavadiskoa. Yhdessä yhtyeen yhtenäisen tummanpuhuvan ulkoasun ja muun visuaalisuuden kanssa kokonaisuus välittyy kokijalle tajuntaan tehokkaimmin nimenomaan live-tilanteessa. Cleaning Women on yhtye, jonka tuotantoa ei välttämättä tarvitse tuntea etukäteen vaikuttuakseen keikalla.</p><p>Yhtyeen viides albumi “Washer” julkaistiin lokakuussa 2025 Svart Recordsin toimesta. Tulevaa levyä yhtye kommentoi itse näin: “Uusi levy on monipuolisinta Cleaning Womeniä koskaan. Pyykinkuivausteline on antanut hieman tilaa harmonioille, mutta kyllä siellä on myös edelleen vahvasti perkussiivisia elementtejä. Ja aina vaan tietynlainen Cleaning Womenin dystooppinen perusvire paistaa läpi, halusimme tai emme. Aiempiin levyihin verrattuna musiikillisesti ollaan ehkä lähimpänä vuoden 2009 U-levyä, mutta tietynlainen progressiivinen ote on tällä levyllä vielä vahvempi.\"</p><p>Kesto: 2 t</p><p>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. Laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoiden eteen parhaat itsenäisen musiikin tekijät.</p><p>Keikka on ikärajaton.</p>", "sv": "<p>Cleaning Women firar utgivningen av sitt femte album med en omfattande turné i hemlandet.</p><p>Cleaning Women är en unik grupp som använder självgjorda musikinstrument och består av tre ”städrobotar” (CW01, CW03, CW04). Bandet har uppträtt med samma medlemmar i över 25 år och har under denna tid imponerat på publiken runt om på Tellus med över 600 spelningar i minst 25 länder och turnerat i såväl Kina som Kanada. Bandet har gjort fem album,spelningar med visuella 3D-element, deltagit i installationer på konstutställningar, spelat på cirkus, gjort filmmusik och gjort många berömda stumfilmsackompanjemang, som har framförts live på bland annat filmfestivalen i Sodankylä (Sodankylän elokuvafestivaalit), i Mexico City och på filmfestivalen i Telluride i Colorado i USA. År 2023 komponerade bandet originalmusiken till italienska Alice Rohrwachers kortfilm Le Pupille, som var Oscarnominerad i kategorin kortfilmer. Bandet har samarbetat med artister som M.A. Numminen och Alexander Hacke från det tyska industrialbandet Einstürzende Neubauten.</p><p>Utöver sin säregna musik är Cleaning Women också kända för sina alternativa instrumentval. Bandets sound bygger på självtillverkade instrument och hushållsföremål, som modifierats för att passa musikaliska ändamål. Materialet härstammar ofta från sopcontainrar eller har räddats från att hamna där. Under årens lopp har bandets instrumentfamilj utökats till att omfatta inte bara den ursprungliga mikrofonbelagda torkställningen, utan också en mängd olika sträng- och rytminstrument. Även om utgångspunkten är avantgardistisk och experimentell är slutresultatet en kombination av skicklig instrumenthantering, unika ljudlandskap och melodiskt och rytmiskt rik musik som kan beskrivas som en kombination av filmisk sci-fi-western och gnistrande sopcontainerdisco. Tillsammans med bandets enhetliga mörktalande utseende och övriga visualitet förmedlas helheten till upplevaren effektivast just i en live-situation. Cleaning Women är ett band vars produktion man inte nödvändigtvis behöver känna till i förväg för att bli imponerad på en spelning.</p><p>Bandets femte album \"Washer\" gavs ut i oktober 2025 av Svart Records. Bandet kommenterade själv det kommande albumet på följande sätt: ”Det nya albumet är det mångsidigaste Cleaning Women någonsin. Torkställningen har gett harmonierna lite utrymme, men det förekommer nog fortfarande stark perkussion. Cleaning Women genomsyras nog av en viss dystopisk tendens, vare sig vi vill det eller inte. Jämfört med de tidigare albumen är det nog musikaliskt närmast U-albumet från 2009, men det finns ett visst progressivt grepp på det här albumet som är ännu starkare.”</p><p>Längd: 2 h <br>Spelningen har ingen åldersgräns.</p><p>A la Malmi är en klubbserie i Malms kulturhus som presenterar den intressantaste och färskaste finländska musiken med mest lyft. Den högkvalitativa konserthusmiljön med sina upphöjningsbara läktare erbjuder varje åhörare en bekväm sittplats och en bra utsikt över scenen. De akustiska, ljud- och ljusmässiga förhållandena i Malmsalen är av högsta klass. A la Malmi bryr sig inte om genregränser, utan erbjuder åhörarna det bästa inom indiemusik.<br>Spelningen har ingen åldersgräns.</p>", "en": "<p>Cleaning Women will celebrate the release of their fifth album with an extensive tour in Finland.</p><p>Cleaning Women is a unique instrumental ensemble playing DIY instruments and consisting of three ‘cleaning robots’ (CW01, CW03, CW04). The band has been performing with the same line-up for over 25 years, wowing its audiences around the globe with over 600 shows in at least 25 countries, touring places from China to Canada. The band has made five albums, played gigs with 3D shadow visuals and created installations for art exhibitions. They have also played in a circus and created film music and numerous acclaimed silent film scores, which they have performed live at places such as Sodankylä Film Festival, Mexico City and Telluride Film Festival in Colorado, USA. In 2023, the band composed the original music for the short film Le Pupille by Italian director Alice Rohrwacher, which was nominated for an Oscar in the category of Best Live Action Short Film. The band has collaborated with artists such as M.A. Numminen and Alexander Hacke from the German industrial band Einstürzende Neubauten.</p><p>In addition to their original music, Cleaning Women are also known for their alternative instrument choices. The band's sound is based on self-made instruments and familiar household objects that have been modified to serve the purposes of music. Their material often comes from or has been rescued from waste collection points. Over the years, the band's range of instruments has expanded to include not only the original clothes drying rack with a mic but also a wide variety of string and rhythm instruments. Although the premise of the band is avant-garde and experimental, the result is a combination of skilful instrumental control, unique soundscapes and melodically and rhythmically rich music that could be described as a combination of cinematic sci-fi western and sparkly dumpster disco. With the band's uniform dark-toned look and other visual elements, this band is at its best experienced live. Cleaning Women is a band whose works you don't necessarily need to be familiar with to be impressed by their live performance.</p><p>The band's fifth album, ‘Washer’, was released in October 2025 by Svart Records. Regarding their new album, the band stated: “The new album is the most diverse take on Cleaning Women ever. The clothes drying rack has taken a step back, making way for more harmonies, but the music still has strong percussive elements. And there's always that certain foundational Cleaning Women dystopian vibe that shines through, whether we like it or not. Compared to the previous albums, musically it's probably the closest to the 2009 album ‘U’, but that certain progressive edge is even stronger on this album.”</p><p>Duration: 2 h <br>The show is for all ages.</p><p>A la Malmi is a club series at Malmitalo that showcases the most interesting, fresh and upcoming Finnish music. The high-quality concert hall environment with its ascending stands provides each customer with a comfortable seat and a good view of the stage. The acoustic, audio and lighting in Malmisali are state-of-the-art. A la Malmi doesn’t care about genre boundaries but brings the best independent musicians to its audiences.<br>The show is for all ages.</p>" }, "name": { "fi": "Cleaning Women – A la Malmi", "sv": "Cleaning Women – A la Malmi", "en": "Cleaning Women – A la Malmi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67584/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67977", "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-4073604", "sv": "https://www.lippu.fi/eventseries/name-4073604", "en": "https://www.lippu.fi/eventseries/name-4073604" }, "description": null, "price": { "fi": "31,40-46.30 €, S&D 90,30-98,30 €", "sv": "31,40-46.30 €, S&D 90,30-98,30 €", "en": "31,40-46.30 €, S&D 90,30-98,30 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494489, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-15T09:14:00.507953Z", "last_modified_time": "2026-01-15T09:14:00.507970Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784117.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494489/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-15T09:14:00.397213Z", "last_modified_time": "2026-03-20T01:13:48.505812Z", "date_published": null, "start_time": "2026-03-27T17: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": "Velora Ensemble on jousikvartetin, harpun ja lyömäsoittimien muodostama yhtye, jonka juuret ovat jo lapsuudessa alkaneessa ystävyydessä ja yhteisessä musisoinnissa.", "sv": "Velora Ensemble är en ensemble bestående av stråkkvartett, harpa och slagverk, med rötter i vänskap och gemensamt musicerande sedan barndomen.", "en": "Velora Ensemble is an group consisting of a string quartet, harp and percussion, rooted in friendship and shared music-making since childhood." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9126E263593547B723AC7D775BE80692/Valoa_-_Tunnelmakonsertti_Velora_Ensemble", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/9126E263593547B723AC7D775BE80692/Valoa_-_Tunnelmakonsertti_Velora_Ensemble", "en": "http://www.savoyteatteri.fi/en/events/event/9126E263593547B723AC7D775BE80692/Valoa_a_concert_of_atmosphere_Velora_Ensemble" }, "description": { "fi": "<p>Velora Ensemble on jousikvartetin, harpun ja lyömäsoittimien muodostama yhtye, jonka juuret ovat jo lapsuudessa alkaneessa ystävyydessä ja yhteisessä musisoinnissa.</p><p>Yhtyeen jäsenet ovat Sibelius-Akatemian kasvatteja, jotka työskentelevät nykyään freelancemuusikkoina ja orkesterisoittajina Turun ja Helsingin seuduilla. Yhtyeen soittajat tunnetaan aktiivisesta esiintymisestä kamarimusiikkifestivaaleilla ja konserteissa eri puolilla Suomea. Harpun ja lyömäsoittimien liittäminen jousikvartettiin tuo Veloran sointiin erityistä valoa ja säihkettä, luoden yhtyeen sointiin mielenkiintoisia kontrasteja ja fantasiallisuutta.</p><p>Kokoonpanossa soittavat <b>Onni Kunnola</b> (viulu), <b>Ruben Goesch</b> (viulu), <b>Alexander Pozdniakovas</b> (alttoviulu), <b>Pekka Smolander</b> (sello), <b>Donatien Conversat</b> (lyömäsoittimet) ja <b>Hilda Kunnola</b> (harppu).</p><p>Konsertissa kuullaan elokuvamusiikin tunnettuja helmiä, joissa kaikki yhtyeemme soittimet pääsevät valokeilaan vuorollaan. Esimerkiksi Howard Shoren, John Williamsin ja Hans Zimmerin musiikkia – mm. Lord of the Rings, Star Wars, Harry Potter, Interstellar.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b>Show & Dinner -lippu</b> sisältää pääsylipun sekä pöytiin tarjoillun kolmen ruokalajinmenun Savoy-teatterin yhteydessä toimivassa, Minne Garden-ravintolassa, klo 17 alkaen.</p><p><b>Menu</b><br>Parsa tartar, tuorejuustovaahtoa ja puffattua sinappia L,G<br>*<br>Paahdettua siikaa, antiboisekastiketta ja parmesan-perunapyrettä L,G<br>*<br>Mustikka-yuzuleivos ja samppanjalla marinoituja ananaskirsikoita L,G</p><p>Menun hinta ei sisällä juomia. <br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen esityksen alkua. <br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p>", "sv": "<p>Velora Ensemble är en ensemble bestående av stråkkvartett, harpa och slagverk, med rötter i vänskap och gemensamt musicerande sedan barndomen.</p><p>Ensemblens medlemmar är utbildade vid Sibelius-Akademin och arbetar nu som frilans- och orkestermusiker i Åbo- och Helsingforsområdet. Musikerna är kända för sina aktiva framträdanden på kammarmusikfestivaler och konserter runt om i Finland. Genom att lägga till harpa och slagverk till stråkkvartetten får Veloras ljud ett speciellt ljus och en gnista som skapar intressanta kontraster och fantasi.<br> <br>Ensemblen består av Onni Kunnola (violin), Ruben Goesch (violin), Alexander Pozdniakovas (viola), Pekka Smolander (cello), Donatien Conversat (slagverk) och Hilda Kunnola (harpa).<br> <br>I konserten får vi höra kända filmmusikpärlor, där alla instrument i gruppen turvis får stå i rampljuset. Musik av Howard Shore, John Williams och Hans Zimmer – bl.a. Sagan om ringen, Star Wars, Harry Potter, Interstellar.<br> <br>Längd ca 2 h, inklusive paus.<br> <br>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.<br> <br>En Show & Dinner-biljett inkluderar inträde samt bordsservering av en trerättersmeny på restaurangen Minne Garden i anslutning till Savoy-teatern från kl. 17.<br> <br>Meny<br>Sparristartar, färskostskum och puffad senap L, G<br>*<br>Grillad sik, antiboisesås och parmesan-potatispuré L, G<br>*<br>Blåbärs- och yuzubakelse med champagnemarinerade kapkrusbär L, G<br> <br>Menypriset inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar innan föreställningen börjar.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p>", "en": "<p>Velora Ensemble is an group consisting of a string quartet, harp and percussion, rooted in friendship and shared music-making since childhood.</p><p>The members of the ensemble are Sibelius Academy graduates who now work as freelance musicians and orchestral players in the Turku and Helsinki areas. The musicians are known for their active performances at chamber music festivals and concerts throughout Finland. The addition of harp and percussion to a string quartet brings a special light and sparkle to Velora’s sound, creating interesting contrasts and elements of fantasy.<br> <br>The line-up consists of Onni Kunnola (violin), Ruben Goesch (violin), Alexander Pozdniakovas (viola), Pekka Smolander (cello), Donatien Conversat (percussion) and Hilda Kunnola (harp).<br> <br>The concert will feature well-known gems of film music, with each of the ensemble’s instruments having a turn in the spotlight. Music by composers such as Howard Shore, John Williams and Hans Zimmer – Lord of the Rings, Star Wars, Harry Potter, Interstellar, etc.<br> <br>Duration: roughly 2 h, incl. intermission<br> <br>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.<br> <br>The ‘Show & Dinner’ ticket includes an entrance ticket and a three-course menu served to tables at the Minne Garden restaurant operating at the Savoy Theatre, from 17.00 onwards.<br> <br>Menu<br>Asparagus tartar, cream cheese mousse and puffed mustard L, G<br>*<br>Roasted whitefish, antiboise sauce and potato puree with parmesan L, G<br>*<br>Blueberry and yuzu cake with Cape gooseberries marinated in champagne L, G<br> <br>The price of the menu does not include drinks.<br>The dinner will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the performance.<br>Special dietary requirements can be catered for on prior request (stated no later than three days before the performance).</p>" }, "name": { "fi": "Valoa - Tunnelmakonsertti: Velora Ensemble", "sv": "Valoa - Tunnelmakonsertti: Velora Ensemble", "en": "Valoa – a concert of atmosphere: Velora Ensemble" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Sunborn Events Oy", "sv": "Sunborn Events Oy", "en": "Sunborn Events Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67977/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67949", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/klubb-ankdamm-goes-klezmer-vuotalo-21178492/", "sv": "https://www.lippu.fi/event/klubb-ankdamm-goes-klezmer-vuotalo-21178492/", "en": "https://www.lippu.fi/event/klubb-ankdamm-goes-klezmer-vuotalo-21178492/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494427, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-09T10:13:01.057809Z", "last_modified_time": "2026-01-09T10:13:01.057823Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782107.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494427/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-09T10:13:00.961611Z", "last_modified_time": "2026-03-20T01:13:48.392139Z", "date_published": null, "start_time": "2026-03-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Parlands Parlour yhdistelee itäeurooppalaista kaupunki- ja kylärepertuaaria, palatsimusiikkia, tanssirytmejä, improvisaatiota ja chansonlaulua.", "sv": "Parlands Parlour flätar samman Östeuropeisk stads- och byrepertoar, palatsmusik, dansrytmer, improvisation och chanson.", "en": "Parlands Parlour interweaves Eastern European city-and village repertoire, palace music, dance rhythms, improvisation and chanson." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0336F7317D356A218A586884AF3E53DA/Parlands_Parlour", "sv": "http://www.vuotalo.fi/sv/evenemang/event/0336F7317D356A218A586884AF3E53DA/Parlands_Parlour", "en": "http://www.vuotalo.fi/en/events/event/0336F7317D356A218A586884AF3E53DA/Parlands_Parlour" }, "description": { "fi": "<p>Parlands Parlour yhdistelee itäeurooppalaista kaupunki- ja kylärepertuaaria, palatsimusiikkia, tanssirytmejä, improvisaatiota ja chansonlaulua.</p><p>Painopiste on musiikillisissa ja kulttuurisissa amalgaameissa, jotka tavalla tai toisella jäävät Euroopan kansallisvaltioiden projektien ulottuvuuksien ulkopuolelle ja jotka jatkavat juoruamista yhteisen historiamme taustalla olevasta monimutkaisuudesta.</p><p>Alevtina Parlandin johtama yhtye koostuu erinomaisista muusikoista, joilla on tyylillistä osaamista klezmeristä, jazzista, transilvanialaisesta ja pohjoismaisesta kansanmusiikista sekä ottomaanien ja persialaisten klassisesta musiikista. Tanssi huolesi pois parluurissa!</p><p>Kesto: 2 tuntia, väliaika on</p><p><b>Esiintyjät:</b><br>Alevtina Parland teki läpimurtonsa Istanbulin klezmer-sensaationa trumpetilla ja laululla kolme vuotta sitten. Parlandin toimintaa on sittemmin kuvattu kahdessa dokumenttielokuvassa ja yhdessä väitöskirjassa.</p><p>Zoë Aqua on yksi kansainvälisen klezmer-skenen kuumimmista nimistä. Zoë on erikoistunut transilvanialaiseen musiikkiin ja saapuu konserttiin Yhdysvalloista.</p><p>Philip Holm on kysytty basisti, jolla on pitkä kokemus jazzin, klezmerin, improvisaation ja pohjoismaisen kansanmusiikin parissa.</p><p>Sara Majidi Nejad on kanun-soittaja, joka hallitsee sekä ottomaanien, persialaisten että eurooppalaisten klassisen musiikin.</p><p>Tommie Black-Roff tunnetaan innovatiivisesta tyylistään haitarilla sekä laajasta tietämyksestään pohjoismaisesta ja kornilaisesta kansanmusiikista.</p>", "sv": "<p>Parlands Parlour flätar samman Östeuropeisk stads- och byrepertoar, palatsmusik, dansrytmer, improvisation och chanson.</p><p>Fokus ligger på de musikaliska och kulturella amalgam som på sätt eller annat faller utanför de europeiska nationalstatsprojekten och som fortsätter skvallra om den underliggande komplexiteten av vår gemensamma historia.</p><p>Bandet under ledning av Alevtina Parland består av enastående musiker med stilistisk expertis i klezmer, jazz, transsylvansk, nordisk folk, ottomansk och persisk klassisk musik.</p><p>Dansa bort din sorg i parlouren!</p><p>Alevtina Parland slog igenom som Istanbuls klezmersensation på trumpet och sång för tre år sedan. Parlands aktiviteter har sedan dess skildrats i två dokumentärer och en doktorsavhandling.</p><p>Zoë Aqua är ett av de hetaste namnen inom klezmermusiken internationellt, specialiserad på transsylvansk musik. Aqua flygs in för konserten från USA.</p><p>Philip Holm är en eftertraktad basist med erfarenhet i jazz, klezmer, improvisation och nordisk folk.</p><p>Sara Majidi Nejad är en utsökt kanunist som behärskar både ottomansk, persisk och europeisk klassisk musik.</p><p>Tommie Black-Roff är känd för sin innovativa stil på dragspel och sin stora kunskap i nordisk och kornisk folkmusik.</p>", "en": "<p>Parlands Parlour interweaves Eastern European city-and village repertoire, palace music, dance rhythms, improvisation and chanson.</p><p>Focus lies on the musical and cultural amalgams that in a way or another fall outside the parameters of the European nation state<br>projects and continue to tattle on the underlying complexity of our shared history.</p><p>The band under the leadership of Alevtina Parland consists of exquisite musicians with stylistical expertise in klezmer, jazz, Transsylvanian and Nordic folk, Ottoman and Persian classical music.</p><p>Dance away your worries away at the parlour!</p><p>Alevtina Parland had her breakthrough as Istanbul's klezmer sensation on trumpet and voice three years ago. The activities of Parland have since been recounted in two documentaries and one doctoral thesis.</p><p>Zoë Aqua is one of the hottest names in the international klezmer scene, specialized in Transsylvanian music. Aqua is flown in from the USA for the concert.</p><p>Philip Holm is a sought-after bassist with experience in jazz, klezmer, improvisation and Nordic folk.</p><p>Sara Majidi Nejad is a kanun player that masters both Ottoman, Persian and European classical music.</p><p>Tommie Black-Roff is known for their innovative style on the accordion and big knowledge of Nordic and Cornish folk.</p>" }, "name": { "fi": "Parlands Parlour – Klubb Ankdamm goes klezmer", "sv": "Parlands Parlour – Klubb Ankdamm goes klezmer", "en": "Parlands Parlour – Klubb Ankdamm goes klezmer" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67949/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67640", "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/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-stoa-4036746/", "sv": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-stoa-4036746/", "en": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-stoa-4036746/" }, "description": null, "price": { "fi": "23€/15€/10€", "sv": "23€/15€/10€", "en": "23€/15€/10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493931, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-27T09:13:20.156703Z", "last_modified_time": "2025-11-27T09:13:20.156716Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780674.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493931/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-27T09:13:20.025570Z", "last_modified_time": "2026-03-20T01:13:48.124981Z", "date_published": null, "start_time": "2026-03-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Susanna Leinonen Companyn herkkä ja voimakas tanssiteos vie ikäihmiset ja ammattitanssijat yhteiselle matkalle kehon, kokemuksen ja rajojen maailmaan.", "sv": "Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.", "en": "Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/AF0A88DA97E88FD1BF6E0D2970C3D302/Susanna_Leinonen_Company_Rajatila_", "sv": "http://www.stoa.fi/sv/evenemang/event/AF0A88DA97E88FD1BF6E0D2970C3D302/Susanna_Leinonen_Company_Rajatila_", "en": "http://www.stoa.fi/en/events/event/AF0A88DA97E88FD1BF6E0D2970C3D302/Susanna_Leinonen_Company_Rajatila_" }, "description": { "fi": "<p>Susanna Leinonen Companyn herkkä ja voimakas tanssiteos vie ikäihmiset ja ammattitanssijat yhteiselle matkalle kehon, kokemuksen ja rajojen maailmaan.</p><p>Rajatila on Susanna Leinonen Companyn uusi, syvästi koskettava nykytanssiteos, joka tutkii elämää muovaavia näkyviä ja näkymättömiä rajoja. Teos jatkaa Susanna Leinonen Companyn ikäihmisten kanssa toteutettua teossarjaa ja muodostaa sen viidennen itsenäisen osan.</p><p>Teoksen koreografi Tatiana Urteva haluaa tutkia teoksessa elämää kokeneiden kehojen fyysistä ja emotionaalista voimaa – liikettä, rytmiä ja ilmaisua, joka kumpuaa vuosikymmenten kokemuksesta. Rajatila kutsuu pohtimaan, miten psykologiset ja fyysiset rajat ohjaavat arkeamme, miten niitä koetellaan ja miten ne lopulta muovaavat identiteettiämme.<br> <br>Näyttämöllä kohtaavat ilmaisuvoimaiset ikäihmiset ja ammattitanssijat. Ikäihmisten elämänkokemus ja kehollinen viisaus kietoutuvat yhteen tanssijoiden fyysisyyden ja tarkkuuden kanssa, synnyttäen koskettavan ja voimakkaan kokonaisuuden.Rajatila on teos ihmisyydestä, muutoksesta ja kestävyydestä. Se haastaa käsitykset siitä, miltä tanssi voi näyttää ja kuka saa olla sen tekijä.</p><p>Teos on osa Helsingin kaupungin iäkkäiden kulttuuritoiminnan <br>edistämishanketta.</p><p>Koreografia Tatiana Urteva<br>Musiikki Kasperi Laine<br>Valot Marianne Lagus<br>Puvut Sari Nuttunen<br>Kesto: 45 min<br>Kieli: suomi</p>", "sv": "<p>Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.</p><p>Verket fortsätter den serie av verk som Susanna Leinonen Company genomfört tillsammans med äldre personer och utgör den femte självständiga delen av den.</p><p>Verkets koreograf Tatiana Urteva vill i verket undersöka den fysiska och emotionella styrkan i de kroppar som har upplevt livet – rörelsen, rytmen och uttrycket som väller fram på grund av årtionden av erfarenhet. Gränsområdet inbjuder oss att reflektera över hur psykologiska och fysiska gränser styr vår vardag, hur de prövas och hur de slutligen formar vår identitet.</p><p>På scenen möts uttryksfulla äldre och professionella dansare. De äldres livserfarenhet och fysiska visdom sveper sig samman med dansarnas fysik och precision samt skapar en gripande och kraftfull helhet.</p><p>Rajatila är ett verk om mänsklighet, förändring och hållbarhet. Den utmanar uppfattningar om hur dans kan se ut och vem som får skapa den.</p><p>Verket är en del av Helsingfors stads projekt för att främja kulturverksamhet för äldre.</p><p>Koreografi: Tatiana Urteva<br>Musik: Kasperi Laine<br>Ljus: Marianne Lagus<br>Kostymer: Sari Nuttunen</p><p>Längd: 45 min.</p>", "en": "<p>Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life.</p><p>The piece continues the Susanna Leinonen Company's series of works created together with older people and forms the fifth independent part of the series.</p><p>Through this work,Choreographer Tatiana Urteva wishes to explore the physical and emotional power of bodies that have experienced life – their movement, rhythm and expression that comes from decades of experience. Rajatila invites us to reflect on how psychological and physical borders guide our everyday lives, how they are tested and how they ultimately shape our identity.</p><p>On the stage, expressive elderly people come together with professional dancers. The life experience and physical wisdom of older people intertwine with the physicality and precision of the dancers, creating a moving and powerful ensemble.</p><p>Rajatila is a work about humanity, change and resilience. It challenges notions of what dance can look like and who can create dance.</p><p>The work is part of the City of Helsinki's project to promote cultural activities for older people.</p><p>Choreography Tatiana Urteva<br>Music Kasperi Laine<br>Lights Marianne Lagus<br>Costumes Sari Nuttunen</p><p>Duration: 45 min</p>" }, "name": { "fi": "Susanna Leinonen Company: Rajatila – Näytöksen jälkeen järjestetään disko!", "sv": "Susanna Leinonen Company: Rajatila", "en": "Susanna Leinonen Company: Rajatila" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67640/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67388", "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-the-secret-agent-malmitalo-21375694/", "sv": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375694/", "en": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375694/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1509763, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T13:13:53.081059Z", "last_modified_time": "2026-03-03T13:13:53.081075Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781074.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509763/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T13:13:52.957056Z", "last_modified_time": "2026-03-20T01:13:47.970019Z", "date_published": null, "start_time": "2026-03-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Neljän Oscarin ehdokas The Secret Agent on omaperäinen ja mustan komedian sävyttämä trilleri." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8BE5075E44815CBDF23D45F1A4B22227/The_Secret_Agent_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8BE5075E44815CBDF23D45F1A4B22227/The_Secret_Agent_16_", "en": "http://www.malmitalo.fi/en/events/event/8BE5075E44815CBDF23D45F1A4B22227/The_Secret_Agent_16_" }, "description": { "fi": "<p>Neljän Oscarin ehdokas The Secret Agent on omaperäinen ja mustan komedian sävyttämä trilleri.</p><p>The Secret Agent palkittiin 2026 Golden Globes -gaalassa parhaan vieraskielisen elokuvan palkinnolla ja pääosanesittäjä Wagner Moura parhaan miesnäyttelijän palkinnolla.</p><p>Vuoden 2025 Cannesin elokuvajuhlilla parhaasta ohjauksesta (Kleber Mendonça Filho) ja miespääosasta (Wagner Moura) palkittu The Secret Agent on omaperäinen poliittinen trilleri. Eletään riehakasta karnevaaliviikkoa vuonna 1977 Brasiliassa.</p><p>Salaperäistä menneisyyttään pakeneva teknologia-asiantuntija Marcelo (Moura) palaa kotikaupunkiinsa etsimään rauhaa, samalla toivoen tapaavansa jälleen poikansa.</p><p>Hän löytää suojapaikan vastarintaliikkeen kommuunista, mutta huomaa pian, että kaupunki on yhtä eläväinen kuin väkivaltainenkin. Marcelo ajautuu tahtomattaan keskelle poliittista kuohuntaa.</p><p>Oivaltavasti eri lajityyppejä yhdistelevä, auringon paahtama elokuva on ohjaaja Filhon kunnianosoitus elokuvataiteelle ja Brasilialle. Elokuva on Brasilian virallinen ehdokas Oscar-kisaan.</p><p>Ikäraja: 16<br>Kesto: 161 min<br>Ensi-ilta: 20.2.2026<br>Tekstitys: suomi, ruotsi</p><p>Kino Helioksessa vietetään Oscar-viikkoa 18.–20.3.</p><p>Tuomme valkokankaalle neljä hienoa Oscar ehdokkuuksia kahminutta elokuvaa, joille ennustamme myös palkintoja.</p><p>Keskiviikkona 18.3. on nähtävissä 8 Oscar ehdokkuutta saanut Hamnet klo 15, 4 ehdokkuutta saanut The Secret Agent klo 18 ja perjantaina 20.3. nähdään molemmat 9 Oscar ehdokkuutta saaneet Sentimental Value klo 15 ja Marty Supreme klo 18.</p>" }, "name": { "fi": "The Secret Agent (16) – Kino Helios", "sv": "The Secret Agent (16) – Kino Helios", "en": "The Secret Agent (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67388/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67387", "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-isanpaiva-malmitalo-21375687/", "sv": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375687/", "en": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375687/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1508335, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T10:13:00.448053Z", "last_modified_time": "2026-03-03T10:13:00.448066Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781073.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1508335/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T10:13:00.353840Z", "last_modified_time": "2026-03-20T01:13:47.865852Z", "date_published": null, "start_time": "2026-03-27T13: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": "Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/677BDFC1BB7DA709E3043A33B8F34B06/Isanpaiva_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/677BDFC1BB7DA709E3043A33B8F34B06/Isanpaiva_7_", "en": "http://www.malmitalo.fi/en/events/event/677BDFC1BB7DA709E3043A33B8F34B06/Isanpaiva_7_" }, "description": { "fi": "<p>Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.</p><p>Elokuvassa Veikko (Tommi Korpela) auttaa ystäväänsä Tinkeä (Tomi Lindfors) selviämään arjesta palveluyksikössä. Tinke on juonut terveytensä, ja elämää pitää kasassa sen nurjasta puolesta kumpuava huumori.</p><p>Kun ystävysten bändimenneisyydestä tutun Saimin (Laura Birn) teini-ikäiset kaksoset (Vilja ja Varpu Rintanen) päättävät ottaa selvää isästään, etsintä johtaa heidät Tinken jäljille. Saimi aikoo estää kaksosia tapaamasta Tinkeä, mutta sotkun keskelle tempautunut Veikko on eri mieltä.</p><p>Salmenperän luottonäyttelijä Tommi Korpelan rinnalla näyttelevä Tomi Lindfors tuo katkeransuloiseen tarinaan omakohtaista kokemustaan elämästä sivuraiteilla.</p><p>Lindforsin ja Tommi Korpelan vuosikymmenten mittainen tosimaailman ystävyys on vilahtanut aiemmin myös Salmenperän Jussi-palkitussa elokuvassa Tyhjiö.</p><p>Ikäraja: 7<br>Kesto: 99 min<br>Ensi-ilta: 6.3.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Isänpäivä (7) – Kino Helios", "sv": "Isänpäivä (7) – Kino Helios", "en": "Isänpäivä (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67387/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67639", "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/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-stoa-4036746/", "sv": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-stoa-4036746/", "en": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-stoa-4036746/" }, "description": null, "price": { "fi": "23€/15€/10€", "sv": "23€/15€/10€", "en": "23€/15€/10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493930, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-27T08:13:20.737715Z", "last_modified_time": "2025-11-27T08:13:20.737734Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780677.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493930/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-27T08:13:20.612075Z", "last_modified_time": "2026-03-20T01:13:47.754802Z", "date_published": null, "start_time": "2026-03-27T11: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": "Susanna Leinonen Companyn herkkä ja voimakas tanssiteos vie ikäihmiset ja ammattitanssijat yhteiselle matkalle kehon, kokemuksen ja rajojen maailmaan.", "sv": "Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.", "en": "Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/BCB808B5A225E0D1653B5458F29D315E/Susanna_Leinonen_Company_Rajatila_", "sv": "http://www.stoa.fi/sv/evenemang/event/BCB808B5A225E0D1653B5458F29D315E/Susanna_Leinonen_Company_Rajatila_", "en": "http://www.stoa.fi/en/events/event/BCB808B5A225E0D1653B5458F29D315E/Susanna_Leinonen_Company_Rajatila_" }, "description": { "fi": "<p>Susanna Leinonen Companyn herkkä ja voimakas tanssiteos vie ikäihmiset ja ammattitanssijat yhteiselle matkalle kehon, kokemuksen ja rajojen maailmaan.</p><p>Rajatila on Susanna Leinonen Companyn uusi, syvästi koskettava nykytanssiteos, joka tutkii elämää muovaavia näkyviä ja näkymättömiä rajoja. Teos jatkaa Susanna Leinonen Companyn ikäihmisten kanssa toteutettua teossarjaa ja muodostaa sen viidennen itsenäisen osan.</p><p>Teoksen koreografi Tatiana Urteva haluaa tutkia teoksessa elämää kokeneiden kehojen fyysistä ja emotionaalista voimaa – liikettä, rytmiä ja ilmaisua, joka kumpuaa vuosikymmenten kokemuksesta. Rajatila kutsuu pohtimaan, miten psykologiset ja fyysiset rajat ohjaavat arkeamme, miten niitä koetellaan ja miten ne lopulta muovaavat identiteettiämme.<br> <br>Näyttämöllä kohtaavat ilmaisuvoimaiset ikäihmiset ja ammattitanssijat. Ikäihmisten elämänkokemus ja kehollinen viisaus kietoutuvat yhteen tanssijoiden fyysisyyden ja tarkkuuden kanssa, synnyttäen koskettavan ja voimakkaan kokonaisuuden.Rajatila on teos ihmisyydestä, muutoksesta ja kestävyydestä. Se haastaa käsitykset siitä, miltä tanssi voi näyttää ja kuka saa olla sen tekijä.</p><p>Teos on osa Helsingin kaupungin iäkkäiden kulttuuritoiminnan <br>edistämishanketta.</p><p>Koreografia Tatiana Urteva<br>Musiikki Kasperi Laine<br>Valot Marianne Lagus<br>Puvut Sari Nuttunen<br>Kesto: 45 min<br>Kieli: suomi</p>", "sv": "<p>Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.</p><p>Verket fortsätter den serie av verk som Susanna Leinonen Company genomfört tillsammans med äldre personer och utgör den femte självständiga delen av den.</p><p>Verkets koreograf Tatiana Urteva vill i verket undersöka den fysiska och emotionella styrkan i de kroppar som har upplevt livet – rörelsen, rytmen och uttrycket som väller fram på grund av årtionden av erfarenhet. Gränsområdet inbjuder oss att reflektera över hur psykologiska och fysiska gränser styr vår vardag, hur de prövas och hur de slutligen formar vår identitet.</p><p>På scenen möts uttryksfulla äldre och professionella dansare. De äldres livserfarenhet och fysiska visdom sveper sig samman med dansarnas fysik och precision samt skapar en gripande och kraftfull helhet.</p><p>Rajatila är ett verk om mänsklighet, förändring och hållbarhet. Den utmanar uppfattningar om hur dans kan se ut och vem som får skapa den.</p><p>Verket är en del av Helsingfors stads projekt för att främja kulturverksamhet för äldre.</p><p>Koreografi: Tatiana Urteva<br>Musik: Kasperi Laine<br>Ljus: Marianne Lagus<br>Kostymer: Sari Nuttunen</p><p>Längd: 45 min.</p>", "en": "<p>Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life.</p><p>The piece continues the Susanna Leinonen Company's series of works created together with older people and forms the fifth independent part of the series.</p><p>Through this work,Choreographer Tatiana Urteva wishes to explore the physical and emotional power of bodies that have experienced life – their movement, rhythm and expression that comes from decades of experience. Rajatila invites us to reflect on how psychological and physical borders guide our everyday lives, how they are tested and how they ultimately shape our identity.</p><p>On the stage, expressive elderly people come together with professional dancers. The life experience and physical wisdom of older people intertwine with the physicality and precision of the dancers, creating a moving and powerful ensemble.</p><p>Rajatila is a work about humanity, change and resilience. It challenges notions of what dance can look like and who can create dance.</p><p>The work is part of the City of Helsinki's project to promote cultural activities for older people.</p><p>Choreography Tatiana Urteva<br>Music Kasperi Laine<br>Lights Marianne Lagus<br>Costumes Sari Nuttunen</p><p>Duration: 45 min</p>" }, "name": { "fi": "Susanna Leinonen Company: Rajatila", "sv": "Susanna Leinonen Company: Rajatila", "en": "Susanna Leinonen Company: Rajatila" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67639/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68156", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494958, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-26T12:12:54.239447Z", "last_modified_time": "2026-02-26T12:12:54.239459Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785883.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494958/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-26T12:12:54.067233Z", "last_modified_time": "2026-03-20T01:13:45.193242Z", "date_published": null, "start_time": "2026-03-25T15:00:00Z", "end_time": "2026-04-17T17: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": "Helsingin Kaupunginteatterin yleisötyön Taidetta koteihin – valokuvanäyttely esityksistä olohuoneissa avautuu Malmitalolla keskiviikkona 25.3.2026.", "en": "The exhibition opens at Malmitalo on 25 March 2026 and is on display in the lobby until 17 April 2026, after which it will tour other public venues in Malmi and Helsinki." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B82037FD1BD81F8F981CF00543FD795E/Taidetta_koteihin_-_valokuvanayttely_esityksista_olohuoneissa", "en": "http://www.malmitalo.fi/en/events/event/B82037FD1BD81F8F981CF00543FD795E/Taidetta_koteihin_-_valokuvanayttely_esityksista_olohuoneissa" }, "description": { "fi": "<p>Helsingin Kaupunginteatterin yleisötyön Taidetta koteihin – valokuvanäyttely esityksistä olohuoneissa avautuu Malmitalolla keskiviikkona 25.3.2026.</p><p>Näyttely on esillä Malmitalon aulassa 25.3.–17.4.2026, minkä jälkeen se lähtee kiertueelle muihin yleisölle avoimiin tiloihin Malmilla ja muualla Helsingissä.</p><p>Lämpimästi tervetuloa näyttelyn avajaisiin Malmitalolle keskiviikkona 25.3.2026 klo 17.30–19!<br>Valokuvanäyttely esittelee kaudella 2025–2026 toteutettujen Taidetta koteihin -tapahtumien tunnelmia, koteja ja niissä syntyneitä kohtaamisia. Näyttely tarjoaa mahdollisuuden kurkistaa kotiesityksiin myös heille, jotka eivät itse päässeet intiimeihin esityksiin paikan päälle.</p><p>Koteja, kohtaamisia ja yhteisöllisyyttä</p><p>Taidetta koteihin -tapahtumissa Malmin alueen tavalliset kodit ja kotiympäristöt muuntuivat taiteen näyttämöiksi, kun taiteilijat suunnittelivat esitykset vuoropuhelussa kodin asukkaan kanssa tämän kiinnostuksen kohteiden ja toiveiden pohjalta.</p><p>Tapahtumat olivat avoimia kaikille, ja niissä kohtasivat toisilleen ennestään tuntemattomat ihmiset. Tavoitteena oli tuoda taide osaksi arkea ja vahvistaa alueen yhteisöllisyyttä. Tähän mennessä Malmilla on toteutettu yhteensä kolmetoista kotiesitystä, joista näyttelyssä esitellään viisi.</p><p>Taidetta koteihin -tapahtumat toteutettiin osana Helsingin Kaupunginteatterin yleisötyön Pääroolissa Malmi -hanketta.</p><p>Valokuvat: Sonja Tolonen</p><p>Näyttelydramaturgia: Laura Ikonen, Janne Puustinen</p><p>Näyttelyn tuotanto: Eveliina Pöyhönen</p><p>Taidetta koteihin -konseptin taiteellinen suunnittelu: Laura Ikonen, Jenny Jumppanen, Aleksi Kinnunen, Janne Puustinen</p><p>Alueellisen Pääroolissa Malmi -taidehankkeen tarkoitus on tarjota asuinalueelle erilaisia teatterin ja taiteen osallistumismahdollisuuksia, sekä tukea alueen omaa kulttuuritoimintaa, luoden myös uusia kaupunkikulttuurin muotoja. Taidetta koteihin -kokonaisuus tuo taiteen konkreettisesti ihmisten luo ja luo uusia tapoja kohdata taidetta arjen keskellä. Pääroolissa Malmi on yksi Helsingin kaupungin rahoittamista Helsingin malli -hankkeista.</p>", "en": "<p>The exhibition opens at Malmitalo on 25 March 2026 and is on display in the lobby until 17 April 2026, after which it will tour other public venues in Malmi and Helsinki.</p><p>You are warmly welcome to the opening event on Wednesday 25 March at 17:30–19:00. The exhibition offers a glimpse into five home performances created during the 2025–2026 season, highlighting homes, encounters, and community. In these events, ordinary Malmi homes were transformed into artistic stages through collaboration between residents and artists. Art at Home is part of the Helsinki City Theatre’s audience engagement project Pääroolissa Malmi.</p><p>Photos: Sonja Tolonen</p><p>Exhibition dramaturgy: Laura Ikonen & Janne Puustinen</p><p>Production: Eveliina Pöyhönen</p><p>Artistic concept: Laura Ikonen, Jenny Jumppanen, Aleksi Kinnunen & Janne Puustinen</p>" }, "name": { "fi": "Taidetta koteihin - valokuvanäyttely esityksistä olohuoneissa – Taidetta koteihin -valokuvanäyttely tuo kotiesitysten tunnelmat kaikkien koettavaksi", "en": "Taidetta koteihin - valokuvanäyttely esityksistä olohuoneissa – The Art at Home photo exhibition captures intimate performances created inside ordinary homes across Malmi." }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68156/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67943", "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:32/?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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179283/", "sv": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179283/", "en": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179283/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494521, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T14:13:34.244884Z", "last_modified_time": "2026-01-16T14:13:34.244901Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783707.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494521/?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-16T14:13:34.152902Z", "last_modified_time": "2026-03-20T01:13:43.300345Z", "date_published": null, "start_time": "2026-03-22T13: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": "Vuorovaikutteinen esitys kaikkein pienimmille!", "sv": "En interaktiv show för de minsta!", "en": "An interactive dance performance for babies!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6805928E17A208C5B4899098C5F16290/Helena_Krinal_Shapeshifter_Kujumuutja", "sv": "http://www.annantalo.fi/sv/evenemang/event/6805928E17A208C5B4899098C5F16290/Helena_Krinal_Shapeshifter_Kujumuutja", "en": "http://www.annantalo.fi/en/events/event/6805928E17A208C5B4899098C5F16290/Helena_Krinal_Shapeshifter_Kujumuutja" }, "description": { "fi": "<p>Vuorovaikutteinen esitys kaikkein pienimmille!</p><p>Shapeshifter on vuorovaikutteinen tanssiesitys kaikkein pienimmille! Lempeässä esityksessä tanssijan hahmo muuttaa alati muotoaan kiehtovilla tavoilla ja juhlistaa jokaista uutta olomuotoa yhdessä yleisön kanssa.</p><p>Esityksen jälkeen kaikki ovat tervetulleita tutustumaan näyttämöön ja rekvisiittaan tarkemmin.</p><p>Esityskieli: Sanaton<br>Kesto: Esityksen kesto 30 minuuttia, jonka jälkeen vapaata leikkiaikaa kaikenikäisille<br>Ikäsuositus: 6–18 kk aikuisen kanssa</p><p>Ohjaaja, esiintyjä: Helena Krinal<br>Mentori, dramaturgi: Birute Baneviciute (Lithuania)<br>Äänisuunnittelija: Liis Ring<br>Pukusuunnittelija: Tiina Pikas<br>Valokuvat: Eesi Raa Oreškin<br>Videokuvaus: Evelina Nõmme<br>Tuotanto: MTÜ Krinalmansour<br>Yhteistuotanto: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Estonian Theatre Award 2024 -ehdokas</p><p>Liput: 6 € per henkilö</p>", "sv": "<p>En interaktiv show för de minsta!</p><p>Shapeshifter är en interaktiv dansföreställning för de allra minsta! I denna milda föreställning förändrar dansaren sin form på ett fascinerande sätt och firar varje ny gestalt tillsammans med publiken.</p><p>Efter föreställningen är alla välkomna att ta en närmare titt på scenen och rekvisitan.</p><p>Föreställningens språk: Ordlöst<br>Längd: Föreställningens längd är 30 minuter, och därefter följer fri lek för alla åldrar<br>Åldersrekommendation: 6–18 månader med en vuxen</p><p>Regissör, artist: Helena Krinal<br>Mentor, dramaturg: Birute Baneviciute (Litauen)<br>Ljuddesigner: Alice Ring<br>Kostymdesigner: Tiina Pikas<br>Foton: Eesi Raa Oreškin<br>Videoinspelning Evelina Nõmme<br>Produktion: NGO Krinalmansour<br>Samproduktion: Dansema Dance Theatre (Litauen), Sareyyet Ramallah (Palestina)<br>Nominerad till Estonian Theatre Award 2024</p>", "en": "<p>An interactive dance performance for babies!</p><p>Shapeshifter is an interactive dance performance for a very young audience, for babies aged 6 months to 18 months.</p><p>It is a poetic journey of a character who keeps changing its shape, evolving its being and celebrating each new shape while remembering the past.</p><p>The performance is interactive for the babies in the age group and welcomes all members of the audience to explore the stage and the props after the performance.</p><p>Duration of the performance is 30 minutes, followed by unstructured play time on stage for all ages.</p><p>Director, performer: Helena Krinal<br>Mentor, dramaturgy: Birute Baneviciute (Lithuania)<br>Sound composer: Liis Ring<br>Costume designer: Tiina Pikas<br>Photographer: Eesi Raa Oreškin<br>Cinematographer: Evelina Nõmme<br>Production: MTÜ Krinalmansour<br>Co-production: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Nominee of Estonian Theatre Award 2024</p>" }, "name": { "fi": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali", "sv": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo! Festivalen", "en": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo! Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67943/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }