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
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 ordering is descending order by -last_modified_time
. 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=10&publisher_ancestor=ahjo%3A00001
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=11&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=9&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:66970", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" }, "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490615, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T11:13:54.363128Z", "last_modified_time": "2025-09-03T11:13:54.363145Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776933.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490615/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T11:13:54.224616Z", "last_modified_time": "2025-09-03T11:13:54.530308Z", "date_published": null, "start_time": "2025-09-26T13:10: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, "provider_contact_info": null, "short_description": { "fi": "Espanjalaisen indierockin pioneeribändi Los Planetas astelee päälavalle vangitsevassa musiikkielokuvassa. Pakollista katsottavaa jokaiselle itseään kunnioittavalle indie-nautiskelijalle!", "en": "Spanish indie rock pioneers Los Planetas take the main stage in a captivating music film – essential viewing for any self-respecting indie connoisseur!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0B65E2E93A144BF69F77DF298F0627B7/Saturn_Return", "en": "http://www.savoyteatteri.fi/en/events/event/0B65E2E93A144BF69F77DF298F0627B7/Saturn_Return" }, "location_extra_info": null, "name": { "fi": "Saturn Return – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Saturn Return – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>Espanjalaisen indierockin pioneeribändi Los Planetas astelee päälavalle vangitsevassa musiikkielokuvassa. Pakollista katsottavaa jokaiselle itseään kunnioittavalle indie-nautiskelijalle!</p><p>Miten muodostuu musiikin ydin, kun tutkiskeleva ja uutta kohti kurottava bändi tekee levyn, joka tulee määrittämään aikakautta? Tunnetun elokuvantekijä Isaki Lacuestan ja Pol Rodríguezin ohjaama Saturn Return sukeltaa espanjalaisen indierockin legendan, Los Planetas -yhtyeen, myyttiin ja perintöön. Bändin historian läpikäymisen sijaan Lacuesta ja Rodríguez keskittyvät yhteen keskeiseen hetkeen bändin uralla: legendaarisen kolmannen albumin Una Semana en el Motor de un Autobús tekemiseen. Kaoottista ja käänteentekevää prosessia määrittivät taiteellinen kunnianhimo, sisäiset ristiriidat ja huumeidenkäytön varjot.</p><p>Levyn kappaleiden mukaisesti 11 lukuun jaetun elokuvan kerronta etenee moniäänisesti ja unilogiikalla läpi neonväreissä kylpevän 90-luvun Granadan underground-skenen. Saturn Return ei käy läpi faktoja tai toista tositapahtumia, vaan liikkuu eteenpäin vapaasti fiktiota, todellista ja legendaa yhteen kietoen. Perinteisen bändielämäkerran sijaan se on immersiivinen tunnelmapala, joka tarjoaa vaihtoehdon klassisille musiikkielokuville, kuten 24 Hour Party People, Control tai Leto. Se on tunnelmallinen ja abstrakti muotokuva muutoksen keskellä olevasta bändistä.</p><p>Diego Ginartes Rodríguez (kääntänyt Inari Ylinen)</p><p>Ohjaus Pol Rodriguez, Isaki Lacuesta<br>Näyttelijät Daniel Ibáñez, Cristalino, Stéphanie Magnin, Mafo<br>Maa Espanja, Ranska<br>Kielet espanja, englanti<br>Tekstitykset osittain englanti<br>Ikäraja K16<br>Kesto 109 min<br>Teema Feel the Beat!<br>Avainsanat Musiikki, Fantasia, Perustuu tositapahtumiin, Kaupunkitila</p>", "en": "<p>Spanish indie rock pioneers Los Planetas take the main stage in a captivating music film – essential viewing for any self-respecting indie connoisseur!</p><p>How does musical essence take form when a band, unraveling and reaching, creates the record that will define an era? In Saturn Return, acclaimed filmmaker Isaki Lacuesta, co-directing with Pol Rodríguez, delves into the myth and legacy of Los Planetas, widely considered pioneers of Spain’s indie rock scene. Lacuesta and Rodríguez, rather than tracing a straight line through the band’s discography, focus on a key moment in the group’s evolution: the creation of their third and most defining album, Una Semana en el Motor de un Autobús. It is a chaotic, transformative chapter marked by artistic ambition, internal fractures, and the shadows of drug addiction.</p><p>Structured in eleven chapters, each tied to a track from the record, Saturn Return unfolds as a polyphonic, dreamlike narrative bathed in red and blue neon, underground haze, and the raw emotional pulse of 1990s Granada, Spain. The film is not a reconstruction of real events or a chronicle of facts; instead, it moves within a revealing dimension where fiction, reality, and legend freely intertwine. Less a conventional band biopic than an atmospheric immersion, it distances itself from classic films like 24 Hour Party People, Control, or Leto, opting instead for a more abstract, mood-driven portrait of a band undergoing transformation.</p><p>Diego Ginartes Rodríguez</p><p>Director Pol Rodriguez, Isaki Lacuesta<br>Starring Daniel Ibáñez, Cristalino, Stéphanie Magnin, Mafo<br>Country Spain, France<br>Languages Spanish, English<br>Subtitles partly English<br>Age limit K16<br>Duration 109 min<br>Theme Feel the Beat!<br>Keywords Music, Fantasy, Based on true events, Urban spaces</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66970/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66969", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" }, "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490614, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T10:14:01.256617Z", "last_modified_time": "2025-09-03T10:14:01.256637Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776932.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490614/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T10:14:01.144443Z", "last_modified_time": "2025-09-03T10:14:01.403213Z", "date_published": null, "start_time": "2025-09-25T18: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, "provider_contact_info": null, "short_description": { "fi": "G7-kokous lähtee laukalle Guy Maddinin ja kumppanien elokuvassa, jossa umpikierot ökyrikkaat joutuvat zombien napsimiksi. Tuottajana vaikuttaa Ari Aster ja pääosatähtenä Cate Blanchett!", "en": "In this film by Guy Maddin and collaborators, the G7 summit goes off the rails, when the ultra-rich — crooked to the core — are devoured by zombies. Produced by Ari Aster and starring Cate Blanchett!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2F26F9F02DC302FECBD3BCAD330B533C/Rumours", "en": "http://www.savoyteatteri.fi/en/events/event/2F26F9F02DC302FECBD3BCAD330B533C/Rumours" }, "location_extra_info": null, "name": { "fi": "Rumours – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Rumours – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>G7-kokous lähtee laukalle Guy Maddinin ja kumppanien elokuvassa, jossa umpikierot ökyrikkaat joutuvat zombien napsimiksi. Tuottajana vaikuttaa Ari Aster ja pääosatähtenä Cate Blanchett!</p><p>Surrealistinen kauhukomedia Rumours heittää maailman mahtavimmat johtajat täydellisen sekasorron keskelle. G7-huippukokous karkaa käsistä, kun valtioiden päämiehet harhautuvat sumuiseen metsään ja joutuvat kohtaamaan oudon groteskeja esteitä: maasta esiin kaivettuja muinaisia zombimaisia suo-olentoja ja valtavan kokoisia aivoja.</p><p>Omintakeisista ja kokeellisista elokuvistaan tunnettu kanadalainen ohjaaja Guy Maddin on tehnyt jo useamman yhteistyön Evan ja Galen Johnsonin kanssa. Tällä kertaa kolmikko on saanut elokuvalliseen kepposeensa mukaan joukon nimekkäitä näyttelijöitä, johtotähtenä Saksan pääministeriä esittävä Cate Blanchett. Yhdysvaltain presidenttiä näyttelee umpibritti Charles Dance, joka ei ole muuttanut aksenttiaan tippaakaan.</p><p>Elokuva irvailee poliittiselle teatterille absurdilla nokkeluudella ja kuivalla ironialla. Saippuaoopperaa, b-kauhua ja Luis Buñuelin myöhäiskauden surrealismia yhdistelevä teos näyttää, kuinka johtajien hillitty charmi ja jargoniksi urautunut retoriikka eivät horju, vaikka maailma ympärillä luhistuu.</p><p>Visuaalisesti Rumours nojaa outouden viehätykseen: utuinen maisema, unenomaiset lavasteet ja häiritsevät lähikuvat luovat painajaismaisen sadun, jossa vallan hauraus paljastuu naurettavuuden kautta.</p><p>Rauli Karjalainen</p><p>Ohjaus Guy Maddin, Evan Johnson, Galen Johnson<br>Näyttelijät Cate Blanchett, Roy Dupuis, Denis Ménochet, Charles Dance, Nikki Amuka-Bird, Alicia Vikander<br>Maa Kanada, Saksa, Yhdysvallat, Unkari<br>Kielet englanti, ranska, ruotsi, saksa<br>Tekstitykset osittain englanti<br>Ikäraja K16<br>Kesto 104 min<br>Teema Eat the Rich<br>Avainsanat Outoa, Yhteiskunta, Huumori, Fantasia, Kauhu</p>", "en": "<p>In this film by Guy Maddin and collaborators, the G7 summit goes off the rails, when the ultra-rich — crooked to the core — are devoured by zombies. Produced by Ari Aster and starring Cate Blanchett!</p><p>Surrealistic horror comedy Rumours throws the world’s greatest leaders in the middle of perfect chaos. The G7 summit gets out of hand when the heads of state stray into a foggy forest and must face weirdly grotesque obstacles: ancient zombie-like swamp creatures dug from the ground and massive brains.</p><p>Canadian director Guy Maddin, known for his original and experimental films, has already done multiple collaborations with Evan and Galen Johnson. This time, the trio has gotten a cast of well-known actors aboard their cinematic prank, the guiding star being Cate Blanchett as the prime minister of Germany. The president of the United States is played by deeply British Charles Dance, who hasn’t changed his accent a bit.</p><p>The film pokes fun at political theatre with its absurd wit and dry irony. The work, combining soap opera, B-horror, and Luis Buñuel’s late-period surrealism, presents how the leaders’ discreet charm and jargon-based rhetoric don’t waver, even when the world around them is collapsing.</p><p>Visually, Rumours relies on the appeal of strangeness; misty landscapes, dreamy props, and disturbing close-ups create a nightmarish fairytale, in which the fragility of power is revealed through ridiculousness.</p><p>Rauli Karjalainen (translated by Vilja Hynynen)</p><p>Director Guy Maddin, Evan Johnson, Galen Johnson<br>Starring Cate Blanchett, Roy Dupuis, Denis Ménochet, Charles Dance, Nikki Amuka-Bird, Alicia Vikander<br>Country Canada, Germany, United States, Hungary<br>Languages English, French, Swedish, German<br>Subtitles partly English<br>Age limit K16<br>Duration 104 min<br>Theme Eat the Rich<br>Keywords Weird, Society, Humour, Fantasy, Horror</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66969/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66968", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" }, "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490613, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T10:14:00.809010Z", "last_modified_time": "2025-09-03T10:14:00.809037Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776931.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490613/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T10:14:00.681872Z", "last_modified_time": "2025-09-03T10:14:00.959518Z", "date_published": null, "start_time": "2025-09-25T14:45: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, "provider_contact_info": null, "short_description": { "fi": "Tilda Swinton säväyttää Joshua Oppenheimerin satiirisessa antimusikaalissa, joka seuraa post-apokalyptista maailmaa luksusbunkkeriin karannutta perhettä.", "en": "Tilda Swinton dazzles in Joshua Oppenheimer’s satirical anti-musical, which follows a family that has fled the post-apocalyptic world into a luxury bunker." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/12ADDB036F3015A2829B1685C7B00726/The_End", "en": "http://www.savoyteatteri.fi/en/events/event/12ADDB036F3015A2829B1685C7B00726/The_End" }, "location_extra_info": null, "name": { "fi": "The End – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "The End – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>Tilda Swinton säväyttää Joshua Oppenheimerin satiirisessa antimusikaalissa, joka seuraa post-apokalyptista maailmaa luksusbunkkeriin karannutta perhettä.</p><p>25 vuotta ympäristön romahtamisen jälkeen äiti (Tilda Swinton), isä (Michael Shannon) ja poika (George MacKay) elävät eristyksissä ylellisessä bunkkerissa suolakaivoksen uumenissa pitäen kiinni toivosta ja normaalin elämän rippeistä toistuvien rutiinien avulla. Kaikki rullaa omalla painollaan, kunnes heidän suljettuun maailmaansa saapuu nuori nainen (Moses Ingram).</p><p>Seurueen bunkkeri ei tunnu klaustrofobiselta, vaan tyylikkäästi sisustetun kodin seiniä koristavat arvotaulut ja elegantit koriste-esineet. Impressionismin mestariteokset eivät kuitenkaan ole ikkunoita ulkomaailmaan, vaan vääristyneitä kuvajaisia, kuten vuosikymmeniä maan alla asuneiden ihmisten maailmankuvakin. Pysyäkseen järjissään bunkkerin asukkaat ovat kierrättäneet samoja tarinoita ja valheita, mutta naisen saapuminen paljastaa pinnan alla kytevät jännitteet, ja perheen näennäisen harmoninen elämä alkaa vähitellen hajota.</p><p>Palkituissa dokumenttielokuvissaan The Act of Killing (R&A 2013) ja The Look of Silence (R&A 2014) tyylittelyä ja genre-elementtejä hyödyntänyt Joshua Oppenheimer käyttää musikaalia luomaan satiirisia tasoja post-apokalyptiseen selviytymistarinaansa. Eskapistinen lajityyppi on nerokas tapa kuvata ihmisiä, jotka yrittävät ylläpitää kulisseja ja elää tuhoutuneen maailman reunalla kuin mitään ei olisi tapahtunut. Maailma palaa ja ”kaikki on hyvin”.</p><p>Otto Kylmälä</p><p>Ohjaus Joshua Oppenheimer<br>Näyttelijät Tilda Swinton, George MacKay, Moses Ingram, Bronagh Gallagher<br>Maa Tanska, Ruotsi, Irlanti, Saksa, Italia, Iso-Britannia, Yhdysvallat<br>Kielet englanti, ranska<br>Tekstitykset osittain englanti<br>Ikäraja K12<br>Kesto 148 min<br>Teema Eat the Rich<br>Avainsanat Musiikki, Perhesuhteet, Outoa, Sci-fi, Luontosuhde</p>", "en": "<p>Tilda Swinton dazzles in Joshua Oppenheimer’s satirical anti-musical, which follows a family that has fled the post-apocalyptic world into a luxury bunker.</p><p>25 years after the environment collapsed, a mother, father and son are living in isolation in a luxury bunker in the bowels of a salt mine, clinging to hope and the remains of a normal life by repetitive routines. All things run their course until a young woman enters the family’s closed world.</p><p>Instead of feeling claustrophobic, the bunker home is adorned with valuable paintings and elegant decorative objects. The impressionist masterpieces, however, are not windows to the outside world, but distorted snapshots, like the worldview of the people who have been living underground for decades. To stay sane, the inhabitants of the bunker have been recycling the same stories and lies, but the arrival of the woman reveals the tensions simmering beneath the surface, and the family’s seemingly harmonious life gradually begins to unravel.</p><p>Having drawn on genres and styles in his award-winning documentaries The Act of Killing (R&A 2013) and The Look of Silence (R&A 2014), Oppenheimer now uses the musical to create satirical layers to his post-apocalyptic survival story. The escapist genre is an ingenious way to depict people trying to keep up appearances and live on the edge of a devastated world as if nothing has happened. The world burns and “all is well.“</p><p>Otto Kylmälä (translated by Moritz Müller</p><p>Director Joshua Oppenheimer<br>Starring Tilda Swinton, George MacKay, Moses Ingram, Bronagh Gallagher<br>Country Denmark, Sweden, Ireland, Germany, Italy, United Kingdom, United States<br>Languages English, French<br>Subtitles partly English<br>Age limit K12<br>Duration 148 min<br>Theme Eat the Rich<br>Keywords Music, Family ties, Weird, Sci-fi, Relationship with nature</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66968/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66967", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" }, "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490612, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T10:14:00.363528Z", "last_modified_time": "2025-09-03T10:14:00.363544Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776928.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490612/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T10:14:00.252959Z", "last_modified_time": "2025-09-03T10:14:00.512652Z", "date_published": null, "start_time": "2025-09-24T17:45: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, "provider_contact_info": null, "short_description": { "fi": "Amélien ja Anoran rakkauslapsi on sykkivän säkenöivä queer-kuumeuni yöstä Babel-klubilla, jossa tanssilattia sähköistyy ja kohtalot saavat hetkessä uusia suuntia.", "en": "The lovechild of Amélie and Anora, this pulsating, dazzling queer fever dream unfolds during a night at Club Babel, where the dance floor crackles and destinies change in an instant." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/13E2D612E38290AA18FB64F2E82B236C/Rains_over_Babel", "en": "http://www.savoyteatteri.fi/en/events/event/13E2D612E38290AA18FB64F2E82B236C/Rains_over_Babel" }, "location_extra_info": null, "name": { "fi": "Rains over Babel – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Rains over Babel – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>Amélien ja Anoran rakkauslapsi on sykkivän säkenöivä queer-kuumeuni yöstä Babel-klubilla, jossa tanssilattia sähköistyy ja kohtalot saavat hetkessä uusia suuntia.</p><p>Mikä asenne, mikä huumaavan hekumallinen queer-cocktail! Todennäköisesti viskattuna suoraan päin näköä. Kolumbialainen Rains over Babel syöksee kankaalle neonvärien täyttämän sekoituksen, jossa yö on kuuma, mutta hahmot vieläkin kuumempia. Kaupungin syke tuntuu alakerrassa asti.</p><p>Gala del Solin ohjaama ja käsikirjoittama elokuva on sähköisen seksikäs tulkinta Danten Jumalaisen näytelmän Helvetistä. Se on surrealistinen ja paineistettu klubi-ilta täynnä mystiikkaa, musiikkia ja kaikki likoon -energiaa. Yhden yön tunteihin mahtuu niin drag- esityksiä, live-musiikkia kuin takaa-ajoakin.</p><p>Värikylläinen Rains over Babel on sykkivä tarina elämän tienristeyksistä: ratkaisevista hetkistä, jolloin ovet sulkeutuvat ja aukeavat. Jotain jää taakse, kun kohtalo saa silmänräpäyksessä uuden suunnan. Henkihieverissä tempovat hahmot pelaavat kovilla panoksilla vaarallisia pelejä itseään mahtavampia vastaan. Joskus voitto on vain laulajan löytämisestä kiinni.</p><p>Esikoisohjaus on samaan aikaan syvällinen ja hilpeä, vakava ja räväkkä. Vaikka hahmojen kuumeunet eivät ota loppuakseen, asennetta riittää. Kukaan ei kenties koskaan ole ollut yhtä itsevarma kuin juhlija Babelin porteilla.</p><p>Susanna Puomio</p><p>Ohjaus Gala del Sol<br>Näyttelijät Jhon Narváez, Sofia Buenaventura, John Alex Castillo, Saray Rebolledo<br>Maa Espanja, Kolumbia, Yhdysvallat<br>Kielet espanja<br>Tekstitykset englanti<br>Ikäraja K16<br>Kesto 111 min<br>Teema Outouden laakso<br>Avainsanat LGBTQIA+, Kirjallisuus, Musiikki, Fantasia, Usko, Outoa</p>", "en": "<p>The lovechild of Amélie and Anora, this pulsating, dazzling queer fever dream unfolds during a night at Club Babel, where the dance floor crackles and destinies change in an instant.</p><p>What an attitude! What a dizzyingly lascivious queer cocktail, thrown right in your face! The Colombian film Rains over Babel bursts onto the screen in a medley of neon. The night is hot and the characters hotter, and the city pulsates through your whole body.</p><p>Directed by Gala del Sol, this film is an electrifyingly sexy interpretation of Dante’s Hell. It’s a surreal, pressurised club night full of music, mysticism and all-in energy. Drag shows, live music, and high speed chases all fit into the hours of just one night.</p><p>Rains over Babel is a vibrant, pulsing tale of life’s crossroads: of the deciding moments in which some doors close and others open. Some things get left behind as destiny finds a new direction in the blink of an eye. Characters are fighting for their lives and playing dangerous games at high stakes against powerful players. Sometimes the only thing needed to win is finding the right singer.</p><p>This directorial debut is simultaneously profound and merry, serious and riotous. Although the character’s fever dreams seem unending, the attitude never falters. Perhaps no one before has had the confidence of the party crowd at the gates of Babel.</p><p>Susanna Puomio (translated by Adrian Murtomäki)</p><p>Director Gala del Sol<br>Starring Jhon Narváez, Sofia Buenaventura, John Alex Castillo, Saray Rebolledo<br>Country Spain, Colombia, United States<br>Languages Spanish<br>Subtitles English<br>Age limit K16<br>Duration 111 min<br>Theme Uncanny Valley<br>Keywords LGBTQIA+, Literature, Music, Fantasy, Faith, Weird</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66967/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66966", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" }, "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490611, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T10:13:59.956317Z", "last_modified_time": "2025-09-03T10:13:59.956334Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776927.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490611/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T10:13:59.853223Z", "last_modified_time": "2025-09-03T10:14:00.092281Z", "date_published": null, "start_time": "2025-09-24T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Chloë Sevignyn tähdittämässä gonzohenkisessä komediassa amerikkalainen mediaryhmä päätyy sekoilemaan väärään pikkukylään Argentiinassa seuraavaa nettisensaatiota etsiessään.", "en": "In this gonzo comedy starring Chloë Sevigny, an American media crew ends up stumbling through the wrong small town in Argentina while chasing their next viral sensation." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7DD22966C9825F83CBFDBA785756D06F/Magic_Farm", "en": "http://www.savoyteatteri.fi/en/events/event/7DD22966C9825F83CBFDBA785756D06F/Magic_Farm" }, "location_extra_info": null, "name": { "fi": "Magic Farm – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Magic Farm – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>Chloë Sevignyn tähdittämässä gonzohenkisessä komediassa amerikkalainen mediaryhmä päätyy sekoilemaan väärään pikkukylään Argentiinassa seuraavaa nettisensaatiota etsiessään.</p><p>Meksikolaiskylän nuorukaiset suippokärkisissä saappaissaan olivat hitti – mitähän muuta hämmästyttävää Latinalaisella Amerikalla olisi tarjota nettikansan ihmeteltäväksi? Eksoottisten alakulttuurien esittelemiseen erikoistuneen newyorkilaisen mediayhtiön tuotantoryhmä suuntaa uudelle gonzojournalistiselle ekskursiolle viraaliksi nousevaa jänisuasuista eksentrikkomuusikkoa etsimään.</p><p>Harmi vain, ettei kukaan huomaa tarkistaa, tuleeko lähdettyä edes oikeaan maahan. Perillä Argentiinan maaseudulla täytyykin keksiä dokumentille uusi aihe.</p><p>Argentiinalaissyntyisen Amalia Ulmanin lakonisen komedian kritiikki kohdistuu eksploitatiiviseen videoreportaasikulttuuriin. Flegmaattinen ja pinnallinen porukka (mm. Chloë Sevigny juontajana, Alex Wolff tuottajana sekä Ulman itse paikallista kieltä ja kulttuuria ymmärtävänä kuvaajana) yrittää kehitellä viihdyttävää sensaatiosisältöä vaivautumatta havainnoimaan ympäristönsä todellisia, huomiota ansaitsevia ongelmia. Satirisoimansa videokulttuurin keinoja visuaalisessa ilmeessään hyödyntävän Magic Farmin sävypalettiin mahtuu kuitenkin muutakin kuin kyynisyyttä. Ulman vie amerikkalaisen indie-elokuvan ystävät värikkäälle tripille, joka sekä naurattaa että pohdituttaa.</p><p>Suvi Heino</p><p>Ohjaus Amalia Ulman<br>Näyttelijät Chloë Sevigny, Joe Apollonio, Simon Rex, Alex Wolff, Amalia Ulman<br>Maa Argentiina, Yhdysvallat, Iso-Britannia<br>Kielet englanti, espanja, ranska<br>Tekstitykset osittain englanti<br>Ikäraja K7<br>Kesto 93 min<br>Teema Live, Laugh, Love & Anarchy<br>Avainsanat Huumori, Matka, Feelgood, Yhteiskunta</p>", "en": "<p>In this gonzo comedy starring Chloë Sevigny, an American media crew ends up stumbling through the wrong small town in Argentina while chasing their next viral sensation.</p><p>The young men of a Mexican village in their pointy boots were a viral hit—what other marvels might Latin America have in store for the online crowd to gawk at? A production team from a New York-based media company specialising in showcasing exotic subcultures sets off on a new gonzo-journalistic excursion in search of a rabbit-costumed eccentric musician destined for viral fame.</p><p>The only problem: no one bothers to check whether they are even heading to the right country. Upon arrival in rural Argentina, the crew is forced to invent a new subject for their documentary.</p><p>Argentine-born Amalia Ulman’s deadpan comedy targets the exploitative culture of video reportage. The phlegmatic, shallow crew (including Chloë Sevigny as host, Alex Wolff as producer, and Ulman herself as the camerawoman who understands the local language and culture) tries to fabricate entertaining sensational content without troubling themselves to notice the real, pressing issues around them. Yet Magic Farm, while drawing on the very techniques of the video culture it satirises, allows room in its tonal palette for more than cynicism. Ulman takes fans of American indie cinema on a colorful trip that both entertains and provokes thoughts.</p><p>Suvi Heino (translated by Kati Ilomäki)</p><p>Director Amalia Ulman<br>Starring Chloë Sevigny, Joe Apollonio, Simon Rex, Alex Wolff, Amalia Ulman<br>Country Argentina, United States, United Kingdom<br>Languages English, Spanish, French<br>Subtitles partly English<br>Age limit K7<br>Duration 93 min<br>Theme Live, Laugh, Love & Anarchy<br>Keywords Humour, Journey, Feelgood, Society</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66966/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66965", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" }, "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490610, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T10:13:59.251930Z", "last_modified_time": "2025-09-03T10:13:59.251946Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776924.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490610/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T10:13:59.127930Z", "last_modified_time": "2025-09-03T10:13:59.397823Z", "date_published": null, "start_time": "2025-09-23T17:45: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, "provider_contact_info": null, "short_description": { "fi": "Kalifornialaisella kulttibändillä Pavementilla on ikoniset ysärialbumit, museo, vannoutuneet fanit ja paluukiertue – ja nyt elokuva, joka laittaa kaiken tyylikkäästi sekaisin jossain dokumentin ja fiktion rajamailla.", "en": "The cult California band Pavement has iconic 90s albums, a museum, devoted fans, and a reunion tour – and now a film that stylishly scrambles it all somewhere between documentary and fiction." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/78AA171D3EE0E2B1C995055D8E80F7FF/Pavements", "en": "http://www.savoyteatteri.fi/en/events/event/78AA171D3EE0E2B1C995055D8E80F7FF/Pavements" }, "location_extra_info": null, "name": { "fi": "Pavements – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Pavements – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>Kalifornialaisella kulttibändillä Pavementilla on ikoniset ysärialbumit, museo, vannoutuneet fanit ja paluukiertue – ja nyt elokuva, joka laittaa kaiken tyylikkäästi sekaisin jossain dokumentin ja fiktion rajamailla.</p><p>Amerikkalaisen alakulttuurin vaikuttaja, vaihtoehtorock-yhtye Pavement teki paluun vuonna 2022. Maailmankiertuetta dokumentoimaan saatiin ohjaaja Alex Ross Perry. Pian comebackia vahvistamaan syntyi elokuvaprojekti, Pavement-museo sekä musikaalituotanto. Elokuvaankin kiinnitettiin upeita tähtiä, kuten Joe Keery (Stranger Things) ja muun muassa Wes Andersonin elokuvista tuttu Jason Schwartzman.</p><p>Dokumentti seuraa kaikkien näiden tuotantojen vaiheita yhtyeen historiaa unohtamatta. Uusi materiaali esitetään rinnakkain arkistovideoiden kanssa, mikä herättää kiinnostavia tuoreita havaintoja ja tulkintoja. Mikä kaikki sitten on faktaa ja mikä lavastettua? Näyttelijäntyön prosessissa spiraloiva, fantastinen Keery ainakin tuntuu parodioivan viime vuosien muusikkoelämäkertaelokuvien trendiä. Sen sijaan musikaaliesitys ja kokoelmanäyttely löytävät oman omistautuneen yleisönsä ja avaavat liikuttaviakin kulmia yhtyeen vastoinkäymisten täyteiseen tarinaan.</p><p>Alex Ross Perry vieraili R&A:ssa vuonna 2015, jolloin Yle Teeman kuuluttaja Lauri Itäkannas kuvaili ohjaajan tyyliä ”urbaaneiksi ihmissuhdekuvauksiksi, joita keventää akateemisen toteava, mutta arkisiin ilmiöihin osuva huumori”. Samaa linjaa jatkaa Pavements, naurattava ja toisaalta havainnoissaan tarkka epätositarina musiikkibisneksestä, suosiosta sekä taiteen tekemisen ja kokemisen nautinnosta.</p><p>Alina Tolvanen</p><p>Ohjaus Alex Ross Perry<br>Näyttelijät Stephen Malkmus, Scott Kanberg, Joe Keery, Jason Schwartzman<br>Maa Yhdysvallat, Saksa<br>Kielet englanti<br>Ikäraja K12<br>Kesto 128 min<br>Teema Feel the Beat!<br>Avainsanat Musiikki, Huumori, Feelgood, Elämäkerta</p>", "en": "<p>The cult California band Pavement has iconic 90s albums, a museum, devoted fans, and a reunion tour – and now a film that stylishly scrambles it all somewhere between documentary and fiction.</p><p>A key figure in American subculture, alternative rock band Pavement made their comeback in 2022. Director Alex Ross Perry was brought in to document the world tour. Soon, the comeback grew into a larger creative endeavour, spawning a film project, a Pavement museum, and even a stage musical. The film attracted major talent, including Joe Keery (Stranger Things) and Jason Schwartzman, known for his roles in Wes Anderson’s films.</p><p>The documentary follows the making of all these projects while also revisiting the band’s history. New footage is presented alongside archival video, sparking fresh insights and interpretations. But what’s real, and what’s staged? Keery’s fantastical, spiraling performance seems to parody the recent trend of music biopics. Meanwhile, the musical and museum exhibition find their own devoted audiences, revealing unexpectedly moving angles to the band’s story of setbacks and resilience.</p><p>Alex Ross Perry previously visited the Love & Anarchy Festival in 2015, when Yle Teema’s announcer Lauri Itäkannas described his style as “urban relationship portraits lightened by academically dry but sharply observational humor.” Pavements continues in the same vein — a funny yet perceptive pseudo-documentary about the music business, fame, and the joy of making and experiencing art.</p><p>Alina Tolvanen</p><p>Director Alex Ross Perry<br>Starring Stephen Malkmus, Scott Kanberg, Joe Keery, Jason Schwartzman<br>Country United States, Germany<br>Languages English<br>Age limit K12<br>Duration 128 min<br>Theme Feel the Beat!<br>Keywords Music, Humour, Feelgood, Biopic</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66965/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66964", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" }, "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490609, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T10:13:58.857795Z", "last_modified_time": "2025-09-03T10:13:58.857812Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776923.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490609/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T10:13:58.723181Z", "last_modified_time": "2025-09-03T10:13:59.010783Z", "date_published": null, "start_time": "2025-09-23T15: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, "provider_contact_info": null, "short_description": { "fi": "Kristen Stewartin debyyttiohjaus on raivokas ja kunnianhimoinen kuvaus siitä, kuinka traumasta voi kasvaa taidetta.", "en": "Kristen Stewart’s directorial debut is a fierce and ambitious portrayal of how trauma can ultimately be transformed into art." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/390218CDCEA95DA657B1DCE9538D5AD2/The_Chronology_of_Water", "en": "http://www.savoyteatteri.fi/en/events/event/390218CDCEA95DA657B1DCE9538D5AD2/The_Chronology_of_Water" }, "location_extra_info": null, "name": { "fi": "The Chronology of Water – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "The Chronology of Water – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>Kristen Stewartin debyyttiohjaus on raivokas ja kunnianhimoinen kuvaus siitä, kuinka traumasta voi kasvaa taidetta.</p><p>Näyttelijä Kristen Stewartin raivokas ohjausdebyytti The Chronology of Water perustuu amerikkalaiskirjailija Lidia Yuknavitchin samannimiseen omaelämäkertaan, joka ilmestyi vuonna 2011 ja on ollut myyntihitti. Se kertoo rajun katkelmallisesti ja vahvasti tyylitellen hyväksikäytetyn kilpatason uimarin muodonmuutoksesta huumeongelman kautta menestyneeksi kirjailijaksi.</p><p>Imogen Poots tekee vereslihalle venyvän roolin Lidiana, jonka elämää varjostaa seksuaalinen hyväksikäyttö ja vaikea isäsuhde. Jim Belushi vierailee vastakulttuuri-ikoni Ken Keseynä, jonka ryhmäkirjoituskurssilta Lidia hakee vauhtia kirjoittajanuralleen.</p><p>Kiihkeä ja fragmentaarinen kerronta pureutuu syvälle traumaattisen suhteen ristiriitaisuuksiin. Elokuva upottaa katsojan jo ensikuvista lähtien arvaamattomaan virtaan, jossa trauma, halu, addiktio ja kirjoittaminen lomittuvat. Levoton leikkaus ja vastahankainen äänisuunnittelu muistuttavat alati siitä, että kaikki ei ole hyvin.</p><p>Elokuva sai ensi-iltansa Un Certain Regard -sarjassa Cannesin elokuvajuhlilla, missä yleisö otti sen vastaan seisoaltaan taputtaen. Stewart on myös toinen elokuvan käsikirjoittajista Andy Mingon lisäksi.</p><p>Rauli Karjalainen</p><p>Ohjaus Kristen Stewart<br>Näyttelijät Imogen Poots, Tom Sturridge, Thora Birch, Jim Belushi<br>Maa Yhdysvallat, Ranska, Latvia<br>Kielet englanti<br>Tekstitykset englanti<br>Ikäraja K16<br>Kesto 127 min<br>Teema Avainelokuvat<br>Avainsanat Urheilu, Taide, Naiskuvia, Kasvutarina, Kirjallisuus</p>", "en": "<p>Kristen Stewart’s directorial debut is a fierce and ambitious portrayal of how trauma can ultimately be transformed into art.</p><p>Actor Kristen Stewart’s fierce directorial debut The Chronology of Water is based on American writer Lidia Yuknavitch’s bestselling autobiography of the same name, published in 2011. It’s a fragmented and heavily stylised film that tells the story of an abused competitive swimmer, who goes from having a drug problem into being a successful writer and a mother.</p><p>Imogen Poots throws herself into her raw performance as Lidia, whose life is haunted by sexual abuse and a difficult relationship with her father. Jim Belushi appears as counterculture icon Ken Kesey, from whose writing course Lidia enters to kickstart her writing career.</p><p>The hectic narration digs deep into the conflicts of traumatic relationships. From the first frames, the viewer is sucked into an unpredictable stream, in which trauma, desire, addiction, and writing interlock. The restless editing and reluctant sound design constantly keep the viewer reminded that all is not well.</p><p>The film had its premiere in the Un Certain Regard section at Cannes International Film Festival, where the audience received it with a standing ovation. Stewart is also the film’s co-writer beside Andy Mingo.</p><p>Rauli Karjalainen (translated by Vilja Hynynen)</p><p>Director Kristen Stewart<br>Starring Imogen Poots, Tom Sturridge, Thora Birch, Jim Belushi<br>Country United States, France, Latvia<br>Languages English<br>Subtitles English<br>Age limit K16<br>Duration 127 min<br>Theme Spotlight Selection<br>Keywords Sports, Art, Female stories, Coming of age, Literature</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66964/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66117", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1162434, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T08:13:43.550264Z", "last_modified_time": "2025-07-02T08:13:43.550281Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772201.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1162434/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-02T08:13:43.454957Z", "last_modified_time": "2025-09-03T10:13:55.606696Z", "date_published": null, "start_time": "2025-09-13T10:00:00Z", "end_time": "2025-09-13T16: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, "provider_contact_info": null, "short_description": { "fi": "Malmi on skenen epicentrum, lähiöiden paratiisi, Helsingin Forssa. Malmi vetää puoleensa kuin magneetti. Tervetuloa M-alueelle!", "sv": "Malm är scenens epicentrum, förorternas paradis, Helsingfors Forssa. Malm attraherar som en magnet. Välkommen till M-zonen!", "en": "Malmi is the epicentre of the scene, a suburban paradise, the Forssa of Helsinki. Malmi draws people in like a magnet. Welcome to the M Zone!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1269B72C453E71560557DEA9B5BA1FA6/Malmi_Mayhemi_2", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1269B72C453E71560557DEA9B5BA1FA6/Malmi_Mayhemi_2", "en": "http://www.malmitalo.fi/en/events/event/1269B72C453E71560557DEA9B5BA1FA6/Malmi_Mayhemi_2" }, "location_extra_info": null, "name": { "fi": "Malmi Mayhemi 2 – Mukana mm. Notkea Rotta & MC Rautaperse ja Taikuri Luttinen!", "sv": "Malmi Mayhemi 2", "en": "Malmi Mayhemi 2" }, "description": { "fi": "<p>Malmi on skenen epicentrum, lähiöiden paratiisi, Helsingin Forssa. Malmi vetää puoleensa kuin magneetti. Tervetuloa M-alueelle!</p><p>Malmi Vicen ja Malmitalon yhteistyössä järjestämässä ilmaistapahtumassa tarjoillaan lähiökulttuurin ja urbaanin taiteen parhaita paloja: pop-up-tatuointipiste (tatuoinnit for life or for a weekend), Notkea Rotan & MC Rautaperseen keikka, Taikuri Luttisen taikashow sekä tietysti onnenpyörän pyöritystä mässyillä palkinnoilla!</p><p>Tapahtuman kesto: 13.00-19.00</p><p><b>Aikataulu</b><br>13.30 Live Love Lähiö – Malmi Vice 20 vuotta -juhlanäyttelyn avajaispuhe + Onnenpyöräarvonta<br>14.15 MC Rautaperse & Notkea Rotta<br>16.00 Onnenpyöräarvonta<br>17.00 Taikuri Luttisen taikashow<br>18.00 Onnenpyöräarvonta</p><p><b>Koko tapahtuman ajan:</b><br>Silk Inkin tatuointipiste<br>Areefer's Supplyn vaatepainopiste<br>Kertakäyttötatuointeja</p><p>Tapahtuman juontaa <b>Lina Schiffer.</b></p><p>Tapahtumassa järjestetään Malmi Vicen 20-vuotisjuhlanäyttelyn avajaiset. <u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/BF675A976F98603E8E6E42CA89953EC4/Live_Love_L_hi____Malmi_Vice_20_vuotta_juhlan_yttely\">Lue lisää näyttelystä</a></u></p><p>Vapaa pääsy, tervetuloa!</p>", "sv": "<p>Malm är scenens epicentrum, förorternas paradis, Helsingfors Forssa. Malm attraherar som en magnet. Välkommen till M-zonen!</p><p>I gratisevenemanget som Malmi Vice och Malms kulturhus ordnar i samarbete serveras det bästa av förortskultur, urban konst och gatumode: Pop-up-tatuointipunkt (tatueringar for life or for a weekend), konsert med Notkea Rotta & MC Rautaperse, Trollkarlen Luttinens trollerishow samt naturligtvis lyckohjulet med priser!</p><p>Evenemangets längd: 13.00–19.00</p><p><b>Program</b><br>13.30 Live Love Lähiö – öppningstal för jubileumsutställningen Malmi Vice 20 år + lyckohjulsdragning<br>14.15 MC Rautaperse & Notkea Rotta<br>16.00 Lyckohjulet<br>17.00 Trollkarlen Luttinens trollerishow<br>18.00 Lyckohjulet</p><p><b>Under hela evenemanget:</b><br>• Silk Ink tatueringar<br>• Areefer's Supply klädtryck<br>• Engångstatueringar</p><p>Evenemanget leds av <b>Lina Schiffer.</b></p><p>Under evenemanget ordnas även vernissagen av Malmi Vices 20-årsjubileumsutställning. <u><a href=\"https://malmitalo.fi/sv/evenemangen/event/BF675A976F98603E8E6E42CA89953EC4/LIVE_LOVE_SUBURBS___MALMI_VICE_20_YEARS\">Mer information </a></u></p><p>Fritt inträde. Välkommen!</p>", "en": "<p>Malmi is the epicentre of the scene, a suburban paradise, the Forssa of Helsinki. Malmi draws people in like a magnet. Welcome to the M Zone!</p><p>Co-organised by Malmi Vice and Malmitalo, the free event will feature the best of suburban culture, urban art and street fashion: Pop-up tattoo booth (tattoos for life or just for a weekend), a live gig by Notkea Rotta & MC Rautaperse, Magician Luttinen’s magic show, and of course a spin of the wheel of fortune with prizes!</p><p><b>Schedule</b><br>1:30 PM Live Love Lähiö – opening speech for the Malmi Vice 20 Years anniversary exhibition + wheel of fortune<br>2:15 PM MC Rautaperse & Notkea Rotta<br>4:00 PM Wheel of fortune<br>5:00 PM Magician Luttinen’s magic show<br>6:00 PM Wheel of fortune</p><p><b>Throughout the event:</b><br>• Silk Ink tattoo booth<br>• Areefer’s Supply clothing print station<br>• Temporary tattoos</p><p>The event will be hosted by <b>Lina Schiffer.</b></p><p>The event includes the opening of the Malmi Vice 20th anniversary exhibition. <u><a href=\"https://malmitalo.fi/en/events/event/BF675A976F98603E8E6E42CA89953EC4/LIVE_LOVE_SUBURBS___MALMI_VICE_20_YEARS\">More information </a></u></p><p>Free entry – welcome!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66117/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66655", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1217519, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-09T08:14:37.949669Z", "last_modified_time": "2025-07-09T08:14:37.949687Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775480.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1217519/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-09T08:14:37.817173Z", "last_modified_time": "2025-09-03T09:13:56.430789Z", "date_published": null, "start_time": "2025-10-04T15: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, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Nomads Festivaalille nauttimaan unohtumattomasta illasta musiikin parissa", "sv": "Välkommen till Nomads Festivalen för att njuta av en oförglömlig kväll med musiken!", "en": "Welcome to Nomads Festival for an unforgettable evening of music!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/1243A1C9935EF4EEEB706E98C8E0280E/Mehrnoosh_Zolfaghari_Awakening_Senase_DJ_Bunuel", "sv": "http://www.stoa.fi/sv/evenemang/event/1243A1C9935EF4EEEB706E98C8E0280E/Mehrnoosh_Zolfaghari_Awakening_Senase_DJ_Bunuel", "en": "http://www.stoa.fi/en/events/event/1243A1C9935EF4EEEB706E98C8E0280E/Mehrnoosh_Zolfaghari_Awakening_Senase_DJ_Bunuel" }, "location_extra_info": null, "name": { "fi": "Mehrnoosh Zolfaghari: Awakening | Senase | DJ Bunuel – Nomads Festival", "sv": "Mehrnoosh Zolfaghari: Awakening | Senase | DJ Bunuel – Nomads Festival", "en": "Mehrnoosh Zolfaghari: Awakening | Senase | DJ Bunuel – Nomads Festival" }, "description": { "fi": "<p>Tervetuloa Nomads Festivaalille nauttimaan unohtumattomasta illasta musiikin parissa</p><p>Luvassa on lumoava Awakening-konsertti, jossa Mehrnoosh Zolfagharin sävellykset tulevalta Awakening-levyltä vievät matkalle persialaisen musiikin juurista jazzin ja maailmanmusiikin sulautumiin. Kymmenhenkinen kokoonpano yhdistää ikiaikaisia rytmejä ja moderneja sävyjä.</p><p>lllan avaa Helsinkiin juurtunut Senase Trio, jonka kolumbialaissisarukset Natalia, Sebastián ja Sergio Castrillón luovat ainutlaatuisia äänimaisemia harpun, sellon ja laulun voimin, ammentaen globaaleista ja kokeellisista vaikutteista. Tunnelmaa nostattaa legendaarinen DJ Bunuel, suomalaisen rytmimusiikin pioneeri, jonka setit ovat inspiroineet sukupolvia. Tule kokemaan musiikin yhdistävä voima!</p><p>Aikataulu:<br>klo 18 DJ Bunuel <br>klo 18.30 Senase <br>klo 19.30 DJ Bunuel<br>klo 20.15 Mehrnoosh Zolfaghari: Awakening <br>klo 21.15 DJ Bunuel</p><p>Persian juuristaan ja Iranin klassisen musiikin rikkaista perinteistä inspiroitunut Awakening on Mehrnoosh Zolfagharin konserttiohjelma. Sävellykset heijastavat ääniä, joiden parissa hän kasvoi, samalla omaksuen vaikutteita jazzista ja moninaisista musiikkikulttuureista. Kun kokoonnumme juhlistamaan musiikin voimaa, anna Awakeningin kauniiden sävelten viedä sinut matkalle – yhdistellen muinaisia persialaisia rytmejä ja melodioita nykyaikaisiin ilmauksiin sekä improvisatorisiin jazz-elementteihin.</p><p>Esiintyjät: <br>Santoor, Percussion: Mehrnoosh Zolfaghari<br>Electric Guitar: Mahan Mirarab<br>Double Bass: Nathan Riki Thomson<br>Piano: Kari Ikonen<br>Kamancha: Melisa Yildirim<br>Trumpet: Devina Boughton<br>Cello: Mila Hussein Laine<br>Drum set: Aarne Toivonen<br> <br><b>Senase</b><br>Helsingissä toimiva trio Senase koostuu kolumbialaissyntyisistä sisaruksista Natalia, Sebastián ja Sergio Castrillónista, jotka vievät kuulijan kiehtovalle äänimatkalle harpun, sellon, modifioidun sellon ja laulun kautta. Inspiroituina globaaleista äänimaisemista, klassisesta ja kokeellisesta musiikista he esittävät yhdessä luotuja omaperäisiä sävellyksiä. Senasen äänipaletti yhdistää Etelä-Amerikan ja Pohjoismaiden musiikki- ja luontoääniä, luoden ainutlaatuisia äänellisiä tunnelmia perinteisten ja laajennettujen soittotekniikoiden avulla.<br> <br><b>Kokoonpano:</b><br>Sergio Castrillón: Modifioitu sello, laulu<br>Natalia Castrillón: Kampiharppu, laulu<br>Sebastián Castrillón: Sello, laulu<br> <br><b>DJ Bunuel</b><br>DJ Bunuel on suomalaisen rytmimusiikin legenda, joka on valloittanut klubit ja radioaallot 1970-luvulta lähtien. Hänen eklektiset settinsä yhdistävät jazzin, urbaanit rytmit ja maailmanmusiikin, luoden unohtumattomia tunnelmia.</p><p>Vapaa pääsy!</p>", "sv": "<p>Välkommen till Nomads Festivalen för att njuta av en oförglömlig kväll med musiken!</p><p>En förtrollande Awakening-konsert, där Mehrnoosh Zolfagharis kompositioner från den kommande Awakening-skivan för lyssnaren på en resa från den persiska musikens rötter till sammansmältningen av jazz och världsmusik, utlovas. Sammansättningen på tio personer förenar eviga rytmer och moderna nyanser.</p><p>Kvällen öppnas av Senase Trio som rotat sig i Helsingfors. Columbianska syskonen Natalia, Sebastián och Sergio Castrillón skapar unika ljudlandskap med harpa, cello och sång genom att använda sig av globala och experimentella inrtyck. Stämningen höjs av legendariska DJ Bunuel, pionjär inom den finska rytmmusiken. Hans set har inspirerat generationer. Kom med och upplev musikens förenande kraft!</p><p>kl 18 DJ Bunuel <br>kl 18.30 Senase <br>kl 19.30 DJ Bunuel<br>kl 20.15 Mehrnoosh Zolfaghari: Awakening <br>kl 21.15 DJ Bunuel</p><p>Med inspiration från sina persiska rötter och de rika klassiska musikarven från Iran tillhör Awakening Mehrnoosh Zolfagharis konsertprogram. Kompositionerna återspeglar ljud, bland vilka han växte upp, samtidigt som han tillägnade sig verkningar av jazz och mångahanda musikkulturer. När vi samlas för att fira musikens kraft, låt Awakenings vackra toner föra dig på en resa – genom att förena fornpersiska rytmer och melodier med nutida uttryck och improvisatoriska jazzelement.</p><p>Artister: <br>Santoor, Percussion: Mehrnoosh Zolfaghari<br>Electric Guitar: Mahan Mirarab<br>Double Bass: Nathan Riki Thomson<br>Piano: Kari Ikonen<br>Kamancha: Melisa Yildirim<br>Trumpet: Devina Boughton<br>Cello: Mila Hussein Laine<br>Drum set: Aarne Toivonen<br> <br><b>Senase</b><br>Senase, triot från Helsingfors, består av syskonen Natalia, Sebastián och Sergio Castrillón som fötts i Columbia. De för lyssnaren på en fascinerande ljudresa med hjälp av harpa, cello, modifierad cello och sång. Inspirerade av globala ljudlandskap, klassisk och experimentell musik framför de orginella musikstycken som de tillsammans skapat. Senases ljudpalett förenar musik- och naturljud från Sydafrika och nordiska länder, genom att skapa unika ljudliga stämningar med hjälp av traditionella och omfattande speltekniker.<br> <br><b>Sammansättning:</b><br>Sergio Castrillón: Modifierad cello, sång<br>Natalia Castrillón: Vevlira, sång<br>Sebastián Castrillón: Cello, sång</p><p><b>DJ Bunuel</b><br>DJ Bunuel är en legend inom den finska rytmmusiken, som har intagit klubbar och radiovågorna sedan 1970-talet. Hans eklektiska set förenar jazz, urbana rytmer och världsmusik, genom att skapa oförglömlig stämning.</p><p>Fritt inträde!</p>", "en": "<p>Welcome to Nomads Festival for an unforgettable evening of music!</p><p>The evening’s enchanting Awakening concert, with compositions from Mehrnoosh Zolfaghari's forthcoming Awakening album, will take you on a journey from the roots of Persian music to the fusion of jazz and world music. The ten-person ensemble combines ancient rhythms with modern tones.</p><p>The evening will be off to a great start with the Senase Trio, whose Colombian siblings Natalia, Sebastián and Sergio Castrillón create unique soundscapes with harp, cello and vocals, drawing on global and experimental influences. The evening’s energy will be fuelled even further by the legendary DJ Bunuel, a pioneer of Finnish rhythm music whose sets have inspired generations. Come and experience the unifying power of music!</p><p>18 DJ Bunuel <br>18.30 Senase <br>19.30 DJ Bunuel<br>20.15 Mehrnoosh Zolfaghari: Awakening <br>21.15 DJ Bunuel</p><p>Mehrnoosh Zolfaghari's concert programme, Awakening, is inspired by her Persian roots and the rich traditions of Iranian classical music. The compositions reflect the sounds she grew up with, while taking influences from jazz and diverse musical cultures. As we come together to celebrate the power of music, let the beautiful melodies of Awakening take you on a journey that combines ancient Persian rhythms and melodies with contemporary expressions and improvisational jazz elements.</p><p>Performers: <br>Santoor, Percussion: Mehrnoosh Zolfaghari<br>Electric Guitar: Mahan Mirarab<br>Double Bass: Nathan Riki Thomson<br>Piano: Kari Ikonen<br>Kamancha: Melisa Yildirim<br>Trumpet: Devina Boughton<br>Cello: Mila Hussein Laine<br>Drum set: Aarne Toivonen<br> <br><b>Senase</b><br>The Helsinki-based trio Senase consists of Colombian-born siblings Natalia, Sebastián and Sergio Castrillón, who take their audience on a fascinating soundscape journey through the melodies of harp, cello, modified cello and vocals. Inspired by global soundscapes, as well as classical and experimental music, they perform original compositions that they have created together. Senase's sound palette combines music and natural sounds from South America and the Nordic countries, creating unique soundscapes through traditional and extended instrumental techniques.<br> <br><b>Composition:</b><br>Sergio Castrillón: Modified cello, vocals<br>Natalia Castrillón: Wheelharp, vocals<br>Sebastián Castrillón: Cello, vocals</p><p><b>DJ Bunuel</b><br>DJ Bunuel is a legend of Finnish rhythm music, who has been conquering clubs and radio waves since the 1970s. His eclectic sets combine jazz, urban rhythms and world music, creating unforgettable atmospheres.</p><p>Free entry!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66655/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66963", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" }, "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490608, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T09:13:54.392799Z", "last_modified_time": "2025-09-03T09:13:54.392815Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776934.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490608/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T09:13:54.214055Z", "last_modified_time": "2025-09-03T09:13:54.604238Z", "date_published": null, "start_time": "2025-09-26T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Cillian Murphy vie jalat alta Claire Keeganin romaaniin perustuvassa draamassa, jossa Irlannin lähihistorian synkkä salaisuus lyö perheenisän sydämen säpäleiksi.", "en": "Cillian Murphy wows as a father, whose heart is shattered by a dark secret from Ireland’s recent past, in this drama based on Claire Keegan’s novel." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/10803C9759D7A33FDA064605088BE623/Nama_pienet_asiat", "en": "http://www.savoyteatteri.fi/en/events/event/10803C9759D7A33FDA064605088BE623/Small_Things_Like_These" }, "location_extra_info": null, "name": { "fi": "Nämä pienet asiat – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Small Things Like These – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>Cillian Murphy vie jalat alta Claire Keeganin romaaniin perustuvassa draamassa, jossa Irlannin lähihistorian synkkä salaisuus lyö perheenisän sydämen säpäleiksi.</p><p>Vuonna 1985 harmaassa ja sateisessa Kaakkois-Irlannissa ahkera kivihiilikauppias Bill Furlong odottaa perheineen joulua. Perheessä on viisi tytärtä eikä rahaa ole paljon, mutta hyväsydäminen Bill antaa tästä huolimatta kolikoitaan vähempiosaisille. Hiilitoimitusta viedessään Bill näkee nuoren naisen, jota raahataan väkisin katolisen kirkon pyörittämään Magdalena-pesulaan. Bill järkyttyy näystä pahoin, ja muistot omasta rikkonaisesta lapsuudesta hyökyvät vasten kasvoja. Hän haluaisi auttaa naisia, mutta vaimo Eileen käskee unohtamaan asian peläten tyttäriensä kokevan saman kohtalon katolisen kirkon käsissä.</p><p>Ohjaaja Tim Mielants ja mestarinäyttelijä Cillian Murphy käsittelevät taitavasti ja tunteellisesti Irlannin kollektiivista traumaa yhden ihmisen kokemusten kautta Claire Keeganin kirjaan perustuvassa elokuvassa. Vuosina 1922–1998 kymmeniätuhansia naisia vangittiin katolisen kirkon pyörittämiin Magdalena-pesuloihin ”sopimattoman käytöksen” kuten avioliiton ulkopuolisen raskauden vuoksi. Neljäsosa heistä joutui niihin valtion lähettämänä, ja epäinhimillisissä olosuhteissa kymmenesosa työhön pakotetuista naisista kuoli. Trauma elää yhä valtion anteeksipyynnöistä huolimatta.</p><p>Jaakko Jokinen</p><p>Ohjaus Tim Mielants<br>Näyttelijät Cillian Murphy, Eileen Walsh, Emily Watson, Clare Dunne,<br>Maa Irlanti, Belgia, Yhdysvallat<br>Kielet englanti, iiri<br>Tekstitykset suomi, ruotsi<br>Ikäraja K7<br>Kesto 98 min<br>Teema Historia uusiksi<br>Avainsanat Naiskuvia, Historia, Usko, Angsti, Yhteiskunta, Perustuu tositapahtumiin, Tekstitetty/puhuttu suomeksi<br>Vuosi 2024<br>Alkuperäinen nimi Small Things Like These<br>Levittäjä Cinemanse</p>", "en": "<p>Cillian Murphy wows as a father, whose heart is shattered by a dark secret from Ireland’s recent past, in this drama based on Claire Keegan’s novel.</p><p>The year is 1985 and Bill Furlong, a hardworking coal merchant, is waiting for Christmas in grey and rainy southeast Ireland with his family. The family has five daughters and money is tight, but generous Bill still donates money to those less fortunate than himself. When delivering coal to a client, Bill sees a young woman being dragged against her will to work in the Magdalene laundrette operated by the Catholic Church. Bill is shocked by this sight, and memories of his own troubled childhood hit him hard. He would like to help the women working in the laundrette, but his wife Eileen tells him to forget the whole thing, fearing that their daughters would face the same fate.</p><p>In Small Things Like These, based on Claire Keegan’s novel, director Tim Mielants and the masterful Cillian Murphy handle with great skill and sensitivity Ireland’s collective trauma through the experiences of one person. Between 1922 and 1998, tens of thousands of women were captured and forced to work in the Magdalene laundrettes by the Catholic Church, on account of “inappropriate behaviour,” such as pregnancy outside marriage. One quarter of them were sent to these laundrettes by the state, and one tenth of the women forced to work in inhumane conditions died. The trauma still lives on regardless of the state’s official apologies.</p><p>Jaakko Jokinen (translated by Herman Tikkanen)</p><p>Director Tim Mielants<br>Starring Cillian Murphy, Eileen Walsh, Emily Watson, Clare Dunne,<br>Country Ireland, Belgium, United States<br>Languages English, Irish Gaelic<br>Subtitles Finnish, Swedish<br>Age limit K7<br>Duration 98 min<br>Theme Rewrite History<br>Keywords Female stories, History, Faith, Angst, Society, Based on true events, Subtitled/spoken in Finnish<br>Year 2024<br>Original name Small Things Like These<br>Distributor Cinemanse</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66963/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66467", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/3904954", "en": "https://www.lippu.fi/eventseries/3904954" }, "price": { "fi": "48-149 €", "en": "48-149 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 867945, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-27T08:15:05.108005Z", "last_modified_time": "2025-05-27T08:15:05.108026Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774205.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/867945/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-27T08:15:04.975374Z", "last_modified_time": "2025-09-02T13:16:01.714749Z", "date_published": null, "start_time": "2025-09-30T16: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, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/96F9B30DA2CB0D2DAD6A0CFCF3F0E090/Vedi_svoj_plug_po_kostjam_mertvetsov", "en": "http://www.savoyteatteri.fi/en/events/event/96F9B30DA2CB0D2DAD6A0CFCF3F0E090/Vedi_svoj_plug_po_kostjam_mertvetsov" }, "location_extra_info": null, "name": { "fi": "Vedi svoj plug po kostjam mertvetsov – 29.9. ESITYS SIIRTYNYT -> ti 30.9.", "en": "Vedi svoj plug po kostjam mertvetsov – 29.9. EVENT RESCHEDULED -> Tue 30.9." }, "description": { "fi": "<p>*****<br>Ma 29.9.2025 Vedi svoj plug po kostjam mertvetsov -esitys Savoy-teatterissa siirtyy pidettäväksi päivää myöhemmin lavasteiden logistiikkaan liittyvistä syistä.<b> Uusi ajankohta on ti 30.9.2025 klo 19.00.</b></p><p>Jo hankitut liput kelpaavat sellaisenaan myös tulevaan esitykseen. <b>Lippuja ei tarvitse vaihtaa!</b></p><p>Mikäli uusi ajankohta ei sovi, voit palauttaa ostetut pääsyliput <b>ti 9.9.2025 klo 14 mennessä.</b><br>Rahat palautetaan tällöin takaisin lukuun ottamatta Lippupisteen palvelumaksua.</p><p>Lippurahojen palautukset hoidetaan verkkolinkin kautta: https://web.lippu.fi/palautus/<br>Ostetuista lipuista hyvitetään lipun hinta (ei palvelu- tai toimitusmaksuja).</p><p>*******</p><p><b>Drive Your Plow Over the Bones of the Dead</b></p><p>A stage production inspired by the bestseller by Nobel Prize winner Olga Tokarczuk.</p><p>At first glance, it's a mystical detective story — a forest noir about mysterious murders in a remote Polish village. But look closer and you’ll find a rich artistic bouquet: biting satire, poignant poetry, and subtle psychological insights. Most importantly, there’s an extraordinary heroine — eccentric Mrs. Duszejko, who takes a stand alone against the cruelty and injustice of the world. It feels as if the role was written specifically for actress Liya Akhedzhakova or even modeled after her.</p><p>Liya Medzhidovna Akhedzhakova delivers a bold and witty performance as a retired schoolteacher who sets out to unravel a series of strange murders and, in the process, save her friends, eccentrics just like herself. Playing the \"alter ego\" of the main character is actress and singer Musya Totibadze, who performs songs set to the poetry of English mystic William Blake.</p><p>The play Drive Your Plow Over the Bones of the Dead invites the audience on an enchanting journey: live music, mysterious woodland creatures, and a parade of familiar human characters. It speaks to the most vital themes — life’s fragility and human responsibility toward the world.</p><p><b>Cast:</b><br>Alexander Feklistov<br>Musya Totibadze<br>Maria Krol<br>Gleb Romashevsky</p><p><b>Director:</b><br>Boris Pavlovich</p><p>Duration: 1 hour 40 minutes (no intermission)</p><p>Language: Performed in Russian without subtitles</p>", "en": "<p><b>Drive Your Plow Over the Bones of the Dead</b></p><p>A stage production inspired by the bestseller by Nobel Prize winner Olga Tokarczuk.</p><p>At first glance, it's a mystical detective story — a forest noir about mysterious murders in a remote Polish village. But look closer and you’ll find a rich artistic bouquet: biting satire, poignant poetry, and subtle psychological insights. Most importantly, there’s an extraordinary heroine — eccentric Mrs. Duszejko, who takes a stand alone against the cruelty and injustice of the world. It feels as if the role was written specifically for actress Liya Akhedzhakova or even modeled after her.</p><p>Liya Medzhidovna Akhedzhakova delivers a bold and witty performance as a retired schoolteacher who sets out to unravel a series of strange murders and, in the process, save her friends, eccentrics just like herself. Playing the \"alter ego\" of the main character is actress and singer Musya Totibadze, who performs songs set to the poetry of English mystic William Blake.</p><p>The play Drive Your Plow Over the Bones of the Dead invites the audience on an enchanting journey: live music, mysterious woodland creatures, and a parade of familiar human characters. It speaks to the most vital themes — life’s fragility and human responsibility toward the world.</p><p><b>Cast:</b><br>Alexander Feklistov<br>Musya Totibadze<br>Maria Krol<br>Gleb Romashevsky</p><p><b>Director:</b><br>Boris Pavlovich</p><p>Duration: 1 hour 40 minutes (no intermission)</p><p>Language: Performed in Russian without subtitles</p>", "ru": "<p>Спектакль <b>«Веди свой плуг по костям мертвецов»</b> запланированный на <b>понедельник 29.9</b>, в театре Savoy в Хельсинки, переносится на один день позже по причинам, связанным с логистикой декораций. <b>НОВАЯ ДАТА – ВТОРНИК 30.9. в 19:00.</b></p><p>Ранее приобретённые билеты действительны и на новую дату. <b>Обменивать их не нужно!</b><br>Если новая дата вам не подходит, вы можете вернуть приобретенные билеты <b>до вторника, 9.9.2025 до 14:00.</b> В этом случае стоимость билетов будет возвращена за вычетом сервисного сбора Lippupiste.</p><p>Возврат билетов осуществляется через веб-ссылку: https://web.lippu.fi/palautus/<br>Возвращается только номинальная стоимость билета (сервисный и почтовый сбор не компенсируются).</p><p>******</p>" }, "provider": { "fi": "Aftersunset Oy", "en": "Aftersunset Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66467/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66401", "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:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1169713, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-03T06:13:52.599970Z", "last_modified_time": "2025-07-03T06:13:52.599984Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774069.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1169713/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-03T06:13:52.477216Z", "last_modified_time": "2025-09-02T10:14:08.685624Z", "date_published": null, "start_time": "2025-09-16T15: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, "provider_contact_info": null, "short_description": { "fi": "Vihreästä ihostaan pilkattu Elphaba ja suosittu tyttö Galinda ystävystyvät Shizin yliopistossa.", "sv": "Elphaba, som hånats för sin gröna hy, och den populära flickan Galinda blir vänner på Shizi universitet.", "en": "Mocked for her green skin, Elphaba forms an unlikely but deep friendship with the popular girl Glinda at Shiz University." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CA0B23FAA06164E6FBEF0284C47A1415/Jassari-leffa_Wicked", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CA0B23FAA06164E6FBEF0284C47A1415/Jassari-leffa_Wicked", "en": "http://www.malmitalo.fi/en/events/event/CA0B23FAA06164E6FBEF0284C47A1415/Jassari-leffa_Wicked" }, "location_extra_info": null, "name": { "fi": "Jässäri-leffa: Wicked – Valtuusto 150v", "sv": "Jässäri-leffa: Wicked – Valtuusto 150v", "en": "Jässäri-leffa: Wicked – Valtuusto 150v" }, "description": { "fi": "<p>Vihreästä ihostaan pilkattu Elphaba ja suosittu tyttö Galinda ystävystyvät Shizin yliopistossa.</p><p>Kohtaaminen Ihmeellisen Ozin velhon kanssa vie heidän ystävyytensä käännekohtaan.</p><p>Ihmemaa Ozin noitien tarinan kertovassa elokuvassa päärooleissa nähdään Emmy-, Grammy- ja Tony-palkittu valovoimainen Cynthia Erivo (Harriet, Broadwayn Häivähdys purppuraa) vihreän ihonsa vuoksi väärinymmärrettynä ja todellisia voimiaan etsivänä Elphabana sekä Grammy-voittaja ja kansainvälinen supertähti Ariana Grande Glindana, suosittuna, etuoikeutettuna ja kunnianhimoisena nuorena naisena, joka etsii vielä sydämensä todellista ääntä.</p><p>Kaksikko tapaa aloittaessaan taikuuden opinnot Shizin maagisessa yliopistossa ja heidän välilleen muodostuu odottamaton, mutta syvä ystävyys. Kun he kohtaavat Ozin Velhon, heidän ystävyytensä joutuu koetukselle ja elämänsä erkanevat eri poluille. Suosion jano saa Glindan viehättyämään vallasta, kun taas Elphaban päätöksellä pysyä rehellisenä itselleen ja muille on odottamattomia ja järkyttäviä vaikutuksia hänen kohtaloonsa. Heidät tullaan myöhemmin tuntemaan Ozin ihmemaassa Glinda Hyvänä ja Lännen ilkeänä noitana.</p><p>Oscar®-voittaja Michelle Yeoh nähdään elokuvassa Shiz-yliopiston loisteliaana rehtorina Madame Morriblena, Jonathan Bayley (Bridgerton, Fellow Travelers) Fiyerona, veitikkamaisena ja huolettomana prinssinä, Tony-ehdokas Ethan Slater (Broadwayn Paavo Pesusieni, Fosse/Verdon) Bogina, avuliaana munskottioppilaana, Marisa Bode elokuvadebyytissään Nessarosena, Elphaban suositumpana siskona, sekä popkulttuuri-ikoni Jeff Goldblum Ozin ihmeellisenä Velhona.</p><p>Ikäraja: 7<br>Kieli englanti, tekstitetty suomeksi<br>Kesto: 2 t 40 min</p><p>Elokuvanäytös on suunnattu ainoastaan yli 7-vuotiaille nuorille, joilla on Jässäri-kortti.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20296573/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>", "sv": "<p>Elphaba, som hånats för sin gröna hy, och den populära flickan Galinda blir vänner på Shizi universitet.</p><p>Mötet med trollkarlen från den underbara Trollkarlen från Oz leder till en vändpunkt i deras vänskap.</p><p>I filmen om Trollkarlen från Oz får vi se Emmy-, Grammy- och Tony-belönade och polulära Cynthia Erivo (Harriet, Broadways Purpurfärgen) som Elphabana, missförstådd på grund av sin gröna hy och sökande efter sin verkliga kraft, och den internationella superstjärnan Ariana Grande som Glinda, en populär, privilegierad och ambitiös ung kvinna som fortfarande söker sitt hjärtas sanna röst.</p><p>Paret träffas när de börjar studera magi vid det magiska universitetet i Shizi, och en oväntad men djup vänskap uppstår mellan dem. När de träffar Trollkarlen från Oz sätts deras vänskap på prov och deras liv går i olika vägar. Glindas törst efter popularitet gör henne attraherad av makt, medan Elphabas beslut att vara ärlig mot sig själv och andra får oväntade och chockerande konsekvenser för hennes öde. De blir senare kända i Trollkarlen från Oz som Glinda den goda och den elaka Häxan från Väst.</p><p>I filmen spelar Oscar®-vinnaren Michelle Yeoh den glamorösa rektorn på Shiz universitet, Madame Morrible, medan Jonathan Bayley (Bridgerton, Fellow Travelers) spelar Fiyero, en stilig och sorglös prins, Tony-nominerade Ethan Slater (Broadways Svampbob Fyrkant, Fosse/Verdon) spelar Bog, en hjälpsam munchkinstuderande, Marisa Bode spelar i sin filmdebut Nessarose, Elphabas populära syster, och popkulturikonen Jeff Goldblum den underbara Trollkarlen från Oz.</p><p>Åldersgräns: 7<br>Språk: engelska, textad på finska<br>Längd: 2 timmar 40 minuter</p><p>Filmvisningen riktar sig endast till unga över 7 år som har Jässari-kort.</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20296573/?affiliate=FSF#tab=\">HÄR</a></u></p>", "en": "<p>Mocked for her green skin, Elphaba forms an unlikely but deep friendship with the popular girl Glinda at Shiz University.</p><p>An encounter with the Wizard of Oz brings their friendship to a turning point.</p><p>The lead roles of the film, telling the story of the witches of Oz, are played by the stellar Emmy, Grammy and Tony Award winner Cynthia Erivo (Harriet, Broadway's The Color Purple) as Elphaba – misunderstood for her green skin and searching for her true power – and Grammy winner and global superstar Ariana Grande as Glinda, a popular, privileged and ambitious young woman still discovering the true voice of her heart.</p><p>The two meet as they begin their magical studies at the enchanted Shiz University, where an unexpected but deep friendship forms between them. When they encounter the Wizard of Oz, their friendship is put to the test and their lives take separate paths. Glinda's thirst for popularity makes her attracted to power, while Elphaba's decision to remain honest with herself and others has unexpected and shocking consequences for her fate. They will later become known in the Land of Oz as Glinda the Good and the Wicked Witch of the West.</p><p>Oscar® winner Michelle Yeoh appears in the film as the magnificent headmistress of Shiz University, Madame Morrible; Jonathan Bailey (Bridgerton, Fellow Travelers) as Fiyero, a mischievous and carefree prince; Tony nominee Ethan Slater (Broadway's SpongeBob SquarePants, Fosse/Verdon) as Boq, a helpful Munchkin student; Marissa Bode in her film debut as Nessarose, Elphaba's more popular sister; and pop culture icon Jeff Goldblum as the wonderful Wizard of Oz.</p><p>Age limit: 7<br>Language: English, subtitled in Finnish<br>Duration: 2 hours 40 min</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20296573/?affiliate=FSF#tab=\">HERE</a></u></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66401/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66676", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/aeaenien-ja-sanojen-virta-illat-kulttuurikeskus-caisa-kulttuurikeskus-caisa-20374305/", "sv": "https://www.lippu.fi/event/aeaenien-ja-sanojen-virta-illat-kulttuurikeskus-caisa-kulttuurikeskus-caisa-20374305/", "en": "https://www.lippu.fi/event/aeaenien-ja-sanojen-virta-illat-kulttuurikeskus-caisa-kulttuurikeskus-caisa-20374305/" }, "price": { "fi": "15 € / 7 €", "sv": "15 € / 7 €", "en": "15 € / 7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1155482, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T11:12:35.099059Z", "last_modified_time": "2025-07-01T11:12:35.099072Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774594.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155482/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T11:12:35.029963Z", "last_modified_time": "2025-09-02T10:14:03.842946Z", "date_published": null, "start_time": "2025-09-04T16: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, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa lankeamaan loveen, avaamaan tunneaistisi ja kohtaamaan tajuntasi ulottuvuuksia väkevän runomusiikin tahtiin!", "sv": "Välkommen att bli förälskad, öppna dina känslomässiga sinnen och möta dimensionerna i ditt medvetande till ljudet av kraftfull poesimusik!", "en": "Welcome — join us as we enter hyperspace, open our emotions and senses, and encounter our shared consciousness with vivid poetry and music!" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C0FC22C6E4B89EE4F87A9E00C27501E9/Metamatka", "sv": "http://www.caisa.fi/sv/evenemang/event/C0FC22C6E4B89EE4F87A9E00C27501E9/Metamatka", "en": "http://www.caisa.fi/en/events/event/C0FC22C6E4B89EE4F87A9E00C27501E9/Metamatka" }, "location_extra_info": null, "name": { "fi": "Metamatka – Äänien ja sanojen virta", "sv": "Metamatka – Äänien ja sanojen virta", "en": "Metamatka – A trance-elation of words and sounds" }, "description": { "fi": "<p>Tervetuloa lankeamaan loveen, avaamaan tunneaistisi ja kohtaamaan tajuntasi ulottuvuuksia väkevän runomusiikin tahtiin!</p><p>Metamatka-esityksessä runoilija <b>Kasper Salosen</b> esittämät monikieliset lavarunot, loitsut, haikut, mantrat ja laulut kietoutuvat muusikko <b>Erno Matikaisen</b> maagiseen musikaaliseen säestykseen. Luvassa on laaja ja psykedeelinen katsaus Salosen kirjoittamisen ja esittämisen tyyleihin, joita hän on hionut, tutkinut ja kajauttanut lavoillakin yli 15 vuoden ajan.<br> <br>Transsielämys on tajunnan ilmiö, jossa kokija antautuu mukaan muuntuviin tunnelmiin ja päästää itsensä seuraamaan flow-tilassa aistejaan ja ajatuksiaan. Nämä tuntemukset ovat yllättävän yleisiä ja niitä on jokaisella, pieniä ja suuria, läpi elämän. Transsiin voi päästä mukaan hyvin monin tavoin, joko hiljaisuuden tai äänien ja kuvien saattelemana, joko yksin tai yhdessä. Metamatka-esitys on seremonia, jonka tarkoitus on saattaa osallistujat vaihteleviin assosiatiivisiin keskittymisen tiloihin, joissa sanalliset ja musikaaliset viestit uppoavat ja tanssivat mielen pinnalla ja sielun sopukoissa.<br> <br>Aiheina esityksessä ovat mm. luonnon perimmäinen tärkeys, rauhan aatteen ja sodan vastustamisen vastuut sekä tietoisuuden mysteerin hartaus ja hilpeys. Esityksessä kuullaan sekä originaalia että ikiaikaista sanataidetta lähinnä suomeksi ja englanniksi, mutta myös tiibetiksi, sanskritiksi sekä glossolaliaksi — eli improvisoiden keksityllä kielimäisellä ääntelyllä.<br> <br>Soittimia kuullaan useita, kuten cupola-teräsrumpua ja elektronista tahdistoa — enimmäkseen improvisoiden. Kasper myös soittaa mm. kehärumpua ja helistintä. Esityksen jälkeen halukkaat saavat jäädä tapaamaan ja juttelemaan kokemastaan, integroimaan yhdessä elämyksiään.</p><p>Ikäsuositus: Kaikenikäisille.<br>Esityksen kieli: Monikielinen (suomi, englanti, tiibet, sanskrit, nonsense)<br>Esityksen kesto: 45–60 min + alustus + loppukeskustelu. Ei väliaikaa.</p><p><b>Äänien ja sanojen virta</b><br>Tule kokemaan taiteen ja musiikin syvimmät sävyt! Caisan uusi ja ainutlaatuinen konsepti yhdistää musiikin, runouden ja tarinankerronnan inspiroivaksi kokonaisuudeksi, jossa ääni ja sana sulautuvat yhteen, luoden tilan herkistymiselle, oivalluksille ja tunnetiloille. Iltojen teemoina ovat elämän eri ulottuvuudet, ilo, suru, rakkaus ja kaipuu sekä niiden virran yhteys kuulijaan. Jokainen ilta tarjoaa myös mahdollisuuden keskusteluun, jossa yleisö ja esiintyjät voivat jakaa ajatuksiaan, kokemuksiaan ja tuntemuksiaan illan teemoihin liittyen. Keskustelut avaavat uusia näkökulmia ja syventävät yhteyttä tarinoihin ja niiden herättämiin tunteisiin.</p><p>Tule ja anna musiikin ja sanojen resonoida sisimmässäsi – yhdessä luomme illan, joka jää mieleen ja koskettaa sydäntä!<br>Illat juontaa ja avaa esiintyen audiovisuaalinen taiteilija ja laulaja Oona Räyhäntausta.</p><p>Äänien ja sanojen virta odottaa sinua, varaa paikkasi ja ole osa tätä syvää taidekokemusta!</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381791/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Välkommen att bli förälskad, öppna dina känslomässiga sinnen och möta dimensionerna i ditt medvetande till ljudet av kraftfull poesimusik!</p><p>Föreställningen Metamatka väver samman flerspråkig estradpoesi, besvärjelser, haikun, mantran och sånger av poeten Kasper Salonen med magiska musikaliska ackompanjemang av musikern Erno Matikainen. Det utlovas en omfattande och psykedelisk inblick i Salonens stilar av författarskap och framförande, som han har finslipat, undersökt och stämt upp i på scener i över 15 år.<br> <br>Transupplevelsen är ett fenomen av medvetande där man hänger sig åt de föränderliga stämningarna och tillåter sig att följa sina sinnen och tankar i ett tillstånd av flow. Dessa känslor är förvånansvärt vanliga och finns hos alla, små och stora, genom livet. Man kan falla i trans på många olika sätt, antingen i tystnad eller med hjälp av ljud och bilder, ensam eller tillsammans. Föreställningen Metamatka är en ceremoni som syftar till att leda deltagarna in i associativa koncentrationstillstånd där de verbala och musikaliska budskapen sjunker in och dansar på sinnets yta och i själens vrår.<br> <br>Teman i föreställningen är bland annat naturens grundläggande betydelse, ansvaret för fredsideologin och motståndet mot krig samt hängivenheten och glädjen i medvetandets mysterium. Föreställningen innehåller både original och wikitida ordkonst främst på finska och engelska, men även på tibetanska, sanskrit samt på glossolaliska – det vill säga ett påhittat språkligt ljud av improvisationer.<br> <br>Man hör flera instrument, som en cupola-ståltrumma och en elektronisk pacemaker – mestadels improviserade. Kasper spelar också bland annat ramtrumma och triangel. Efter föreställningen kan de som vill stanna kvar för att träffas och prata om sina upplevelser och integrera sina erfarenheter tillsammans.</p><p>Åldersrekommendation: För alla åldrar.<br>Föreställningens språk: Flerspråkig (finska, engelska, tibetanska, sanskrit, nonsens)<br>Föreställningens längd: 45–60 minuter. Ingen paus.</p><p><b>Äänien ja sanojen virta</b><br>Kom och upplev de djupaste nyanserna av konst och musik! Caisas nya och unika koncept kombinerar musik, poesi och berättande till en inspirerande helhet där ljud och ord smälter samman och skapar utrymme för sensibilisering, insikter och känslotillstånd.</p><p>Teman för kvällarna är livets olika dimensioner såsom glädje, sorg, kärlek och längtan samt sambandet mellan deras flöde och lyssnaren. Varje kväll erbjuder också en möjlighet till diskussion där publiken och artisterna kan dela sina tankar, erfarenheter och känslor kring kvällens teman. Diskussionerna öppnar nya perspektiv och fördjupar kontakten med berättelserna och de känslor de väcker.</p><p>Kom och låt musiken och orden resonera inom dig – tillsammans skapar vi en minnesvärd kväll som berör hjärtat!</p><p>Den audiovisuella konstnären och sångaren Oona Räyhäntausta är värdinna och programledare under kvällarna.</p><p>En ström av ljud och ord väntar på dig, boka din plats och bli en del av denna djupa konstupplevelse!</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381791/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Welcome — join us as we enter hyperspace, open our emotions and senses, and encounter our shared consciousness with vivid poetry and music!</p><p>In the Metamatka performance, artist and poet Kasper Salonen performs spoken word poetry, spell-poems, mantras, and songs alongside the magical music Erno Matikainen. The event will feature a psychedelic dive into Salonen's styles of writing and vocal performance, which he has been honing, studying, and expressing on stage for more than 15 years.<br> <br> A trance state is a phenomenon of consciousness wherein the experiencer surrenders to altered feelings and allows themselves to follow and flow with their senses and thoughts. These experiences are surprisingly common and come in various varieties to everyone throughout their lives. Trances can be accessed in many ways, either in silence or with included sound and visuals, either alone or as a shared moment. Metamatka is a ceremony intended to invite people into changing associative states of concentration, where verbal and musical messages sink in and dance around on the surface of the mind, and in the crannies of the soul.<br> <br>Topics approached in the texts on stage include the primacy of nature, the responsibility of peace and anti-war action, and the devotion and playfulness of the mystery of consciousness. The performance will feature original verbal art and ancient texts, mainly in Finnish and English, but also in Tibetan, Sanskrit, and Glossolalia -- that is, as improvised and nonsensical pseudo-linguistic speech.<br> <br>Several different soundscapes will be heard on stage, such as the cupola or Hang drum and electronic beats — mainly improvised. Kasper will also play a drum and a shaker. After the performance those who would like to stay to meet, discuss, and integrate their experiences are very welcome to hang out together.</p><p><b>Stream of Sounds and Words</b><br>Come and experience the deepest shades of art and music! Caisa’s new and unique concept combines music, poetry and storytelling into an inspiring whole in which sound and words merge and create a space for sensitisation, insights and emotional states.</p><p>The themes of the evenings focus on different dimensions of life, such as joy, sorrow, love and longing, and the connection between their flow and the listener. Each evening will also provide an opportunity for discussions in which the audience and the performers can share their thoughts, experiences and feelings regarding the evening’s themes. The discussions will open up new perspectives and deepen the audience’s connection with the stories and the emotions that they evoke.</p><p>Come and let the music and words resonate within you – together we will create a memorable evening that will touch your heart!<br>The evenings will be hosted by audiovisual artist and singer Oona Räyhäntausta.</p><p>A stream of sounds and words awaits you – reserve your place and be part of this profound art experience!</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381791/?affiliate=FSF\">HERE</a></u></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66676/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66675", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?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/aeaenien-ja-sanojen-virta-illat-kulttuurikeskus-caisa-kulttuurikeskus-caisa-20374303/", "sv": "https://www.lippu.fi/event/aeaenien-ja-sanojen-virta-illat-kulttuurikeskus-caisa-kulttuurikeskus-caisa-20374303/", "en": "https://www.lippu.fi/event/aeaenien-ja-sanojen-virta-illat-kulttuurikeskus-caisa-kulttuurikeskus-caisa-20374303/" }, "price": { "fi": "15 € / 7 €", "sv": "15 € / 7 €", "en": "15 € / 7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1155481, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T11:12:34.765723Z", "last_modified_time": "2025-07-01T11:12:34.765737Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774592.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155481/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T11:12:34.683689Z", "last_modified_time": "2025-09-02T10:14:03.068533Z", "date_published": null, "start_time": "2025-09-03T16: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, "provider_contact_info": null, "short_description": { "fi": "Nukkumakonsertissa syvä ja rauhoittava musiikki vie kuulijansa mukanaan unien maailmoihin, oman kehon tuolle puolen.", "sv": "Sömnkonsertens djupa och lugnande musik tar åhöraren in i drömmarnas värld, bortom den egna kroppen.", "en": "In the Sleeping Concert, deep and soothing music will take the listener into a world of dreams, beyond the body." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/A1CDAB3E0EFCCB3C47113DC2C51E1DB8/Nukkumakonsertti_Sleeping_Concert", "sv": "http://www.caisa.fi/sv/evenemang/event/A1CDAB3E0EFCCB3C47113DC2C51E1DB8/Somnkonsert_Nukkumakonsertti_Sleeping_Concert", "en": "http://www.caisa.fi/en/events/event/A1CDAB3E0EFCCB3C47113DC2C51E1DB8/Nukkumakonsertti_Sleeping_Concert" }, "location_extra_info": null, "name": { "fi": "Nukkumakonsertti | Sleeping Concert – Äänien ja sanojen virta", "sv": "Sömnkonsert | Nukkumakonsertti | Sleeping Concert – Äänien ja sanojen virta", "en": "Nukkumakonsertti | Sleeping Concert – Stream of Sounds and Words" }, "description": { "fi": "<p>Nukkumakonsertissa syvä ja rauhoittava musiikki vie kuulijansa mukanaan unien maailmoihin, oman kehon tuolle puolen.</p><p>Caisan Äänien ja sanojen virta -tapahtumasarjan ensimmäisessä illassa teemana on laskeutuminen uniin ja alitajuntaan.</p><p>Äänitaidetta ja tilainstallaatiota yhdistelevässä konsertissa osallistujien on mahdollista torkahtaa ja vaipua jopa uneen saakka. <br>Illan esiintyjinä toimivat äänitaiteilija ja arkkitehti Joonas Parviainen sekä kuvataiteilija/muotoilija Susse Seppälä, jotka kuuluvat Taidekollektiivi Tuhmiin.</p><p>Illan aikana luomme kineettisiä veistoksia, moniaistillisia tiloja, eläviä äänimaisemia sekä ikuistettuja performansseja. <br>Ikäsuositus: Soveltuu kaikenikäisille, lapset huoltajan seurassa</p><p>Esityksen kieli: Sanaton<br>Esityksen kesto: 120 min + alustus + loppukeskustelu. Ei väliaikaa.</p><p>Avainsanoja: rauhoittuminen, palautuminen, maadoittuminen, nukkuminen, moniaistillisuus, jaettu taidekokemus</p><p><b>Äänien ja sanojen virta</b><br>Tule kokemaan taiteen ja musiikin syvimmät sävyt! Caisan uusi ja ainutlaatuinen konsepti yhdistää musiikin, runouden ja tarinankerronnan inspiroivaksi kokonaisuudeksi, jossa ääni ja sana sulautuvat yhteen, luoden tilan herkistymiselle, oivalluksille ja tunnetiloille.</p><p>Iltojen teemoina ovat elämän eri ulottuvuudet, ilo, suru, rakkaus ja kaipuu sekä niiden virran yhteys kuulijaan. Jokainen ilta tarjoaa myös mahdollisuuden keskusteluun, jossa yleisö ja esiintyjät voivat jakaa ajatuksiaan, kokemuksiaan ja tuntemuksiaan illan teemoihin liittyen. Keskustelut avaavat uusia näkökulmia ja syventävät yhteyttä tarinoihin ja niiden herättämiin tunteisiin.</p><p>Tule ja anna musiikin ja sanojen resonoida sisimmässäsi – yhdessä luomme illan, joka jää mieleen ja koskettaa sydäntä!<br>Illat juontaa ja avaa esiintyen audiovisuaalinen taiteilija ja laulaja Oona Räyhäntausta.</p><p>Äänien ja sanojen virta odottaa sinua, varaa paikkasi ja ole osa tätä syvää taidekokemusta!</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381789/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Sömnkonsertens djupa och lugnande musik tar åhöraren in i drömmarnas värld, bortom den egna kroppen.</p><p>Temat under den första kvällen i Caisas serie Äänien ja sanojen virta och ord fokuserar på att sjunka in i drömmar och det undermedvetna. Konserten kombinerar ljudkonst och rumslig installation och gör det möjligt för deltagarna att slumra till och även falla i sömn.</p><p>Kvällens artister är ljudkonstnären och arkitekten Joonas Parviainen och bildkonstnären/designern Susse Seppälä, som är medlemmar i konstkollektivet Tuhmat.</p><p>Under kvällen skapar vi kinetiska skulpturer, multisensoriska rum, levande ljudlandskap och förevigade performancer. <br>Åldersrekommendation: Passar för alla åldrar, barn i sällskap med vårdnadshavare</p><p>Föreställningens språk: Ordlös<br>Föreställningens längd: 120 minuter + introduktion + slutdiskussion. Ingen paus.</p><p>Nyckelord: lugnande, återhämtning, grundad, sömn, multisensorisk, delad konstupplevelse</p><p><b>Äänien ja sanojen virta</b><br>Kom och upplev de djupaste nyanserna av konst och musik! Caisas nya och unika koncept kombinerar musik, poesi och berättande till en inspirerande helhet där ljud och ord smälter samman och skapar utrymme för sensibilisering, insikter och känslotillstånd.</p><p>Teman för kvällarna är livets olika dimensioner såsom glädje, sorg, kärlek och längtan samt sambandet mellan deras flöde och lyssnaren. Varje kväll erbjuder också en möjlighet till diskussion där publiken och artisterna kan dela sina tankar, erfarenheter och känslor kring kvällens teman. Diskussionerna öppnar nya perspektiv och fördjupar kontakten med berättelserna och de känslor de väcker.</p><p>Kom och låt musiken och orden resonera inom dig – tillsammans skapar vi en minnesvärd kväll som berör hjärtat!<br>Den audiovisuella konstnären och sångaren Oona Räyhäntausta är värdinna och programledare under kvällarna.</p><p>En ström av ljud och ord väntar på dig, boka din plats och bli en del av denna djupa konstupplevelse!</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381789/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>In the Sleeping Concert, deep and soothing music will take the listener into a world of dreams, beyond the body.</p><p>The theme of the first evening of Caisa’s Stream of Sounds and Words series is a descent into dreams and the subconscious. Combining sound art and a spatial installation, the concert will enable participants to doze off and even fall asleep.</p><p>The performers of the evening are sound artist and architect Joonas Parviainen and visual artist/designer Susse Seppälä, who are members of Taidekollektiivi Tuhmat.</p><p>During the evening, we will create kinetic sculptures, multi-sensory spaces, living soundscapes and immortalised performances.</p><p>Recommended age: Suitable for all ages, children accompanied by a guardian.<br>Language of the performance: Unspoken<br>Duration of the performance: 120 min + introduction + final discussion. No intermission.</p><p>Keywords: calming down, recovery, grounding, sleep, multisensuality, shared art experience</p><p><b>Stream of Sounds and Words</b><br>Come and experience the deepest shades of art and music! Caisa’s new and unique concept combines music, poetry and storytelling into an inspiring whole in which sound and words merge and create a space for sensitisation, insights and emotional states.</p><p>The themes of the evenings focus on different dimensions of life, such as joy, sorrow, love and longing, and the connection between their flow and the listener. Each evening will also provide an opportunity for discussions in which the audience and the performers can share their thoughts, experiences and feelings regarding the evening’s themes. The discussions will open up new perspectives and deepen the audience’s connection with the stories and the emotions that they evoke.</p><p>Come and let the music and words resonate within you – together we will create a memorable evening that will touch your heart!<br>The evenings will be hosted by audiovisual artist and singer Oona Räyhäntausta.</p><p>A stream of sounds and words awaits you – reserve your place and be part of this profound art experience!</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381789/?affiliate=FSF\">HERE</a></u></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66675/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66889", "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/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-3948658" }, "price": { "fi": "17-64 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490585, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-02T07:15:24.834135Z", "last_modified_time": "2025-09-02T07:15:24.834157Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776515.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490585/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-25T12:14:18.906453Z", "last_modified_time": "2025-09-02T07:15:24.903454Z", "date_published": null, "start_time": "2025-12-12T17: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, "provider_contact_info": null, "short_description": { "fi": "Legendaarinen laulaja-lauluntekijä Alejandro Escovedo saapuu vihdoin Suomeen! Yli neljä vuosikymmentä musiikkia tehnyt Escovedo yhdistää ainutlaatuisella tavalla meksikolaisiin juuriinsa rock-musiikkia, americanaa ja kantria – ja nyt legendaarista tarinankertojaa voi kuulla livenä osana Savoy & Sound Tracker Presents! -konserttisarjaa." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F88F3501D4E896B0279E5D911A9A4E6C/Savoy_Sound_Tracker_Presents_Alejandro_Escovedo_USA_" }, "location_extra_info": null, "name": { "fi": "Savoy & Sound Tracker Presents: Alejandro Escovedo (USA)" }, "description": { "fi": "<p>Legendaarinen laulaja-lauluntekijä Alejandro Escovedo saapuu vihdoin Suomeen! Yli neljä vuosikymmentä musiikkia tehnyt Escovedo yhdistää ainutlaatuisella tavalla meksikolaisiin juuriinsa rock-musiikkia, americanaa ja kantria – ja nyt legendaarista tarinankertojaa voi kuulla livenä osana Savoy & Sound Tracker Presents! -konserttisarjaa.</p><p>1970-luvun punkskenessä uransa aloittanut Escovedo on yksi harvoista artisteista, joka pystyy luontevasti yhdistämään intiimit folk-balladit, säröiset rock-kappaleet ja kulttuurillisesti latautuneet tarinat yhdeksi, tunnistettavaksi tyyliksi. Hän on tehnyt yhteistyötä mm. Bruce Springsteenin, R.E.M-yhtyeen Peter Buckin ja roots-legenda Lucinda Williamsin kanssa.</p><p>Savoy-teatterin konsertissa Escovedo esiintyy sekä soolona että Sami Yaffan kotimaisista kärkimuusikoista kokoaman yhtyeen kanssa.</p><p>Keväällä 2025 alkanut konserttisarja jatkuu syksyllä Alejandro Escovedon konsertilla. Konserttisarjan sisällön kuratoi muusikko Sami Yaffa. ”Konserttisarjan ydin on tavallaan sama kuin tv:n Sound Tracker -ohjelmissa. Toivon mukaan konsertti yllättää kuuntelijan, avaa musiikillisen oven suoraan nirvanaan ja antaa kuuntelijalle ikimuistoisen elämyksen”, Yaffa kuvailee.</p><p>Konsertin kesto n. 2,5 h, sis. väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>" }, "provider": { "fi": "Savoy-teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66889/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:agmqsk7zuy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:9/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u48040050", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:56/?format=api" } ], "created_time": "2025-09-02T06:45:00.977962Z", "last_modified_time": "2025-09-02T06:46:42.985202Z", "date_published": null, "start_time": "2025-09-11T07:10:00Z", "end_time": "2025-09-11T08:10: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": "2025-09-02T09:50:00+03:00", "enrolment_end_time": "2025-09-11T10:10:00+03:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "testing29", "sv": "", "en": "" }, "info_url": { "fi": "", "sv": "", "en": "" }, "location_extra_info": null, "name": { "fi": "testing29", "sv": "", "en": "" }, "description": { "fi": "<p>testing29</p>\n", "sv": "", "en": "" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agmqsk7zuy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66933", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3964957" }, "price": { "fi": "42,90-52,60 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490583, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-02T06:14:07.689557Z", "last_modified_time": "2025-09-02T06:14:07.689575Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776920.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490583/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-02T06:14:07.442374Z", "last_modified_time": "2025-09-02T06:14:07.854642Z", "date_published": null, "start_time": "2026-02-07T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Helsingin flamencofestivaalin pääesiintyjänä nähdään yksi flamencotanssin tämän hetken suurista nimistä, uskalias uudistaja Eduardo Guerrero. Hänen Desplante-teoksensa on kunnianosoitus Etelä-Espanjan kaivosalueiden flamencoperinteelle." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0ED97DDDA24CCC7E7EC45C798D82F10B/Desplante_-_Eduardo_Guerrero" }, "location_extra_info": null, "name": { "fi": "Desplante - Eduardo Guerrero – Helsingin XXV flamencofestivaali - XXV Festival Flamenco de Helsinki" }, "description": { "fi": "<p>Helsingin flamencofestivaalin pääesiintyjänä nähdään yksi flamencotanssin tämän hetken suurista nimistä, uskalias uudistaja Eduardo Guerrero. Hänen Desplante-teoksensa on kunnianosoitus Etelä-Espanjan kaivosalueiden flamencoperinteelle.</p><p><b>Eduardo Guerrero</b>, 42, syntyi Cádizissa ja alkoi tanssia jo lapsena. Nuorena häntä opettivat eturivin maestrot kuten Mario Maya ja Antonio Canales. Hän liittyi jo 19-vuotiaana maineikkaisiin flamencoryhmiin ja esiintyi muiden muassa Eva Yerbabuenan, Rocio Molinan ja Ballet Nacional de Españan kanssa.<br>Guerrero lähti soolo- ja koreografiuralle 2011 ja on luonut toistakymmentä kiitettyä ja kohauttanutta teosta. Hänen mukaansa tanssilla on oltava myös yhteiskunnallinen ja yhteisöllinen ulottuvuus eikä sen pidä kertoa pinnallisista tyhjänpäiväisyyksistä.<br>Kaivosalueen Cante de Las Minas -festivaaleilla 2013 taranto- ja alegrías-soolot toivat hänelle tanssin Desplante-palkinnon. (Desplante-sanan voi suomentaa vaikkapa rohkeudeksi tai uhmakkaaksi uudeksi askeleeksi.)</p><p>Helsinkiin nyt tuotava Guerreron oma Desplante-niminen teos pohjautuu noihin vuoden 2013 palkittuihin esityksiin, ja sen ensi-ilta oli Meksikossa 2015. <i>\"Mutkaton, intiimi, vahva ja dramaattinen\"</i>, sitä kuvailee taiteilijan oma sivusto.<br>Flamencon perinteiset laulutyylit, palot, ovat teoksen tukipilareita. Guerreroa säestävät upeat laulaja <b>Alicia Morales</b> ja kitaristi <b>Pino Losada</b>.</p><p>Guerreroa on luonnehdittu riskinottajaksi ja perinteitä kunnioittavaksi rajojen rikkojaksi. Hän osaa tanssia rajusti ja raastavasti mutta myös sulokkaasti.<br>Pitkäraajaisen miehen kehonkäyttöä on hämmästelty ylivertaiseksi. Guerreron teosten puvustus on aina tarkkaan mietittyä ja yllättävää.</p><p><i>\"Ei tarvitse kuin katsoa häntä kun jo aistii duenden\"</i>, kirjoittaa ExpoFlamenco-julkaisu. <i>\"Hän tanssii jokaisella huokosellaan, flamencotanssin kaikkein suurimpien vertaisella taidolla.\"</i><br>Guerreron tunnukseksi sopii eräässä hänen esityksessään laulettu säe: <i>\"Flamenco on hehkuva ahjo, joka ei koskaan sammu.\"</i></p><p>Kesto n. 80 min, ei väliaikaa</p><p>Ikärajasuositus: yli 7-vuotiaille</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>" }, "provider": { "fi": "Helsingin flamencoyhdistys ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66933/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66914", "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:613/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490508, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-25T12:14:08.317292Z", "last_modified_time": "2025-08-25T12:14:08.317311Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774922.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490508/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-25T12:14:08.226023Z", "last_modified_time": "2025-09-01T15:13:02.373546Z", "date_published": null, "start_time": "2025-10-15T15: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, "provider_contact_info": null, "short_description": { "fi": "Aleksei Zaitsev esittää romanttisia klassikoita mm. Chopiniltä ja Lisztiltä sekä valikoiman miniatyyrejä syksyisessä salonkikonsertissa." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9364096B1C884DBDA9C46C1EC6522C59/Flyygelikuu_Aleksei_Zaitsev_" }, "location_extra_info": null, "name": { "fi": "Flyygelikuu: Aleksei Zaitsev" }, "description": { "fi": "<p>Aleksei Zaitsev esittää romanttisia klassikoita mm. Chopiniltä ja Lisztiltä sekä valikoiman miniatyyrejä syksyisessä salonkikonsertissa.</p><p>Aleksei Zaitsev on yksi Suomen lupaavimmista pianisteista, joka tunnetaan dynaamisista tulkinnoistaan ja uteliaisuudestaan nykymusiikkia kohtaan.</p><p>Hänellä on useita kansainvälisiä kilpailusijoituksia sekä maisterin tutkinnot Helsingin Sibelius-Akatemiasta ja Kööpenhaminan Tanskan kuninkaallisesta musiikkiakatemiasta.</p><p>Zaitsev on ansioitunut monipuolisena esiintyjänä sekä solistina että kamarimuusikkona monissa Euroopan maissa sekä Japanissa ja Yhdysvalloissa.</p><p>Aleksei Zaitsev esittää romanttisia klassikoita mm. Chopiniltä ja Lisztiltä sekä valikoiman miniatyyrejä syksyisessä salonkikonsertissa.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66914/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66698", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1211366, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-08T13:14:18.726665Z", "last_modified_time": "2025-07-08T13:14:18.726681Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774074.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1211366/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-08T13:14:18.636525Z", "last_modified_time": "2025-09-01T15:13:02.000806Z", "date_published": null, "start_time": "2025-10-15T12: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, "provider_contact_info": null, "short_description": { "fi": "Syyslomatekemistä Tule rakentamaan kierrätysmateriaaleista oma villiin luontoon joutunut robottisi! Miten sinun robottisi sopeutuu luonnon olosuhteisiin?", "sv": "Kom och bygg din egen robot av återvunnet material. Roboten har hamnat i den vilda naturen! Hur anpassar sig din robot till förhållandena i naturen?", "en": "Come build your own robot, stranded in the wild, using recycled materials! How will your robot adapt to the natural environment?" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/914630066A19896A817ED612691B1C32/Robottipaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/914630066A19896A817ED612691B1C32/Robotsmedja", "en": "http://www.malmitalo.fi/en/events/event/914630066A19896A817ED612691B1C32/Robot_Workshop" }, "location_extra_info": null, "name": { "fi": "Robottipaja – Syysloman työpaja", "sv": "Robotsmedja – Höstlovsaktiviteter", "en": "Robot Workshop – Autumn Break Activities" }, "description": { "fi": "<p>Syyslomatekemistä Tule rakentamaan kierrätysmateriaaleista oma villiin luontoon joutunut robottisi! Miten sinun robottisi sopeutuu luonnon olosuhteisiin?</p><p>Syyslomalla Malmitalolla järjestetään maksuttomia työpajoja. Luvassa on askarreltavaa ja muuta kivaa puuhaa lapsille ja perheille. Jokaiselle työpajalle on oma teemansa, joka on inspiroitunut kyseisen päivän syyslomaleffasta.</p><p>Vapaa pääsy!</p><p>Paikka: Malmitalon parvi</p>", "sv": "<p>Kom och bygg din egen robot av återvunnet material. Roboten har hamnat i den vilda naturen! Hur anpassar sig din robot till förhållandena i naturen?</p><p>Under höstlovet ordnas avgiftsfria verkstäder i Malms kulturhus. Pyssel och andra roliga aktiviteter utlovas för barn och familjer. Varje verkstad har sitt eget tema, inspirerat av den aktuella dagens höstlovsfilm.</p><p>Fritt inträde!<br>Plats: Loftet i Malms kulturhus</p>", "en": "<p>Come build your own robot, stranded in the wild, using recycled materials! How will your robot adapt to the natural environment?</p><p>During the autumn break, free workshops will be held at Malmitalo. There will be crafts and other fun activities for children and families. Each workshop has its own theme, inspired by the autumn break film of the day.</p><p>Free entry!<br>Location: Malmitalo gallery</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66698/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66397", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@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": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1211363, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-08T13:14:17.228808Z", "last_modified_time": "2025-07-08T13:14:17.228826Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774062.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1211363/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-08T13:14:17.134640Z", "last_modified_time": "2025-09-01T15:13:01.392363Z", "date_published": null, "start_time": "2025-10-14T12: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, "provider_contact_info": null, "short_description": { "fi": "Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!", "sv": "I den andra delen av den episka animerade musikalen återvänder Vaiana och Maui för att ge sig ut tillsammans på ett ännu större äventyr!", "en": "In the epic animated musical's second instalment, Vaiana and Maui reunite for an even bigger adventure!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/20AE1EAF8D309C19E48AACDA30540FA8/Syyslomaleffa_Vaiana_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/20AE1EAF8D309C19E48AACDA30540FA8/Hostlovsfilm_Vaiana_2_7_", "en": "http://www.malmitalo.fi/en/events/event/20AE1EAF8D309C19E48AACDA30540FA8/Autumn_Break_Movie_Vaiana_2_7_" }, "location_extra_info": null, "name": { "fi": "Syyslomaleffa: Vaiana 2 (7)", "sv": "Höstlovsfilm Vaiana 2 (7)", "en": "Autumn Break Movie: Vaiana 2 (7)" }, "description": { "fi": "<p>Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!</p><p>Vaiana kuulee odottamattoman kutsun ympäri Oseaniaa purjehtineilta esi-isiltään. Siihen vastatakseen hänen on matkattava merten ääriin, tuntemattomille ja vaarallisille vesille, missä häntä odottaa seikkailu, jollaista hän ei ole vielä kuunaan kokenut.</p><p>VAIANA 2 -elokuva sisältää kohtauksia, joissa esiintyy välkkyviä valoja, jotka voivat toimia ärsykkeinä niille, jotka ovat alttiita valoherkälle epilepsialle tai muille valoherkkyysoireille.</p><p>Elokuva on puhuttu ja tekstitetty suomeksi.<br>Kesto: 1 t 40 min<br>Ikäraja: 7</p><p>Vapaa pääsy!</p>", "sv": "<p>I den andra delen av den episka animerade musikalen återvänder Vaiana och Maui för att ge sig ut tillsammans på ett ännu större äventyr!</p><p>Vaiana hör en oväntad inbjudan från sina förfäder som seglade runt Oceanien. För att svara på detta måste hon resa till havets ände, till okända och farliga vatten, där ett äventyr som hon ännu aldrig upplevt väntar på henne.</p><p>Filmen VAIANA 2 innehåller scener med blixtrande ljus som kan utgöra stimuli för dem som är mottagliga för ljuskänslig epilepsi eller andra ljuskänslighetssymtom.</p><p>Filmen är dubbad och textad på finska.<br>Längd: 1 timme 40 minuter<br>Åldersgräns: 7</p><p>Fritt inträde!</p>", "en": "<p>In the epic animated musical's second instalment, Vaiana and Maui reunite for an even bigger adventure!</p><p>Vaiana hears an unexpected call from her ancestors who once sailed across Oceania. To answer it, she must journey to the ends of the ocean, through unknown and dangerous waters, where an adventure unlike any she has faced before awaits.</p><p>VAIANA 2 contains scenes with flashing lights that may affect viewers sensitive to light-triggered epilepsy or other light sensitivities.</p><p>The film is spoken and subtitled in Finnish.<br>Duration: 1 hour 40 min<br>Age limit: 7</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66397/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 10295, "next": "