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=9&publisher_ancestor=ahjo%3A00001
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=10&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=8&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:66981", "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/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" }, "price": { "fi": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490626, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T13:14:04.670425Z", "last_modified_time": "2025-09-03T13:14:04.670443Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776930.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490626/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T13:14:04.566568Z", "last_modified_time": "2025-09-03T13:14:04.795492Z", "date_published": null, "start_time": "2025-09-25T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/18AC466BC588F0576EBD372F03A3578F/Pulpettikino_Los_Bando" }, "location_extra_info": null, "name": { "fi": "Pulpettikino: Los Bando – Rakkautta & Anarkiaa 18.–28.9.2025" }, "description": { "fi": "<p>Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.</p><p>Vauhdikkaassa koko perheen elokuvassa norjalaisbändi matkaa maan halki osallistuakseen rokkikisaan.</p><p>”Meistä tulee legendoja, me muutamme rock-musiikin pysyvästi!” Norjalaiset kaverukset Grim ja Axel ovat aina unelmoineet osallistumisesta rockin mestaruuskisoihin. Heillä on bändikin: Los Bando Immortale. Bändistä tosin puuttuu basisti, eikä Axel oikein osaa laulaakaan, mitä Grim ei raaski hänelle kertoa.</p><p>Kun kaksikolle vihdoinkin kilahtaa kutsu kisoihin Norjan Tromssaan, basisti on löydettävä hinnalla millä hyvänsä – vaikka sitten ottamalla mukaan yhdeksänvuotias sellisti Thilda. Seikkailua kohti kisoja vauhdittaa paikallisen rallikuskin Martinin palkkaaminen kolmikon autokuskiksi, ja pian hurjastellaankin asuntoautolla pitkin Norjaa sekä poliisit että vanhemmat kintereillä. Ehtiikö bändi ajoissa kisoihin, ja pysyykö Axel nuotissa? Entä mikä on Martinin salaisuus?</p><p>Christian Lon ohjaama nuorisoelokuva Los Bando on vauhdikas ja humoristinen road movie unelmista, ystävyydestä ja ennen kaikkea rakkaudesta musiikkiin.</p><p>Veera Kotila, R&A 2018</p><p>Ohjaus Christian Lo<br>Näyttelijät Tage Johansen Hogness, Jakob Dyrud, Jonas Hoff Oftebro, Tiril Marie Høistad Berger<br>Maa Norja, Ruotsi<br>Kielet norja<br>Tekstitykset suomi<br>Ikäraja K12<br>Kesto 94 min<br>Teema Feel the Beat!<br>Avainsanat Musiikki, Koko perheelle, Huumori, Feelgood, Matka, Ystävyys, Nuoruus, Tekstitetty/puhuttu suomeksi</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66981/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66979", "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/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" }, "price": { "fi": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490625, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T13:14:04.347104Z", "last_modified_time": "2025-09-03T13:14:04.347124Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776929.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490625/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T13:14:04.256780Z", "last_modified_time": "2025-09-03T13:14:04.468249Z", "date_published": null, "start_time": "2025-09-25T06: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": "Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/8DDF7225750FA62F67FDE6086AC9EBA2/Pulpettikino_Heinahattu_Vilttitossu_ja_kana" }, "location_extra_info": null, "name": { "fi": "Pulpettikino: Heinähattu, Vilttitossu ja kana – Rakkautta & Anarkiaa 18.–28.9.2025" }, "description": { "fi": "<p>Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.</p><p>Ohjaus Reetta Aalto<br>Näyttelijät Eedla Höglund, Klaara Höglund, Niina Lahtinen, Pirjo Heikkilä, Krisse Salminen<br>Maa Suomi<br>Kielet suomi<br>Ikäraja S<br>Kesto 77 min<br>Teema Pulpettikino</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66979/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66980", "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/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" }, "price": { "fi": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490624, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T13:14:03.589809Z", "last_modified_time": "2025-09-03T13:14:03.589827Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776926.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490624/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T13:14:03.497232Z", "last_modified_time": "2025-09-03T13:14:03.733679Z", "date_published": null, "start_time": "2025-09-24T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/50E3654B86EECC7BA6F939FFC794121B/Pulpettikino_Biru_Unj_rga_Fucking_Uuniemi" }, "location_extra_info": null, "name": { "fi": "Pulpettikino: Biru Unjárga – Fucking Uuniemi – Rakkautta & Anarkiaa 18.–28.9.2025" }, "description": { "fi": "<p>Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.</p><p>Pohjois-Norjaan sijoittuvan tarinan keskiössä on saamelaisteini Elvira. Tytölle on uskoteltu, että hänen äitinsä hedelmöitettiin tanskalaisella klinikalla, mutta sitten paikalle ilmaantuu tytön oikea isä. Elviran maailma muuttuu pysyvästi.</p><p>Ohjaus Egil Pedersen<br>Näyttelijät Sarah Olaussen Eira, Ingá Elisá Påve Idivuoma, Aslat Mahtte Gaup, Amund Lode, Ánne Mággá Wigelius<br>Maa Norja, Ruotsi, Suomi<br>Kielet North Sámi, norja, englanti, tanska<br>Tekstitykset suomi, ruotsi<br>Ikäraja K12<br>Kesto 78 min<br>Teema Pulpettikino</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66980/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66978", "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/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" }, "price": { "fi": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490623, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T13:14:03.184663Z", "last_modified_time": "2025-09-03T13:14:03.184681Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776925.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490623/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T13:14:03.072331Z", "last_modified_time": "2025-09-03T13:14:03.330699Z", "date_published": null, "start_time": "2025-09-24T06: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": "Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CB7DF7A5021B35B18359A9489DEEE661/Pulpettikino_Heinahattu_Vilttitossu_ja_kana" }, "location_extra_info": null, "name": { "fi": "Pulpettikino: Heinähattu, Vilttitossu ja kana – Rakkautta & Anarkiaa 18.–28.9.2025" }, "description": { "fi": "<p>Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.</p><p>Ohjaus Reetta Aalto<br>Näyttelijät Eedla Höglund, Klaara Höglund, Niina Lahtinen, Pirjo Heikkilä, Krisse Salminen<br>Maa Suomi<br>Kielet suomi<br>Ikäraja S<br>Kesto 77 min<br>Teema Pulpettikino</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66978/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66756", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/" }, "price": { "fi": "14€", "sv": "14€", "en": "14€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1256360, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-14T11:14:15.528483Z", "last_modified_time": "2025-07-14T11:14:15.528522Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774908.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1256360/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-14T11:14:15.429944Z", "last_modified_time": "2025-09-03T13:14:02.290276Z", "date_published": null, "start_time": "2025-09-20T15: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": "R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!", "sv": "R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!", "en": "This year, L&A festival film screenings will also be held at Vuotalo!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CA5E0AC294ABA09FCAC546FC02270DCF/Walls_Akinni_Inuk_K12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CA5E0AC294ABA09FCAC546FC02270DCF/Rakkautta_ja_Anarkiaa_x_Vuotalo_", "en": "http://www.vuotalo.fi/en/events/event/CA5E0AC294ABA09FCAC546FC02270DCF/Love_Anarchy_x_Vuotalo_" }, "location_extra_info": null, "name": { "fi": "Walls – Akinni Inuk (K12) – Rakkautta ja Anarkiaa x Vuotalo!", "sv": "Rakkautta ja Anarkiaa x Vuotalo! – Rakkautta ja Anarkiaa x Vuotalo!", "en": "Love & Anarchy x Vuotalo! – Rakkautta ja Anarkiaa x Vuotalo!" }, "description": { "fi": "<p>R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!</p><p>Walls – Akinni Inuk (K12)</p><p>R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!</p><p>Vanki ja elokuvantekijä solmivat siteen Grönlannin naisten vankilassa. Tämä intiimi dokumenttielokuva tutkii trauman, toivon ja uusien alkujen mahdollisuutta.</p><p>Liput: 14 eur <br>Kesto: 1h15 <br>Kieli: grönlannin kieli <br>Tekstitykset: Englanti <br>Ohjaajat: Nina Paninnguaq Skydsbjerg, Sofie Rørdam</p><p>**</p><p>Festivaaliohjelmistossa nähdään vuoden kauneimmat, hurjimmat ja tuoreimmat elokuvahelmet. <br> <br>Rakkautta & Anarkiaa -elokuvafestivaali järjestetään 18.–28.9.2025 Helsingin elokuvateattereissa ja Vuotalossa. <br> hiff.fi</p>", "sv": "<p>R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!</p><p>Festivalprogrammet innehåller årets vackraste, vildaste och mest fräscha filmpärlor.</p><p>Programmet publiceras tisdagen den 2 september och biljetterna släpps till försäljning torsdagen den 4 september på festivalens webbplats på adressen hiff.fi</p><p>Filmfestivalen Rakkautta & Anarkiaa äger rum 18–28 september 2025 på Helsingfors biografer och Nordhuset.</p>", "en": "<p>This year, L&A festival film screenings will also be held at Vuotalo!</p><p>The festival programme features the most beautiful, wildest and freshest film gems of the year.</p><p>The programme will be announced on Tuesday 2 September and tickets will go on sale on Thursday 4 September on the festival website at hiff.fi</p><p>The Love & Anarchy Film Festival will take place from 18 to 28 September 2025 at the cinemas of Helsinki and Vuotalo.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66756/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66385", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1171714, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-03T12:14:06.773581Z", "last_modified_time": "2025-07-03T12:14:06.773606Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773856.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1171714/?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-03T12:14:06.664635Z", "last_modified_time": "2025-09-03T13:14:01.501925Z", "date_published": null, "start_time": "2025-09-19T15:00:00Z", "end_time": "2025-09-19T17:30: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": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.", "en": "Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CB8D81E420C933F72A85EC325D450950/Global_Club_Nights_Sofra_El_Doxa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CB8D81E420C933F72A85EC325D450950/Global_Club_Nights_Sofra_El_Doxa", "en": "http://www.kanneltalo.fi/en/events/event/CB8D81E420C933F72A85EC325D450950/Global_Club_Nights_Sofra_El_Doxa" }, "location_extra_info": null, "name": { "fi": "Global Club Nights: Sofra & El_Doxa – Global Club Nights", "sv": "Global Club Nights: Sofra & El_Doxa – Global Club Nights", "en": "Global Club Nights: Sofra & El_Doxa – Global Club Nights" }, "description": { "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Kanneltalossa klubeja järjestetään syksyn 2025 aikana kahtena iltana. Ensimmäisessä klubi-illassa 19.9. esiintyvät Sofra ja El_Doxa.</p><p>Toinen klubi-ilta järjestetään 7.11. yhteistyössä Etnosoi! festivaalin kanssa, jolloin esiintyvät The Pan-African Ensemble ja toinen festivaalin artistivieras, joka varmistuu myöhemmin.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Aloitetaan viikonloppu yhdessä!</p><p><b>Sofra</b><br>Me olemme Melisa, Hadi ja Merve – kolmikko, jonka tavoitteena on kehittää musiikillinen ”Sofra” eli Syyrian, Turkin ja Kosovon alueiden melodioita ja tarinoita yhteenkokoava ”ruokapöytä”. Sofra tarkoittaa arabian, turkin ja monen Balkanin maan kielellä ruokapöytää ja symboloi vieraanvaraisuutta, yhteenkuuluvuuden tunnetta ja kulttuurin jakamista.</p><p>Projektimme tutkii näiden maiden rikasta musiikkiperintöä keskittyen niiden melodioihin sekä maiden välisiin historiallisiin ja kulttuurisiin risteyskohtiin. Tavoitteenamme on tämän työn kautta juhlistaa ja vaalia jaettuja perinteitä ja tehdä samalla tilaa vuoropuhelulle, yhteenkuuluvuudelle ja ilolle.</p><p>Melisa Yıldırım – laulu & kamanja<br>Hadi Hrekes – laulu & lyömäsoittimet<br>Merve Abdurrahmani – laulu & piano</p><p><b>El_Doxa-yhtye ja highlife-musiikki</b><br>Highlife on Nigeriasta ja Ghanasta peräisin oleva musiikkilaji. El_Doxa on kuuden nigerialaisen muodostama yhtye, joka vaalii nigerialaisen musiikin rytmisistä ja melodisista juurista kumpuavia vaikutteita ja ilmaisutapoja.</p><p>Soittolista on tarkoituksella laadittu jaettavaksi koko yhteisön kanssa ja tuomaan ihmisiä yhteen, jotta kaikki voivat juhlistaa taidetta ja musiikkia yhdessä.</p><p>Kappaleiden sanoituksissa on käytetty monipuolisesti Nigerian eri osissa puhuttavia kieliä. Yleisön osallistamiseksi musiikkiin myös sanoitusten kautta jotkut kappaleet ovat englanniksi tai niissä käytetään afrikkalaisten puhumaa puhekielistä englantia, joka muiden maiden näkökulmasta on pidginiä.</p>", "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p>I Gamlasgården ordnas klubben två kvällar under hösten 2025. På den första klubbkvällen 19.9. framträder Sofra och El_Doxa. <br>Den andra klubbkvällen ordnas 7.11. i samarbete med Etnosoi! Festival och då framträder The Pan-African Ensemble och en annan av festivalens artistgäster, som bekräftas senare.</p><p>De avgiftsfria klubbkvällarna börjar tidigt, så barn är också välkomna i sällskap av en vuxen. Låt oss inleda veckoslutet tillsammans!</p><p><b>Sofra</b><br>Vi är Melisa, Hadi och Merve – en trio som vill bygga ett musikaliskt ”Sofra”, ett gemensamt bord av melodier och berättelser som förenar Syrien, Turkiet och Kosovo. På arabiska, turkiska och många balkanspråk syftar sofra på ett middagsbord och symboliserar gästfrihet, gemenskap och en gemensam kultur.</p><p>Vårt projekt utforskar de här ländernas rika musikaliska arv, och fokuserar på deras melodier och de musikaliska och kulturella kopplingarna mellan dem. Genom vårt arbete vill vi uppmärksamma och bevara de gemensamma traditionerna samtidigt som vi skapar utrymme för dialog, enighet och glädje.</p><p>Melisa Yıldırım – sång & kamancha<br>Hadi Hrekes – sång & slagverk<br>Merve Abdurrahmani – sång & piano</p><p><b>El_Doxa och Highlife musik</b><br>Highlife är en musikgenre från Nigeria och Ghana, och El_Doxa är ett band med sex nigerianska medlemmar som uppskattar influenser och rytmer från den nigerianska musikens rytmiska och melodiska rötter.</p><p>Låtarna har medvetet valts med tanke på integration och en viljan att hylla konsten och musiken för och tillsammans med alla.<br>Vi får höra olika språk i låtar från olika delar av Nigeria, och för att publiken ska kunna delta och relatera till låtarna utöver det rent musikaliska är en del låtar också på engelska och afrikansk pidgin-engelska.</p>", "en": "<p>Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music.</p><p>Kanneltalo will host the club on two evenings during the autumn of 2025. The first club night on 19th September will feature Sofra and El_Doxa.</p><p>The second club night will take place on 7th November, with performances by The Pan-African Ensemble and another of the festival's guest artists, who will be confirmed later.</p><p><b>Sofra</b><br>We are Melisa, Hadi and Merve—a trio dedicated to building a musical \"Sofra\", a shared table of melodies and stories that bridge the regions of Syria, Turkey and Kosovo. In Arabic, Turkish, and many Balkan languages, sofra refers to a dining table, symbolizing hospitality, togetherness, and the sharing of culture.</p><p>Our project explores the rich musical heritage of these lands, focusing on their melodies and the historical and cultural intersections between them. Through this work, we aim to celebrate and preserve shared traditions while creating a space for dialogue, unity and joy.</p><p>Melisa Yıldırım – voice & kamancha<br>Hadi Hrekes – voice & percussion<br>Merve Abdurrahmani – voice & piano</p><p><b>El_Doxa and Highlife music</b><br>Highlife is a genre of music from Nigeria and Ghana, and as a band of people from Nigeria, El_Doxa band is a band of six people from Nigeria who appreciates the influence and expressions from the rhymthic and melodic root of Nigeria music.</p><p>The choice of song selections is intentionally sculpted for integration and sharing to all community to celebrate art and music with everyone and for everyone.</p><p>Served with the diverse language infused in songs from different part of Nigeria, and for popular participations some are music in English and colloquial English of Africans which is pidgin for other countries for Africa to also relate with the music beyond the musicals.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66385/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66392", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?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": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1170714, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-03T09:12:37.275269Z", "last_modified_time": "2025-07-03T09:12:37.275283Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774010.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1170714/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-03T09:12:37.194119Z", "last_modified_time": "2025-09-03T12:14:02.144807Z", "date_published": null, "start_time": "2025-10-14T15: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": "The Legend of Ochi on lumoava fantasiaelokuva ennakkoluuloja rikkovasta ystävyydestä nuoren tytön ja pelätyn olennon Ochin välillä.", "sv": "The Legend of Ochi är en förtrollande fantasyfilm om den fördomsfria vänskapen mellan en ung flicka och den fruktade varelsen Ochi.", "en": "The Legend of Ochi is a captivating fantasy film about an unconventional friendship between a young girl and a feared creature known as an ochi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/019F4A9139B0B885B116BCEFF8ADC742/Jassari-leffa_Legend_of_Ochi", "sv": "http://www.malmitalo.fi/sv/evenemang/event/019F4A9139B0B885B116BCEFF8ADC742/Jassari-leffa_Legend_of_Ochi", "en": "http://www.malmitalo.fi/en/events/event/019F4A9139B0B885B116BCEFF8ADC742/Jassari-leffa_Legend_of_Ochi" }, "location_extra_info": null, "name": { "fi": "Jässäri-leffa: Legend of Ochi – Valtuusto 150v", "sv": "Jässäri-leffa: Legend of Ochi – Valtuusto 150v", "en": "Jässäri-leffa: Legend of Ochi – Valtuusto 150v" }, "description": { "fi": "<p>The Legend of Ochi on lumoava fantasiaelokuva ennakkoluuloja rikkovasta ystävyydestä nuoren tytön ja pelätyn olennon Ochin välillä.</p><p>The Legend of Ochi on lumoava fantasiaelokuva ennakkoluuloja rikkovasta ystävyydestä nuoren tytön ja pelätyn olennon, ochin, välillä.</p><p>Kaukaisessa kylässä nuori Yuri on koko elämänsä ajan oppinut pelkäämään pimeyttä ja metsän varjoissa vaanivia petoja – ocheja. Mutta kun haavoittunut ochin poikanen eksyy laumastaan, Yuri ei voi kääntää sille selkäänsä. Hän päättää uhmata kyläläisten varoituksia ja isänsä kieltoja ja lähtee vaaralliselle matkalle palauttaakseen olennon kotiinsa – vaikka se saattaisi muuttaa kaiken, mihin hän on koskaan uskonut.</p><p>Elokuvan pääosissa nähdään nuori Helena Zengel Yurina, hänen isänään Maxina Willem Dafoe, erakoituneena äitinä Emily Watson sekä Finn Wolfhard.</p><p>Kesto: 1 tunti 36 min<br>Kieli englanti, tekstitys suomi<br>Ikäraja: 12</p><p>Elokuvanäytös on suunnattu ainoastaan yli 12-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-20296572/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>The Legend of Ochi är en förtrollande fantasyfilm om den fördomsfria vänskapen mellan en ung flicka och den fruktade varelsen Ochi.</p><p>I den avlägsna byn där unga Yuri bor har hon i hela sitt liv lärt sig att frukta mörkret och de odjur som lurar i skogens skuggor – ochis. Men när en skadad Ochi-unge tappar bort sig från sin flock kan Yuri inte vända den ryggen. Hon bestämmer sig för att trotsa bybornas varningar och sin fars förbud och ger sig ut på en farlig resa för att föra tillbaka varelsen till sitt hem – även om det kan förändra allt hon någonsin har trott på.</p><p>I huvudrollerna ses den unga Helena Zengel Yurina, hennes far Maxina Willem Dafoe, hennes Emily Watson som blivit enstöring, samt Finn Wolfhard.</p><p>Längd: 1 timme 36 minuter<br>Åldersgräns: 12</p><p>Filmvisningen riktar sig endast till ungdomar över 12 år som har Jässari-kortet.</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-20296572/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>The Legend of Ochi is a captivating fantasy film about an unconventional friendship between a young girl and a feared creature known as an ochi.</p><p>In a remote village, young Yuri has spent her whole life learning to fear the darkness and the predators lurking in the forest shadows – the ochis. But when a wounded baby ochi gets separated from its pack, Yuri cannot turn her back on it. She decides to defy the villagers' warnings and her father's orders, embarking on a dangerous journey to return the creature to its home – even if it changes everything she has ever believed.</p><p>The film stars young Helena Zengel as Yuri, Willem Dafoe as her father Max, Emily Watson as her reclusive mother and Finn Wolfhard.</p><p>Duration: 1 hour 36 min<br>Age limit: 12</p><p>The screening is only intended for young people over 12 years of age who have a Jässäri card.</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-20296572/?affiliate=FSF\">HERE</a></u></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66392/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66976", "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": 1490622, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T12:13:58.299379Z", "last_modified_time": "2025-09-03T12:13:58.299396Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776940.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490622/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T12:13:58.189118Z", "last_modified_time": "2025-09-03T12:13:58.434801Z", "date_published": null, "start_time": "2025-09-27T17: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": "Rakkauden ja anarkian ryydittämä thaimaalaiselokuva on kuin imuri, joka on niellyt genren toisensa perään yskiäkseen ulos kostonhimoisen kauhukomedian ja kiimaisen kummitusromanssin mutaation.", "en": "Fueled by love and anarchy, this Thai film is like a vacuum cleaner that’s swallowed genre after genre – only to cough up a vengeful horror comedy and a lustful ghost romance hybrid." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/773EEFA597CEBA00F7588EABEA5531CC/A_Useful_Ghost", "en": "http://www.savoyteatteri.fi/en/events/event/773EEFA597CEBA00F7588EABEA5531CC/A_Useful_Ghost" }, "location_extra_info": null, "name": { "fi": "A Useful Ghost – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "A Useful Ghost – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>Rakkauden ja anarkian ryydittämä thaimaalaiselokuva on kuin imuri, joka on niellyt genren toisensa perään yskiäkseen ulos kostonhimoisen kauhukomedian ja kiimaisen kummitusromanssin mutaation.</p><p>On vaikea kuvitella elokuvaa, joka sykkisi thaimaalaista A Useful Ghostia intensiivisemmin R&A:n henkeä.</p><p>Imuritehtaan omistajaperheen ympärille alkaa rakentua työntekijän kuoleman seurauksena monikerroksinen saaga täynnä erilaisia laitteita asuttavia haamuja, jotka ovat palanneet elävien pariin palavan rakkauden tai kytevän koston ajamina. Keskiöön kohoaa perheen pojan Marchin ja hänen imuria asuttavan kummitusvaimonsa Natin hellyttävä rakkaustarina. Perheen ja ympäröivän yhteiskunnan jäykät käsitykset rakkaudesta ovat kovilla Marchin löytyessä milloin mistäkin imurin kanssa muhinoimasta.</p><p>Buddhalaisen henkimaailman ja riistokapitalismin yhteentörmäyksestä rauhallisesti hupsuna kauhukomediana liikkeelle lähtevä kertomus kasvaa vähitellen kiimaiseksi kummitusromanssiksi, joka saavuttaa lopulta kiihkeän kostoelokuvan sykkeen.</p><p>Audiovisuaalisen hykerryttävyyden ja kerronnallisten sävyjen kirjon taustalla lymyää kuitenkin syviä pohdintoja rakkaudesta ja himosta, katkeruudesta ja kuolemasta sekä niiden typistävää hyötyajattelua vastustavasta vallankumouksellisesta voimasta.</p><p>Tämä rakkauden ja anarkian ryydittämä genrerunsaudensarvi on kuin tehty nautittavaksi intohimoisen R&A-yleisön ympäröimänä!</p><p>Pöly Julkunen</p><p>Ohjaus Ratchapoom Boonbunchachoke<br>Näyttelijät Davika Hoorne, Witsarut Himmarat, Apasiri Nitibhon, Wanlop Rungkumjad, Wisarut Homhuan<br>Maa Thaimaa, Singapore, Saksa, Ranska<br>Kielet thai<br>Tekstitykset englanti<br>Ikäraja K12<br>Kesto 130 min<br>Teema Asian Cuts<br>Avainsanat Outoa, Huumori, Jännitys, Kauhu, Rakkaus, Fantasia</p>", "en": "<p>Fueled by love and anarchy, this Thai film is like a vacuum cleaner that’s swallowed genre after genre – only to cough up a vengeful horror comedy and a lustful ghost romance hybrid.</p><p>Few films capture the spirit of Love & Anarchy more vividly than the Thai film A Useful Ghost.</p><p>Following the death of a factory worker, a multi-layered saga begins to unfold around the family that owns a vacuum cleaner factory. The story is filled with ghosts who inhabit machines, returning to the living fueled by passionate love or smoldering revenge. The plot revolves around the tender love story between the family’s son March and Nat, his ghostly wife who inhabits a vacuum cleaner. The rigid views on love held by the family and the surrounding society are put to the test when March is found romancing the vacuum cleaner in various places.</p><p>Starting as a silly horror comedy about the clash between the Buddhist spiritual world and exploitative capitalism, the story gradually develops into a passionate ghost romance, eventually reaching the intensity of a revenge film. Behind the audiovisual whimsy and narrative tones lie profound reflections on love and lust, bitterness and death, and the revolutionary force opposing a narrow, profit-driven mindset.</p><p>Brimming with love and anarchy, this cornucopia of genres seems made to be savoured among the passionate R&A audience!</p><p>Pöly Julkunen (translated by Pauliina Jännes)</p><p>Director Ratchapoom Boonbunchachoke<br>Starring Davika Hoorne, Witsarut Himmarat, Apasiri Nitibhon, Wanlop Rungkumjad, Wisarut Homhuan<br>Country Thailand, Singapore, Germany, France<br>Languages Thai<br>Subtitles English<br>Age limit K12<br>Duration 130 min<br>Theme Asian Cuts<br>Keywords Weird, Humour, Thriller, Horror, Love, Fantasy</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:66976/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66975", "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": 1490621, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T12:13:57.768974Z", "last_modified_time": "2025-09-03T12:13:57.768992Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776939.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490621/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T12:13:57.649319Z", "last_modified_time": "2025-09-03T12:13:57.909996Z", "date_published": null, "start_time": "2025-09-27T14: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": "Visuaalisesti hengästyttävässä fantasmagoriassa ihmiset eivät enää näe unia, mutta yksi olento jatkaa uneksimista. Nainen astuu olennon uniin ja alkaa selvittää totuutta.", "en": "This visually breathtaking, phantasmagoric tale depicts a humanity that has abandoned dreams—but one creature dares to dream on. A woman enters its dreams to uncover the truth." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1074415AAE952E928B41C640BC6D7BEE/Resurrection", "en": "http://www.savoyteatteri.fi/en/events/event/1074415AAE952E928B41C640BC6D7BEE/Resurrection" }, "location_extra_info": null, "name": { "fi": "Resurrection – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Resurrection – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>Visuaalisesti hengästyttävässä fantasmagoriassa ihmiset eivät enää näe unia, mutta yksi olento jatkaa uneksimista. Nainen astuu olennon uniin ja alkaa selvittää totuutta.</p><p>Ihmiskunta on tajunnut unelmoinnin lopettamisen johtavan kuolemattomuuteen: sytyttämättömät kynttilät kestävät ikuisesti. Jotkut haluavat silti polttaa itsensä loppuun, eläen lyhyen mutta säihkyvän elämän. Erään uneksivan olennon kuvitelmat horjuttavat todellisuuden rakennetta, kunnes illuusioiden läpi näkevä hahmo astuu niiden sisään etsimään totuutta.</p><p>Kiinalainen kokeellisen elokuvan ihmelapsi Bi Gan (Long Day’s Journey into Night, 2018) kuvasi elokuvaansa vielä kuukausi ennen ja palautti valmiin leikkauksen vasta päiviä ennen kuin se voitti Cannesissa tuomariston Prix Spécial -erikoispalkinnon. Yli kaksituntinen spektaakkeli kulkee läpi ihmisen viiden aistin jokaisen osion rakentuessa erilaisen elokuvallisen kielen ympärille. Hypnoottisista taustasävelistä vastaa ranskalainen elektroninen duo M83.</p><p>Elokuvateoreetikot huomasivat jo aikaa sitten, että unien näkeminen muistuttaa kovin paljon elokuvankatselua. Tuskin koskaan on elokuva kuitenkaan päässyt näin lähelle kahden yhdistämistä: Resurrection seuraa kuumeunen logiikkaa tuntuen samanaikaisesti järjettömältä sekä johdonmukaiselta. Elokuvahistorian uumenista nousevat motiivit katoavat yhtä nopeasti kuin ilmestyvätkin. Harvassa elokuvassa saksalaisen ekspressionismin varjot kohtaavat kiinalaisen symboliikan tai tarkovskylaisen runollisuuden.</p><p>Resurrection on oodi seitsemännelle taiteelle, mutta tekee myös selväksi, ettei paluuta vanhaan ole. Zeitgeistin tavoin se kurottaa nykyhetkestä Lumièreen muistuttaen, ettei elokuvaa ole tehty selitettäväksi, vaan koettavaksi. Sekä itkettävän kaunis avausjakso että ohjaajan bravuureihin kuuluva liki 40 minuuttinen yhden oton loppukohtaus nousevat viime vuosien vaikuttavimpien joukkoon.</p><p>Elias Jurvanen</p><p>Ohjaus Bi Gan<br>Näyttelijät Jackson Yee, Shu Qi, Mark Chao, Gengxi Li, Jue Huang<br>Maa Kiina, Ranska, Yhdysvallat<br>Kielet mandariinikiina<br>Tekstitykset englanti<br>Ikäraja K16<br>Kesto 160 min<br>Teema Avainelokuvat<br>Avainsanat Festarihitti, Outoa, Kokeellinen, Fantasia, Sci-fi</p>", "en": "<p>This visually breathtaking, phantasmagoric tale depicts a humanity that has abandoned dreams—but one creature dares to dream on. A woman enters its dreams to uncover the truth.</p><p>Humanity has realised that giving up dreaming leads to immortality: unlit candles last forever. Some still want to burn themselves out, living short but dazzling lives. The delusions of one such creature shake the foundations of reality, until a character who sees through the illusion steps inside to uncover the truth.</p><p>Chinese experimental film prodigy Bi Gan (Long Day’s Journey into Night, 2018) was still shooting his film a month before and returned the finished cut only days before it won the Prix Spécial at Cannes. The more than two-hour spectacle takes the viewer through the five human senses, with each section told in a different cinematic language. The French electronic duo M83 provides a hypnotic soundtrack.</p><p>Film theorists noted the similarities between dreaming and watching movies a long time ago. Hardly ever has a film come this close to combining the two: Resurrection follows the logic of a fever dream, feeling both absurd and coherent at the same time. Motifs rising from the depths of film history disappear as quickly as they appear; German expressionism meets Chinese symbolism and Tarkovsky-esque poetry.</p><p>Resurrection is an ode to the seventh art, but also makes it clear there is no going back. Like the Zeitgeist, it reaches from the present all the way to Lumière, reminding us that cinema is not meant to be explained but experienced. Both the touchingly beautiful opening sequence and the director’s bravura nearly 40 minute single-take finale are among the most impressive of recent years.</p><p>Elias Jurvanen</p><p>Director Bi Gan<br>Starring Jackson Yee, Shu Qi, Mark Chao, Gengxi Li, Jue Huang<br>Country China, France, United States<br>Languages Mandarin Chinese<br>Subtitles English<br>Age limit K16<br>Duration 160 min<br>Theme Spotlight Selection<br>Keywords Festival hit, Weird, Experimental, Fantasy, Sci-fi</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:66975/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66974", "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": 1490620, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T12:13:57.386980Z", "last_modified_time": "2025-09-03T12:13:57.386997Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776938.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490620/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T12:13:57.275582Z", "last_modified_time": "2025-09-03T12:13:57.527841Z", "date_published": null, "start_time": "2025-09-27T12: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": "R&A-suosikki Kelly Reichardtin 70-luvulle sijoittuvassa, ironisesti nimetyssä rötöskomediassa Josh O'Connor hurmaa maailman huonoimpana taidevarkaana.", "en": "R&A favourite Kelly Reichardt’s ironically titled crime comedy set in the 1970s stars Josh O’Connor as the world’s worst art thief." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D3FDD1C37CD3CB5E66054B51872F9CF6/The_Mastermind", "en": "http://www.savoyteatteri.fi/en/events/event/D3FDD1C37CD3CB5E66054B51872F9CF6/The_Mastermind" }, "location_extra_info": null, "name": { "fi": "The Mastermind – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "The Mastermind – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>R&A-suosikki Kelly Reichardtin 70-luvulle sijoittuvassa, ironisesti nimetyssä rötöskomediassa Josh O'Connor hurmaa maailman huonoimpana taidevarkaana.</p><p>R&A-yleisö on vuosien varrella lumoutunut amerikkalaisen indien suurmestarin Kelly Reichardtin lämpimistä, leppoisista ja liikuttavista elokuvista: muun muassa kuvataiteen maailmaan sukeltava Showing Up, historiallinen kaverikertomus First Cow ja naiskuvakokoelma Certain Women ovat löytäneet festivaalilla intohimoiset faninsa. Reichardtin ystäviä hemmotellaan tällä kertaa taidemaailman laitamille vievällä, Cannesin pääsarjassa ensi-iltansa saaneella uutuudella The Mastermind, jonka pääosassa huimassa nosteessa oleva Josh O’Connor (Challengers, La Chimera – sielujen aarteet) nähdään maailman kehnoimman taidevarkaan roolissa.</p><p>The Mastermind on takuuvarmasti vuoden rennoin rikoselokuva: O’Connorin tulkitsema JB on joutilas kaveri, joka vaimoltaan Terriltä (Alana Haim) ja lapsiltaan salassa suunnittelee ei-niin-merkittävän taidekokoelman ryöstöä paikallisesta taidemuseosta. Apunaan hänellä on sekalainen joukko keikalle värväämiään alamaailman edustajia. Kun ryöstö yllättäen ei suju suunnitelmien mukaan, poliisit ovat pian kotitalon ovella – onneksi JB:n isä on korkeassa asemassa oleva syyttäjä.</p><p>Reichardt tekee lempeällä otteellaan pilkkaa etuoikeutetun valkoisen miehen toikkaroinnista ja ottaa kaiken ilon irti pieleen menevän ryöstön kuvauksesta. 70-luvun Massachusettsiin vievä tarina saa taustalleen jazzahtavan soundtrackin.</p><p>Inari Ylinen</p><p>Ohjaus Kelly Reichardt<br>Näyttelijät Josh O'Connor, Alana Haim, John Magaro, Hope Davis, Bill Camp<br>Maa Yhdysvallat<br>Kielet englanti<br>Ikäraja K7<br>Kesto 110 min<br>Teema Avainelokuvat<br>Avainsanat Taide, Rikos, Huumori, Feelgood, Matka, Festarihitt</p>", "en": "<p>R&A favourite Kelly Reichardt’s ironically titled crime comedy set in the 1970s stars Josh O’Connor as the world’s worst art thief.</p><p>Over the years, the R&A audience has been enchanted by the warm, laid-back, and moving films of American indie master Kelly Reichardt. Works like Showing Up, which dives into the world of visual arts, the historical buddy tale First Cow, and the female portrait collection Certain Women have all found passionate fans at the festival. This time, Reichardt’s admirers are treated to The Mastermind, a new film set on the fringes of the art world that premiered in the main competition at Cannes. In the lead role is the rapidly rising star Josh O’Connor (Challengers, La Chimera), playing the world’s worst art thief.</p><p>The Mastermind is undoubtedly the most easygoing crime film of the year: O’Connor’s character JB is an idle guy who, unbeknownst to his wife Terri (Alana Haim) and kids, is planning the theft of a not-so-important art collection from the local art museum. Helping him is a motley crew of underworld figures he’s recruited for the job. But when the heist doesn’t go as planned, the police are soon knocking at his door—luckily, JB’s father is a high-ranking prosecutor.</p><p>With her trademark gentle touch, Reichardt pokes fun at the bumbling of a privileged white man and fully embraces the comedy of a failed heist. The story, set in 1970s Massachusetts, is accompanied by a jazzy soundtrack.</p><p>Inari Ylinen</p><p>Director Kelly Reichardt<br>Starring Josh O'Connor, Alana Haim, John Magaro, Hope Davis, Bill Camp<br>Country United States<br>Languages English<br>Age limit K7<br>Duration 110 min<br>Theme Spotlight Selection<br>Keywords Art, Crime, Humour, Feelgood, Journey, Festival hit</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:66974/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66973", "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": 1490619, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T12:13:56.872138Z", "last_modified_time": "2025-09-03T12:13:56.872155Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776937.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490619/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T12:13:56.762606Z", "last_modified_time": "2025-09-03T12:13:57.008294Z", "date_published": null, "start_time": "2025-09-27T10: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": "Surrealistisessa ja kaurismäkeläisessä tragikomediassa ratsastaja pakenee Buenos Airesin kaduille arvohevosen kuoleman aiheuttaneen onnettomuuden jälkeen.", "en": "In this surreal and Kaurismäki-esque tragicomedy, a jockey flees through the streets of Buenos Aires after an accident that caused the death of a prized horse." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A4D8020B42804CBB042C66D6F8E36DD4/Kill_the_Jockey", "en": "http://www.savoyteatteri.fi/en/events/event/A4D8020B42804CBB042C66D6F8E36DD4/Kill_the_Jockey" }, "location_extra_info": null, "name": { "fi": "Kill the Jockey – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Kill the Jockey – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>Surrealistisessa ja kaurismäkeläisessä tragikomediassa ratsastaja pakenee Buenos Airesin kaduille arvohevosen kuoleman aiheuttaneen onnettomuuden jälkeen.</p><p>Terävästi rakennettu ja riemastuttavan rienaava tragikomedia Kill the Jockey tasapainoilee pelottomalla tarkkuudella absurdin ja katastrofin rajoilla. Lynchiläisessä maailmassa, jossa aika ja tila vaikuttavat hiljalleen sulavan, elokuva nivoo yhteen kummia unia, eksentrisiä hahmoja ja vilauksia poissa raiteiltaan olevasta Buenos Airesista.</p><p>Tuhoisan onnettomuuden jälkeen lahjakas mutta itsetuhoinen kilparatsastaja Remo (Nahuel Pérez Biscayart) vaeltaa päämäärättömästi läpi urbaanin maiseman. Minkkitakkiin kietoutuneena, käsilaukkua kantaen ja haavat sidottuna hän päätyy identiteetin, halun ja itseymmärryksen kysymysten äärelle. Sillä aikaa hänen ystävänsä, joita johtaa säkenöivä Lola (Úrsula Corberó) – jonka tanssikohtaus elokuvassa on eittämättä yksi viime vuosien unohtumattomimmista – lähtevät kaoottiselle etsintäretkelle. Matkaa varjostavat armottomat gangsterit ja kohtaamiset, jotka vaihtelevat absurdin koomisista hiljaisen ahdistaviin.</p><p>Vapaamielinen, magneettinen ja ennalta-arvaamaton elokuva vie tarkoin tyyliteltyyn visuaaliseen maailmaan. Kuvauksesta vastaa Aki Kaurismäen elokuvista tunnettu Timo Salminen.</p><p>Diego Ginartes Rodríguez (kääntänyt Inari Ylinen)</p><p>Ohjaus Luis Ortega<br>Näyttelijät Úrsula Corberó, Nahuel Pérez Biscayart, Daniel Giménez Cacho, Valentina Ávila,<br>Maa Argentiina, Meksiko, Espanja, Tanska, Yhdysvallat<br>Kielet espanja<br>Tekstitykset englanti<br>Ikäraja K16<br>Kesto 96 min<br>Teema Outouden laakso<br>Avainsanat Outoa, Identiteetti, Huumori, Urheilu</p>", "en": "<p>In this surreal and Kaurismäki-esque tragicomedy, a jockey flees through the streets of Buenos Aires after an accident that caused the death of a prized horse.</p><p>A sharply crafted and delightfully irreverent tragicomedy, Kill the Jockey dances on the razor’s edge between absurdity and catastrophe with fearless precision. Set in a Lynchian world where time and space seem to subtly melt, the story weaves together strange dreams, eccentric characters, and glimpses of a city out of sync.</p><p>After a devastating accident, Remo (Nahuel Pérez Biscayart), a talented but self-destructive jockey, wanders aimlessly through the urban landscape of Buenos Aires. Wrapped in a mink coat, holding a handbag and wearing a hyperbolic bandage, he is forced to confront identity, desire and self-understanding. Meanwhile, his crew, led by Lola – Úrsula Corberó, who leads what could be one of the most unforgettable dance sequences in film in recent memory – sets out on a search that is interrupted by ruthless mobsters and marked by encounters both absurdly comic and quietly disturbing.</p><p>This free-spirited, magnetic, and completely unpredictable film is set in a striking, meticulously stylised visual world, captured through the distinctive lens of Finnish cinematographer Timo Salminen, longtime collaborator of Aki Kaurismäki in their many masterpieces.</p><p>Diego Ginartes Rodríguez</p><p>Director Luis Ortega<br>Starring Úrsula Corberó, Nahuel Pérez Biscayart, Daniel Giménez Cacho, Valentina Ávila,<br>Country Argentina, Mexico, Spain, Denmark, United States<br>Languages Spanish<br>Subtitles English<br>Age limit K16<br>Duration 96 min<br>Theme Uncanny Valley<br>Keywords Weird, Identity, Humour, Sports</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:66973/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66972", "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": 1490618, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T12:13:56.464683Z", "last_modified_time": "2025-09-03T12:13:56.464705Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776936.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490618/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T12:13:56.347639Z", "last_modified_time": "2025-09-03T12:13:56.603181Z", "date_published": null, "start_time": "2025-09-27T07:40: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": "Surrealistisessa westernissä Buffalo Billin (John C. Reilly) villin lännen show saapuu Italiaan, ja ammuskelu kulisseissa ajaa lainsuojattomat rakastavaiset pakomatkalle.", "en": "In this surreal western, Buffalo Bill’s (John C. Reilly) Wild West show arrives in Italy, and gunfire behind the scenes sends two outlaw lovers on the run." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CF0F10FD7BC6D91F909193A915C20C97/Heads_or_Tails_", "en": "http://www.savoyteatteri.fi/en/events/event/CF0F10FD7BC6D91F909193A915C20C97/Heads_or_Tails_" }, "location_extra_info": null, "name": { "fi": "Heads or Tails? – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Heads or Tails? – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>Surrealistisessa westernissä Buffalo Billin (John C. Reilly) villin lännen show saapuu Italiaan, ja ammuskelu kulisseissa ajaa lainsuojattomat rakastavaiset pakomatkalle.</p><p>Buffalo Billin (John C. Reilly) villin lännen show on saapunut Italiaan! Näytöstä katsomaan saapuvat muun muassa aatelismies Rupè ja hänen nuori ja osaansa kyllästynyt vaimonsa Rosa (suomalaistaustainen Nadia Tereszkiewicz). Menoa ja meininkiä riittää, kun paikalliset karjapaimenet butterit haastavat amerikkalaiset cowboy-mittelöön, jonka voittajaksi selviytyy Santino (Alessandro Borghi). Näytöksen kulisseissa Rosa ottaa kohtalonsa omiin käsiinsä, nappaa Santinon matkaansa ja pamauttaa aviomiehensä päiviltä pistoolilla.</p><p>Lainsuojattomat rakastavaiset lähtevät pakomatkalle, ja saman tien Santino alkaa niittää mainetta etsintäkuulutettuna kansansankarina rikkaan Rupèn murhaamisesta. Santinosta kirjoitettuja vallankumouksellisia rallatuksia kuullessaan Rosaa kismittää, että kaikki kunnia veriteosta menee miehelle. Edetessään matka saa yhä kummempia käänteitä ja elokuva lähtee toden teolla laukalle.</p><p>Ohjaajaduo Alessio Rigo de Righin ja Matteo Zoppisin Cannesissa riemastuttanut surrealistinen spagettiwestern Heads or Tails? antaa Italian erämaan esittää kerrankin itseään. John C. Reilly pitää hauskaa Buffalo Billinä, joka lähtee palkkion perässä mukaan takaa-ajoon ja toimii räävittömän tarinan erittäin epäluotettavana kertojana.</p><p>Inari Ylinen</p><p>Ohjaus Alessio Rigo de Righi, Matteo Zoppis<br>Näyttelijät Nadia Tereszkiewicz, Alessandro Borghi, John C. Reilly, Peter Lanzani<br>Maa Italia, Yhdysvallat<br>Kielet italia, englanti<br>Tekstitykset osittain englanti<br>Ikäraja K16<br>Kesto 113 min<br>Teema Eat the Rich<br>Avainsanat Matka, Rikos, Outoa, Seikkailu, Historia, Jännitys</p>", "en": "<p>In this surreal western, Buffalo Bill’s (John C. Reilly) Wild West show arrives in Italy, and gunfire behind the scenes sends two outlaw lovers on the run.</p><p>Buffalo Bill (John C. Reilly) and his Wild West show have arrived in Italy! Among those coming to watch the spectacle are nobleman Rupè and his young, world-weary wife Rosa (played by Finnish-rooted Nadia Tereszkiewicz). The action kicks off when local cowherds, the butteri, challenge the American cowboys to a showdown — and the winner turns out to be Santino (Alessandro Borghi).</p><p>Behind the scenes of the show, Rosa takes her fate into her own hands: she grabs Santino, shoots her husband dead with a pistol, and the two flee together.</p><p>The outlaw lovers go on the run, and Santino quickly gains fame as a wanted folk hero for the murder of the wealthy Rupè. As revolutionary ballads praising Santino’s crime spread, Rosa becomes frustrated that all the credit for the killing goes to the man. As the journey continues, things take increasingly bizarre turns, and the film truly goes off the rails.</p><p>The director duo Alessio Rigo de Righi and Matteo Zoppis deliver a surreal spaghetti western that delighted Cannes audiences: Heads or Tails? finally lets the Italian wilderness play itself. John C. Reilly clearly enjoys himself as Buffalo Bill, who joins the chase in pursuit of a reward and serves as the story’s hilariously unreliable narrator.</p><p>Inari Ylinen</p><p>Director Alessio Rigo de Righi, Matteo Zoppis<br>Starring Nadia Tereszkiewicz, Alessandro Borghi, John C. Reilly, Peter Lanzani<br>Country Italy, United States<br>Languages Italian, English<br>Subtitles partly English<br>Age limit K16<br>Duration 113 min<br>Theme Eat the Rich<br>Keywords Journey, Crime, Weird, Adventure, History, Thriller</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:66972/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66971", "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": 1490616, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T11:14:11.192230Z", "last_modified_time": "2025-09-03T11:14:11.192247Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776935.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490616/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T11:14:11.103936Z", "last_modified_time": "2025-09-03T12:13:56.201637Z", "date_published": null, "start_time": "2025-09-26T17: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": "Korealaisessa toimintatrillerissä ikääntyvä palkkatappaja yhdistää voimansa nuoren ja holtittoman kokelaan kanssa.", "en": "In this Korean action thriller, an aging hitwoman teams up with a young and reckless rookie." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/FC3224AC6782D6A2623C4A630011FBE7/The_Old_Woman_with_the_Knife", "en": "http://www.savoyteatteri.fi/en/events/event/FC3224AC6782D6A2623C4A630011FBE7/The_Old_Woman_with_the_Knife" }, "location_extra_info": null, "name": { "fi": "The Old Woman with the Knife – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "The Old Woman with the Knife – Love & Anarchy 18.–28.9.2025" }, "description": { "fi": "<p>Korealaisessa toimintatrillerissä ikääntyvä palkkatappaja yhdistää voimansa nuoren ja holtittoman kokelaan kanssa.</p><p>Hornclaw on ikääntyvä palkkamurhaaja, alansa legenda, joka aloitti uransa jo 1970-luvulla hänet kadulta pelastaneen mentorinsa Ji-won suojattina. Tuholaistorjunnaksi naamioituva organisaatio, jonka alaisuudessa Hornclaw työskentelee, on vuosikymmeniä erikoistunut eliminoimaan ihmisiä, joita yhteiskunta pitää ”tuholaisina”. Myrkytetyn hiusneulan ja vaarattoman olemuksensa turvin Hornclaw eliminoi kohteensa nopeasti ja arvaamatta. Kun hän kuitenkin loukkaantuu vakavasti kesken erään tehtävän, alkaa organisaatio painostaa häntä eläköitymään vasten hänen tahtoaan.</p><p>Alakynteen jääneen Hornclawin elämä mullistuu vielä uudella tavalla, kun hän tapaa nuoren ja konnamaisen Bullfightin, joka ilmaisee haluavansa tehdä yhteistyötä erakkomaisen Hornclawin kanssa. Mitä Hornclaw ei kuitenkaan tiedä on, että hänellä ja Bullfightilla on yhteinen historia, jonka paino repii vekkejä heidän jo valmiiksi jännittyneeseen suhteeseensa. Kun salaisuudet alkavat paljastua, on kaikkien valittava puolensa tarkoin.</p><p>The Old Woman With the Knife rikkoo toimintatrillereiden stereotyyppejä tuodessaan tarinan keskiöön kuusissakymmenissä olevan naispalkkatappajan, jota Lee Hye-young näyttelee veitsenterävällä otteella.</p><p>Ida Kumpulainen</p><p>Ohjaus Min Kyu-dong<br>Näyttelijät Lee Hye-yeong, Kim Sung-cheol, Kim Mu-yeol, Mitch Craig<br>Maa Etelä-Korea<br>Kielet korea<br>Tekstitykset englanti<br>Ikäraja K16<br>Kesto 123 min<br>Teema Midnight Mayhem<br>Avainsanat Ikääntyminen, Action, Naiskuvia, Badass, Jännitys, Eläimet, Rikos</p>", "en": "<p>In this Korean action thriller, an aging hitwoman teams up with a young and reckless rookie.</p><p>Hornclaw is an aging contract killer, a legend in her field, who started her career in the 1970s as a protégé of Ji-Won, her mentor who saved her from the streets. Hornclaw works for an organisation ostensibly offering pest control services, but that has for decades specialised in eliminating persons whom society regards as undesirable. Armed with a poisoned hairpin and her harmless appearance, Hornclaw eliminates her targets swiftly and without warning. However, when she sustains a serious injury during one mission, the organisation begins to pressure her to retire against her will.</p><p>Now an underdog, Hornclaw’s life is turned upside down in another way when she meets Bullfight, a young scoundrel who expresses a desire to cooperate with the reclusive assassin. Unbeknownst to her, they share a buried past—one that threatens to unravel their already tense relationship. When secrets come out, everyone involved needs to choose their side with care.</p><p>The Old Woman with the Knife subverts action-thriller tropes by placing a female assassin in her sixties at the centre of the story, portrayed by Lee Hye-young with a performance as sharp as a blade.</p><p>Ida Kumpulainen (translated by Herman Tikkanen)</p><p>Director Min Kyu-dong<br>Starring Lee Hye-yeong, Kim Sung-cheol, Kim Mu-yeol, Mitch Craig<br>Country South Korea<br>Languages Korean<br>Subtitles English<br>Age limit K16<br>Duration 123 min<br>Theme Midnight Mayhem<br>Keywords Aging, Action, Female stories, Badass, Thriller, Animals, Crime</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:66971/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66758", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/" }, "price": { "fi": "14€", "sv": "14€", "en": "14€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1256362, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-14T11:14:16.584917Z", "last_modified_time": "2025-07-14T11:14:16.584933Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774911.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1256362/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-14T11:14:16.484561Z", "last_modified_time": "2025-09-03T12:13:55.220857Z", "date_published": null, "start_time": "2025-09-24T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!", "sv": "R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!", "en": "This year, L&A festival film screenings will also be held at Vuotalo!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8C3F1A59F1541F48636C71744E93EF81/The_Last_Dive_K16_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8C3F1A59F1541F48636C71744E93EF81/Rakkautta_ja_Anarkiaa_x_Vuotalo_", "en": "http://www.vuotalo.fi/en/events/event/8C3F1A59F1541F48636C71744E93EF81/Love_Anarchy_x_Vuotalo_" }, "location_extra_info": null, "name": { "fi": "The Last Dive (K16) – Rakkautta ja Anarkiaa x Vuotalo!", "sv": "Rakkautta ja Anarkiaa x Vuotalo! – Rakkautta ja Anarkiaa x Vuotalo!", "en": "Love & Anarchy x Vuotalo! – Rakkautta ja Anarkiaa x Vuotalo!" }, "description": { "fi": "<p>R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!</p><p>Rakkaus rauskuihin ajaa entisen merijalkaväen sotilaan barrikadeille vainotun lajin puolesta. Meren syvyyksiin sukeltava dokumentti on painava puheenvuoro luonnonsuojelutyön tärkeydestä.</p><p>Liput: 14 eur <br>Kesto: 1h40 <br>Ohjaaja: Cody Sheehy <br>Dokumenttielokuva <br> <br>**</p><p>Festivaaliohjelmistossa nähdään vuoden kauneimmat, hurjimmat ja tuoreimmat elokuvahelmet. <br> <br>Rakkautta & Anarkiaa -elokuvafestivaali järjestetään 18.–28.9.2025 Helsingin elokuvateattereissa ja Vuotalossa. <br> hiff.fi</p>", "sv": "<p>R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!</p><p>Festivalprogrammet innehåller årets vackraste, vildaste och mest fräscha filmpärlor.</p><p>Programmet publiceras tisdagen den 2 september och biljetterna släpps till försäljning torsdagen den 4 september på festivalens webbplats på adressen hiff.fi</p><p>Filmfestivalen Rakkautta & Anarkiaa äger rum 18–28 september 2025 på Helsingfors biografer och Nordhuset.</p>", "en": "<p>This year, L&A festival film screenings will also be held at Vuotalo!</p><p>The festival programme features the most beautiful, wildest and freshest film gems of the year.</p><p>The programme will be announced on Tuesday 2 September and tickets will go on sale on Thursday 4 September on the festival website at hiff.fi</p><p>The Love & Anarchy Film Festival will take place from 18 to 28 September 2025 at the cinemas of Helsinki and Vuotalo.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66758/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66757", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/" }, "price": { "fi": "14€", "sv": "14€", "en": "14€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1256361, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-14T11:14:16.235195Z", "last_modified_time": "2025-07-14T11:14:16.235210Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774910.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1256361/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-14T11:14:16.138407Z", "last_modified_time": "2025-09-03T12:13:54.963894Z", "date_published": null, "start_time": "2025-09-24T11: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": "R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!", "sv": "R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!", "en": "This year, L&A festival film screenings will also be held at Vuotalo!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3D2F38130F73B77EDB86F5FECED1DF36/Kahden_auringonlaskun_valissa_K12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/3D2F38130F73B77EDB86F5FECED1DF36/Kahden_auringonlaskun_valissa_K12_", "en": "http://www.vuotalo.fi/en/events/event/3D2F38130F73B77EDB86F5FECED1DF36/Kahden_auringonlaskun_valissa_K12_" }, "location_extra_info": null, "name": { "fi": "Kahden auringonlaskun välissä (K12) – Rakkautta ja Anarkiaa x Vuotalo!", "sv": "Kahden auringonlaskun välissä (K12) – Rakkautta ja Anarkiaa x Vuotalo!", "en": "Kahden auringonlaskun välissä (K12) – Rakkautta ja Anarkiaa x Vuotalo!" }, "description": { "fi": "<p>R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!</p><p>Yltäkylläinen valo on yksi pohjoismaisten kesien erityispiirteistä. Pitkien pimeiden talvien jälkeen saamme kylpeä siinä aikaisesta aamusta myöhäiseen iltaan.</p><p>Islantilaiset taideopiskelijat Una (Elín Hall) ja Diddi (Baldur Einarsson) pössyttelevät rannalla auringonlaskua ihastellen ja toistensa seurasta nauttien. He vaikuttavat tavalliselta umpirakastuneelta nuoreltaparilta. Käy ilmi, että Diddillä on tyttöystävä Klara (Katla Njálsdóttir), mutta huomenna on se päivä, jona hän aikoo jättää Klaran ja aloittaa virallisesti suhteen Unan kanssa. Umpirakastunut nuoripari suunnittelee yön tunteina varovasti tulevaa.</p><p>Uusi päivä tuo kuitenkin eteen yllättävän tragedian, joka suistaa elämän raiteiltaan. Kamera seuraa nuorta Unaa vuorokauden ajan hänen eläessään siihenastisen elämänsä pisintä päivää. Hillityn ulkokuoren alla tunteet yrittävät ottaa hänestä vallan kerta toisensa jälkeen.</p><p>Festivaalisuosikki Rúnar Rúnarssonin (mm. Echo, R&A 2020; Sparrows, R&A 2016) When the Light Breaks avasi Cannesin elokuvajuhlien Un Certain Regard -sarjan viime vuonna. Islantilaisohjaaja onnistuu jälleen kerran luomaan pienistä elementeistä jotain suurta, mikä jää muistoihin pitkäksi ajaksi senkin jälkeen, kun elokuva on jo ohi. Hienovarainen elokuva on herkkä ja kaunis kuin nuoruuden rakkaus, ja Elín Hallin riipaisevan kaunis suoritus on sen sydän. <br> Santtu Nikula\" <br> <br>Liput: 14 eur <br>Kesto: 1 t 22 min <br>Ohjaaja: Rúnar Rúnarsson <br>Pääosissa: Elín Hall, Katla Njálsdóttir, Mikael Kaaber <br> <br>**</p><p>Festivaaliohjelmistossa nähdään vuoden kauneimmat, hurjimmat ja tuoreimmat elokuvahelmet.</p><p>Rakkautta & Anarkiaa -elokuvafestivaali järjestetään 18.–28.9.2025 Helsingin elokuvateattereissa ja Vuotalossa.</p>", "sv": "<p>R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!</p><p>Festivalprogrammet innehåller årets vackraste, vildaste och mest fräscha filmpärlor.</p><p>Programmet publiceras tisdagen den 2 september och biljetterna släpps till försäljning torsdagen den 4 september på festivalens webbplats på adressen hiff.fi</p><p>Filmfestivalen Rakkautta & Anarkiaa äger rum 18–28 september 2025 på Helsingfors biografer och Nordhuset.</p>", "en": "<p>This year, L&A festival film screenings will also be held at Vuotalo!</p><p>The festival programme features the most beautiful, wildest and freshest film gems of the year.</p><p>The programme will be announced on Tuesday 2 September and tickets will go on sale on Thursday 4 September on the festival website at hiff.fi</p><p>The Love & Anarchy Film Festival will take place from 18 to 28 September 2025 at the cinemas of Helsinki and Vuotalo.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66757/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66977", "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/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" }, "price": { "fi": "13/14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490617, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T12:13:54.402719Z", "last_modified_time": "2025-09-03T12:13:54.402738Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776922.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490617/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T12:13:54.277621Z", "last_modified_time": "2025-09-03T12:13:54.560146Z", "date_published": null, "start_time": "2025-09-23T10: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": "Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1B7FD6637FDAC11B8D9AD24DAAFB7D4A/Pulpettikino_Jacob_Mimmi_ja_puhuvat_koirat" }, "location_extra_info": null, "name": { "fi": "Pulpettikino: Jacob, Mimmi ja puhuvat koirat – Rakkautta & Anarkiaa 18.–28.9.2025" }, "description": { "fi": "<p>Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.</p><p>Kun pikkukylän puistoa ollaan tuhoamassa kerrostalojen alta, pienet lapset koirajengin kanssa lähtevät taistoon puiston säilyttämisen puolesta.</p><p>Onko kehitystä vain se, että jyrätään pois kaikki vanha? Vai voiko kunnostamalla saada vanhasta uudenveroista? Tuore latvialaisanimaatio pureutuu kaupunkikulttuurin kysymyksiin samalla kun se kertoo kahden serkuksen vauhdikkaasta seikkailusta – ja laumasta mainioita karvaturreja.</p><p>Jacobin isä lähtee viikoksi työmatkalle ja jättää vastahakoisen poikansa sukulaisten luo Riian Maskačka-lähiöön. Kaupungin vilinään tottuneelle Jacobille vanha puutaloalue on rangaistus, eikä Mimmi-serkustakaan tunnu olevan kaveriksi. Tylsää!</p><p>Pian tilanne kuitenkin muuttuu, kun grynderi päättää rakentaa valtavan pilvenpiirtäjän keskelle Maskačkaa. Mimmi ja Jacob ryhtyvät vastarintaan. Puiston ja puiden on jäätävä ennalleen! Mutta mitä he mahtavat aikuisten maailmassa, kun vastaan asettuvat kaivurit, eurot ja hevosvoimat?</p><p>Onneksi Mimmin ja Jacobin seuraksi barrikadeille nousee myös paikallinen kulkukoirajengi, joka koiruuksien lisäksi osaa puhua ihmisten kieltä!</p><p>Edmunds Jansonsin ohjaama elokuva perustuu Luize Pastoren lastenkirjaan Dog Town. Sympaattisen tarinan ytimessä sykkii serkusten ja koirajengin yhteistyö ja mielikuvituksen voima. Elokuvan ilahduttava ilme on kuvittaja Elina Brasliņan kädenjälkeä.</p><p>Katariina Rönnqvist, R&A 2019</p><p>Ohjaus Edmunds Jansons<br>Näyttelijät Eduards Olekts, Nora Džumā, Andris Keišs<br>Maa Latvia, Puola<br>Kielet latvia<br>Tekstitykset suomi<br>Ikäraja S<br>Kesto 70 min<br>Teema Animoituja unia<br>Avainsanat Eläimet, Koko perheelle, Kaupunkitila, Feelgood, Luontosuhde, Nuoruus, Tekstitetty/puhuttu suomeksi</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66977/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66754", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/" }, "price": { "fi": "14€", "sv": "14€", "en": "14€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1256359, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-14T11:14:15.115203Z", "last_modified_time": "2025-07-14T11:14:15.115218Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774907.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1256359/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-14T11:14:14.981515Z", "last_modified_time": "2025-09-03T12:13:53.613411Z", "date_published": null, "start_time": "2025-09-20T11: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": "R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!", "sv": "R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!", "en": "This year, L&A festival film screenings will also be held at Vuotalo!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CE5F7D1482CA76733E7A63DEA01FD3EA/Yalla_Parkour_K12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CE5F7D1482CA76733E7A63DEA01FD3EA/Rakkautta_ja_Anarkiaa_x_Vuotalo_", "en": "http://www.vuotalo.fi/en/events/event/CE5F7D1482CA76733E7A63DEA01FD3EA/Love_Anarchy_x_Vuotalo_" }, "location_extra_info": null, "name": { "fi": "Yalla Parkour (K12) – Rakkautta ja Anarkiaa x Vuotalo!", "sv": "Rakkautta ja Anarkiaa x Vuotalo! – Rakkautta ja Anarkiaa x Vuotalo!", "en": "Love & Anarchy x Vuotalo! – Rakkautta ja Anarkiaa x Vuotalo!" }, "description": { "fi": "<p>R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!</p><p>Elokuvantekijä Areeb Zuaiter katselee palestiinalaista parkourvideota vuonna 2015, kun hän yllättäen näkee palestiinalaisen äitinsä hymyn erään parkouraajan kasvoilla. Tuon hymyn johdattelemana Zuaiterille avautuu täysin uudenlainen ikkuna Palestiinaan, kun hän ottaa yhteyden videon tekijään. Yalla Parkour on tuo ikkuna, jonka läpi Gazan raunioissa kukoistanut parkourkulttuuri tulee koko maailman tietoisuuteen.</p><p>Parkour asettuu palestiinalaisen vastarinnan monimuotoiseen jatkumoon: raunioista versoo aina uutta elinvoimaista elämää. Nuoret gazalaiset ottavat parkourin keinoin pommitetut ostoskeskukset ja lentokentät haltuunsa tehden niistä riemun, rohkeuden ja kehollisen taituruuden ilmaisemisen paikkoja.</p><p>Pöly Julkunen</p><p>Liput: 14 eur <br>Kesto: 1h40 min + Q & A <br> Kieli: arabia, ruotsi <br> Tekstitykset: Englanti <br> Dokumenttielokuva <br> Ohjaaja: Areeb Zuaiter</p><p>**</p><p>Festivaaliohjelmistossa nähdään vuoden kauneimmat, hurjimmat ja tuoreimmat elokuvahelmet.</p><p>Rakkautta & Anarkiaa -elokuvafestivaali järjestetään 18.–28.9.2025 Helsingin elokuvateattereissa ja Vuotalossa.</p>", "sv": "<p>R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!</p><p>Festivalprogrammet innehåller årets vackraste, vildaste och mest fräscha filmpärlor.</p><p>Programmet publiceras tisdagen den 2 september och biljetterna släpps till försäljning torsdagen den 4 september på festivalens webbplats på adressen hiff.fi</p><p>Filmfestivalen Rakkautta & Anarkiaa äger rum 18–28 september 2025 på Helsingfors biografer och Nordhuset.</p>", "en": "<p>This year, L&A festival film screenings will also be held at Vuotalo!</p><p>The festival programme features the most beautiful, wildest and freshest film gems of the year.</p><p>The programme will be announced on Tuesday 2 September and tickets will go on sale on Thursday 4 September on the festival website at hiff.fi</p><p>The Love & Anarchy Film Festival will take place from 18 to 28 September 2025 at the cinemas of Helsinki and Vuotalo.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66754/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66614", "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: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: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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/emil-nordman-uncertainty-the-tales-of-emeric-3922675/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/emil-nordman-uncertainty-the-tales-of-emeric-3922675/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/emil-nordman-uncertainty-the-tales-of-emeric-3922675/" }, "price": { "fi": "20 € / 7 €", "sv": "20 € / 7 €", "en": "20 € / 7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1161769, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T06:13:39.506063Z", "last_modified_time": "2025-07-02T06:13:39.506078Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771281.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1161769/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-02T06:13:39.402268Z", "last_modified_time": "2025-09-03T11:13:59.237371Z", "date_published": null, "start_time": "2025-10-12T12: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": "Uncertainty – The Tales of Emeric on tunteellinen ja energinen esitys, joka tempaa katsojan mukaan soturi Emericin maailmaan ja syvälle ihmismielen varjoihin.", "sv": "Uncertainty – The Tales of Emeric är en känsloladdad och energisk föreställning som drar med sig publiken i krigaren Emerics värld och djupt in i det mänskliga sinnets skuggor.", "en": "Uncertainty – The Tales of Emeric is an emotional and energetic performance that will draw the audience into the world of a warrior named Emeric and deep into the shadows of the human mind." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/02E26EFD11616D3431BE13D48E6EA6AD/Emil_Nordman_Uncertainty_The_Tales_of_Emeric", "sv": "http://www.caisa.fi/sv/evenemang/event/02E26EFD11616D3431BE13D48E6EA6AD/Emil_Nordman_Uncertainty_The_Tales_of_Emeric", "en": "http://www.caisa.fi/en/events/event/02E26EFD11616D3431BE13D48E6EA6AD/Emil_Nordman_Uncertainty_The_Tales_of_Emeric" }, "location_extra_info": null, "name": { "fi": "Emil Nordman: Uncertainty – The Tales of Emeric", "sv": "Emil Nordman: Uncertainty – The Tales of Emeric", "en": "Emil Nordman: Uncertainty – The Tales of Emeric" }, "description": { "fi": "<p>Uncertainty – The Tales of Emeric on tunteellinen ja energinen esitys, joka tempaa katsojan mukaan soturi Emericin maailmaan ja syvälle ihmismielen varjoihin.</p><p>Miekkailusta ja kamppailulajien liikekielestä ammentava tanssillinen teos pohjautuu psykoanalyytikko Carl Gustav Jungin varjotyön käsitteeseen. Se peilaa myyttisen fantasiamaailman kautta kysymyksiä, jotka koskettavat meitä jokaista: Kuinka hyvin tunnemme itsemme? Hallitsemmeko itseämme todella? Voimmeko voittaa sieluissamme piilevän pimeyden ja löytää sisäisen valomme?</p><p>Uncertainty – The Tales of Emeric on Emil Nordmanin kirjoittama fiktiivinen teos, joka perustuu Nordmanin omiin kokemuksiin. Nordman myös esiintyy itse teoksessa. Esityksen luominen mahdollistui, kun Nordman valittiin vuonna 2024 Koneen säätiön tukeman OAF Akatemia -taideohjelman taiteilijaksi. Outsider Art Festivalin luotsaaman OAF Akatemian tavoitteena on luoda uusia työmahdollisuuksia, ja rakentaa laadukkaita työolosuhteita Suomessa vaikuttaville outsider-taiteilijoille.</p><p>Emil Nordman on DuvTeaternissa vuodesta 2016 toiminut esiintyvä taiteilija. Hän on aiemmin esiintynyt tanssiesityksessä Sense of Hope (2022), joka toteutettiin DuvTeaternin ja Carl Knif Companyn yhteistuotantona. Sense of Hope -esitys voitti Kiss my Turku -palkinnon vuoden 2023 Finfringe-festivaaleilla. Lisäksi Nordman on osallistunut Mad House Helsingin tuottamaan ja Tellervo Kalleisen ohjaamaan tanssiproduktioon Tässä tanssissa minä vien (2019).</p><p>Teoksen ohjaajana ja Nordmanin taiteellisena mentorina toimii ohjaaja Antti Silvennoinen, joka on opiskellut Kiinassa teatteria ja itsepuolustuslajeja, tehnyt vuosia fyysistä teatteria ja työskennellyt mm. taistelukoreografina eri teattereissa. Silvennoinen valmistui vastikään Teatteritaiteen maisteriksi Taideyliopiston Teatterikorkeakoulusta, ja hänet tunnetaan Peking-oopperaa Suomeen tuoneen Wusheng Companyn johtajana.</p><p>Teoksen toisena esiintyjänä nähdään näyttelijä ja stunt-mies Ville Seivo. Valo- ja äänisuunnittelusta vastaa Antero Kemppi ja pukusuunnittelusta Erika Turunen.</p><p>Teos on tuotettu osana OAF Akatemiaa yhteistyössä DuvTeaternin kanssa.<br>Teoksen valmistamista ovat tukeneet Koneen säätiö ja Svenska Kulturfonden. Teoksen ensiesitykset ovat osa Caisan syyskauden ohjelmaa.</p><p>Esityksen kieli: Englanti<br>Sisältöhuomio: Esitys sisältää taistelukohtauksia, voimakkaita valoja ja kovia ääniä.</p><p>Ohjaus: Antti Silvennoinen<br>Käsikirjoitus & konsepti: Emil Nordman<br>Esiintyjät: Emil Nordman, Ville Seivo<br>Ääni- ja valosuunnittelu: Antero Kemppi<br>Pukusuunnittelu: Erika Turunen<br>Tuotanto: Outsider Art Festival ja DuvTeatern</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-20381813/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>", "sv": "<p>Uncertainty – The Tales of Emeric är en känsloladdad och energisk föreställning som drar med sig publiken i krigaren Emerics värld och djupt in i det mänskliga sinnets skuggor.</p><p>Dansverket, som bygger på fäktningens och kampgrenarnas rörelsespråk, är baserat på psykoanalytikern Carl Gustav Jungs begrepp skuggarbete. Genom en mytisk fantasivärld speglar den frågor som berör oss alla: Hur väl känner vi oss själva? Har vi verkligen kontroll över oss själva? Kan vi övervinna mörkret som gömmer sig i våra själar och hitta vårt inre ljus?</p><p>Uncertainty – The Tales of Emeric är ett fiktivt verk skrivet av Emil Nordman, baserat på hans egna erfarenheter. Nordman förekommer också i själva verket. Föreställningen möjliggjordes genom att Nordman år 2024 valdes till konstnär i konstprogrammet OAF Akatemia, som stöds av Konestiftelsen. OAF Akatemia, som lotsats av Outsider Art Festival, har som mål att skapa nya arbetstillfällen och arbetsförhållanden av hög kvalitet för outsider-konstnärer som verkar i Finland.</p><p>Emil Nordman är scenkonstnär på DuvTeatern sedan 2016. Tidigare har han uppträtt i dansföreställningen Sense of Hope (2022), som genomfördes som en samproduktion mellan DuvTeatern och Carl Knif Company. Föreställningen Sense of Hope vann priset Kiss my Turku på Finfringe-festivalerna 2023. Nordman har också medverkat i dansproduktionen Tässä tanssissa minä vien (2019), som producerades av Mad House Helsinki och regisserades av Tellervo Kalleinen.</p><p>Regissör för verket och Nordmans konstnärliga mentor är regissören Antti Silvennoinen, som har studerat teater och självförsvarsgrenar i Kina, arbetat i flera år med fysisk teater och bland annat som kampkoreograf på olika teatrar. Silvennoinen avlade nyligen magisterexamen i teaterkonst i Konstuniversitets Teaterhögskola och är känd som dirigent för Wusheng Company, som tog Pekingoperan till Finland.</p><p>Den andra artisten i verket är skådespelaren och stuntmannen Ville Seivo. <br>Antero Kemppi ansvarar för ljus- och ljudplanering och Erika Turunen för kostym.</p><p>Verket har producerats som en del av OAF Acatemia i samarbete med DuvTeatern.<br>Produktionen av verket har fått stöd av Konestiftelsen och Svenska Kulturfonden. Uruppförandena av verket ingår i Caisas höstprogram.</p><p>Föreställningens språk: Engelska<br>Notera om innehållet: Föreställningen innehåller stridsscener, starka ljus och höga ljud.</p><p>Regi: Antti Silvennoinen<br>Manus och koncept: Emil Nordman<br>Artister: Emil Nordman, Ville Seivo<br>Ljud- och ljusplanering: Antero Kemppi<br>Kostym: Erika Turunen<br>Produktion: Outsider Art Festival och DuvTeatern</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-20381813/?affiliate=FSF#tab=\">HÄR</a></u></p>", "en": "<p>Uncertainty – The Tales of Emeric is an emotional and energetic performance that will draw the audience into the world of a warrior named Emeric and deep into the shadows of the human mind.</p><p>Drawing on swordplay and the movement language of martial arts, the dance-based performance is based on psychoanalyst Carl Gustav Jung’s concept of shadow work. Through a mythical fantasy world, it reflects questions that concern us all: How well do we know ourselves? Are we really in control of ourselves? Can we overcome the darkness in our souls and find our inner light?</p><p>Uncertainty – The Tales of Emeric is a work of fiction written by Emil Nordman based on his own experiences. Nordman himself also appears in the work. The creation of the performance was made possible when Nordman was selected in 2024 as an artist in the OAF Academy art programme supported by the Kone Foundation. The OAF Academy, led by the Outsider Art Festival, aims to create new job opportunities and build high-quality working conditions for outsider artists working in Finland.</p><p>Emil Nordman has been a performing artist at DuvTeatern since 2016. He has previously performed in Sense of Hope (2022), a dance performance co-produced by DuvTeatern and Carl Knif Company. Sense of Hope won the Kiss my Turku Award at the 2023 Finfringe Festival. Nordman has also participated in the dance production Tässä tanssissa minä vien (2019) produced by Mad House Helsinki and directed by Tellervo Kalleinen.</p><p>The director of the work and Nordman’s artistic mentor is director Antti Silvennoinen, who has studied theatre and martial arts in China and has worked for years in physical theatre and as a fight choreographer at various theatres. Silvennoinen recently graduated as a Master of Theatre Arts from Uniarts Helsinki’s Theatre Academy and is known as the director of the Wusheng Company, which has brought Peking opera to Finland.</p><p>The other performer in the production is actor and stuntman Ville Seivo. Antero Kemppi is responsible for lighting and sound design and Erika Turunen for costume design.</p><p>The work has been produced as part of the OAF Academy in collaboration with DuvTeatern.<br>The production of the work has been supported by the Kone Foundation and Svenska Kulturfonden. The debut performances of the work are part of Caisa’s autumn season programme.</p><p>Language of the performance: English<br>Please note: The performance includes battle scenes, bright lights and loud sounds.</p><p>Directed by: Antti Silvennoinen<br>Script & concept: Emil Nordman<br>Performers: Emil Nordman, Ville Seivo<br>Sound and light design: Antero Kemppi<br>Costume design: Erika Turunen<br>Production: Outsider Art Festival and DuvTeatern</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-20381813/?affiliate=FSF#tab=\">HERE</a></u></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66614/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66613", "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: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: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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/emil-nordman-uncertainty-the-tales-of-emeric-3922675/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/emil-nordman-uncertainty-the-tales-of-emeric-3922675/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/emil-nordman-uncertainty-the-tales-of-emeric-3922675/" }, "price": { "fi": "20 € / 7 €", "sv": "20 € / 7 €", "en": "20 € / 7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1161768, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T06:13:39.077021Z", "last_modified_time": "2025-07-02T06:13:39.077036Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771279.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1161768/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-02T06:13:38.969316Z", "last_modified_time": "2025-09-03T11:13:58.688380Z", "date_published": null, "start_time": "2025-10-11T12: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": "Uncertainty – The Tales of Emeric on tunteellinen ja energinen esitys, joka tempaa katsojan mukaan soturi Emericin maailmaan ja syvälle ihmismielen varjoihin.", "sv": "Uncertainty – The Tales of Emeric är en känsloladdad och energisk föreställning som drar med sig publiken i krigaren Emerics värld och djupt in i det mänskliga sinnets skuggor.", "en": "Uncertainty – The Tales of Emeric is an emotional and energetic performance that will draw the audience into the world of a warrior named Emeric and deep into the shadows of the human mind." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/4EFCF5AF34535B1AD9D2F7322B6757F2/Emil_Nordman_Uncertainty_The_Tales_of_Emeric", "sv": "http://www.caisa.fi/sv/evenemang/event/4EFCF5AF34535B1AD9D2F7322B6757F2/Emil_Nordman_Uncertainty_The_Tales_of_Emeric", "en": "http://www.caisa.fi/en/events/event/4EFCF5AF34535B1AD9D2F7322B6757F2/Emil_Nordman_Uncertainty_The_Tales_of_Emeric" }, "location_extra_info": null, "name": { "fi": "Emil Nordman: Uncertainty – The Tales of Emeric", "sv": "Emil Nordman: Uncertainty – The Tales of Emeric", "en": "Emil Nordman: Uncertainty – The Tales of Emeric" }, "description": { "fi": "<p>Uncertainty – The Tales of Emeric on tunteellinen ja energinen esitys, joka tempaa katsojan mukaan soturi Emericin maailmaan ja syvälle ihmismielen varjoihin.</p><p>Miekkailusta ja kamppailulajien liikekielestä ammentava tanssillinen teos pohjautuu psykoanalyytikko Carl Gustav Jungin varjotyön käsitteeseen. Se peilaa myyttisen fantasiamaailman kautta kysymyksiä, jotka koskettavat meitä jokaista: Kuinka hyvin tunnemme itsemme? Hallitsemmeko itseämme todella? Voimmeko voittaa sieluissamme piilevän pimeyden ja löytää sisäisen valomme?</p><p>Uncertainty – The Tales of Emeric on Emil Nordmanin kirjoittama fiktiivinen teos, joka perustuu Nordmanin omiin kokemuksiin. Nordman myös esiintyy itse teoksessa. Esityksen luominen mahdollistui, kun Nordman valittiin vuonna 2024 Koneen säätiön tukeman OAF Akatemia -taideohjelman taiteilijaksi. Outsider Art Festivalin luotsaaman OAF Akatemian tavoitteena on luoda uusia työmahdollisuuksia, ja rakentaa laadukkaita työolosuhteita Suomessa vaikuttaville outsider-taiteilijoille.</p><p>Emil Nordman on DuvTeaternissa vuodesta 2016 toiminut esiintyvä taiteilija. Hän on aiemmin esiintynyt tanssiesityksessä Sense of Hope (2022), joka toteutettiin DuvTeaternin ja Carl Knif Companyn yhteistuotantona. Sense of Hope -esitys voitti Kiss my Turku -palkinnon vuoden 2023 Finfringe-festivaaleilla. Lisäksi Nordman on osallistunut Mad House Helsingin tuottamaan ja Tellervo Kalleisen ohjaamaan tanssiproduktioon Tässä tanssissa minä vien (2019).</p><p>Teoksen ohjaajana ja Nordmanin taiteellisena mentorina toimii ohjaaja Antti Silvennoinen, joka on opiskellut Kiinassa teatteria ja itsepuolustuslajeja, tehnyt vuosia fyysistä teatteria ja työskennellyt mm. taistelukoreografina eri teattereissa. Silvennoinen valmistui vastikään Teatteritaiteen maisteriksi Taideyliopiston Teatterikorkeakoulusta, ja hänet tunnetaan Peking-oopperaa Suomeen tuoneen Wusheng Companyn johtajana.</p><p>Teoksen toisena esiintyjänä nähdään näyttelijä ja stunt-mies Ville Seivo. Valo- ja äänisuunnittelusta vastaa Antero Kemppi ja pukusuunnittelusta Erika Turunen.</p><p>Teos on tuotettu osana OAF Akatemiaa yhteistyössä DuvTeaternin kanssa.<br>Teoksen valmistamista ovat tukeneet Koneen säätiö ja Svenska Kulturfonden. Teoksen ensiesitykset ovat osa Caisan syyskauden ohjelmaa.</p><p>Esityksen kieli: Englanti<br>Sisältöhuomio: Esitys sisältää taistelukohtauksia, voimakkaita valoja ja kovia ääniä.</p><p>Ohjaus: Antti Silvennoinen<br>Käsikirjoitus & konsepti: Emil Nordman<br>Esiintyjät: Emil Nordman, Ville Seivo<br>Ääni- ja valosuunnittelu: Antero Kemppi<br>Pukusuunnittelu: Erika Turunen<br>Tuotanto: Outsider Art Festival ja DuvTeatern</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-20381812/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>", "sv": "<p>Uncertainty – The Tales of Emeric är en känsloladdad och energisk föreställning som drar med sig publiken i krigaren Emerics värld och djupt in i det mänskliga sinnets skuggor.</p><p>Dansverket, som bygger på fäktningens och kampgrenarnas rörelsespråk, är baserat på psykoanalytikern Carl Gustav Jungs begrepp skuggarbete. Genom en mytisk fantasivärld speglar den frågor som berör oss alla: Hur väl känner vi oss själva? Har vi verkligen kontroll över oss själva? Kan vi övervinna mörkret som gömmer sig i våra själar och hitta vårt inre ljus?</p><p>Uncertainty – The Tales of Emeric är ett fiktivt verk skrivet av Emil Nordman, baserat på hans egna erfarenheter. Nordman förekommer också i själva verket. Föreställningen möjliggjordes genom att Nordman år 2024 valdes till konstnär i konstprogrammet OAF Akatemia, som stöds av Konestiftelsen. OAF Akatemia, som lotsats av Outsider Art Festival, har som mål att skapa nya arbetstillfällen och arbetsförhållanden av hög kvalitet för outsider-konstnärer som verkar i Finland.</p><p>Emil Nordman är scenkonstnär på DuvTeatern sedan 2016. Tidigare har han uppträtt i dansföreställningen Sense of Hope (2022), som genomfördes som en samproduktion mellan DuvTeatern och Carl Knif Company. Föreställningen Sense of Hope vann priset Kiss my Turku på Finfringe-festivalerna 2023. Nordman har också medverkat i dansproduktionen Tässä tanssissa minä vien (2019), som producerades av Mad House Helsinki och regisserades av Tellervo Kalleinen.</p><p>Regissör för verket och Nordmans konstnärliga mentor är regissören Antti Silvennoinen, som har studerat teater och självförsvarsgrenar i Kina, arbetat i flera år med fysisk teater och bland annat som kampkoreograf på olika teatrar. Silvennoinen avlade nyligen magisterexamen i teaterkonst i Konstuniversitets Teaterhögskola och är känd som dirigent för Wusheng Company, som tog Pekingoperan till Finland.</p><p>Den andra artisten i verket är skådespelaren och stuntmannen Ville Seivo. <br>Antero Kemppi ansvarar för ljus- och ljudplanering och Erika Turunen för kostym.</p><p>Verket har producerats som en del av OAF Acatemia i samarbete med DuvTeatern.<br>Produktionen av verket har fått stöd av Konestiftelsen och Svenska Kulturfonden. Uruppförandena av verket ingår i Caisas höstprogram.</p><p>Föreställningens språk: Engelska<br>Notera om innehållet:: Föreställningen innehåller stridsscener, starka ljus och höga ljud.</p><p>Regi: Antti Silvennoinen<br>Manus och koncept: Emil Nordman<br>Artister: Emil Nordman, Ville Seivo<br>Ljud- och ljusplanering: Antero Kemppi<br>Kostym: Erika Turunen<br>Produktion: Outsider Art Festival och DuvTeatern</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-20381812/?affiliate=FSF#tab=\">HÄR</a></u></p>", "en": "<p>Uncertainty – The Tales of Emeric is an emotional and energetic performance that will draw the audience into the world of a warrior named Emeric and deep into the shadows of the human mind.</p><p>Drawing on swordplay and the movement language of martial arts, the dance-based performance is based on psychoanalyst Carl Gustav Jung’s concept of shadow work. Through a mythical fantasy world, it reflects questions that concern us all: How well do we know ourselves? Are we really in control of ourselves? Can we overcome the darkness in our souls and find our inner light?</p><p>Uncertainty – The Tales of Emeric is a work of fiction written by Emil Nordman based on his own experiences. Nordman himself also appears in the work. The creation of the performance was made possible when Nordman was selected in 2024 as an artist in the OAF Academy art programme supported by the Kone Foundation. The OAF Academy, led by the Outsider Art Festival, aims to create new job opportunities and build high-quality working conditions for outsider artists working in Finland.</p><p>Emil Nordman has been a performing artist at DuvTeatern since 2016. He has previously performed in Sense of Hope (2022), a dance performance co-produced by DuvTeatern and Carl Knif Company. Sense of Hope won the Kiss my Turku Award at the 2023 Finfringe Festival. Nordman has also participated in the dance production Tässä tanssissa minä vien (2019) produced by Mad House Helsinki and directed by Tellervo Kalleinen.</p><p>The director of the work and Nordman’s artistic mentor is director Antti Silvennoinen, who has studied theatre and martial arts in China and has worked for years in physical theatre and as a fight choreographer at various theatres. Silvennoinen recently graduated as a Master of Theatre Arts from Uniarts Helsinki’s Theatre Academy and is known as the director of the Wusheng Company, which has brought Peking opera to Finland.</p><p>The other performer in the production is actor and stuntman Ville Seivo. <br>Antero Kemppi is responsible for lighting and sound design and Erika Turunen for costume design.</p><p>The work has been produced as part of the OAF Academy in collaboration with DuvTeatern.<br>The production of the work has been supported by the Kone Foundation and Svenska Kulturfonden. The debut performances of the work are part of Caisa’s autumn season programme.</p><p>Language of the performance: English<br>Please note: The performance includes battle scenes, bright lights and loud sounds.</p><p>Directed by: Antti Silvennoinen<br>Script & concept: Emil Nordman<br>Performers: Emil Nordman, Ville Seivo<br>Sound and light design: Antero Kemppi<br>Costume design: Erika Turunen<br>Production: Outsider Art Festival and DuvTeatern</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-20381812/?affiliate=FSF#tab=\">HERE</a></u></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66613/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66612", "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: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: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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/emil-nordman-uncertainty-the-tales-of-emeric-3922675/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/emil-nordman-uncertainty-the-tales-of-emeric-3922675/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/emil-nordman-uncertainty-the-tales-of-emeric-3922675/" }, "price": { "fi": "20 € / 7 €", "sv": "20 € / 7 €", "en": "20 € / 7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1161767, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T06:13:38.542991Z", "last_modified_time": "2025-07-02T06:13:38.543006Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771275.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1161767/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-02T06:13:38.403043Z", "last_modified_time": "2025-09-03T11:13:57.881909Z", "date_published": null, "start_time": "2025-10-09T16: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": "Uncertainty – The Tales of Emeric on tunteellinen ja energinen esitys, joka tempaa katsojan mukaan soturi Emericin maailmaan ja syvälle ihmismielen varjoihin.", "sv": "Uncertainty – The Tales of Emeric är en känsloladdad och energisk föreställning som drar med sig publiken i krigaren Emerics värld och djupt in i det mänskliga sinnets skuggor.", "en": "Uncertainty – The Tales of Emeric is an emotional and energetic performance that will draw the audience into the world of a warrior named Emeric and deep into the shadows of the human mind." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C371652846D8E48BC9EA4258D269BE93/Emil_Nordman_Uncertainty_The_Tales_of_Emeric", "sv": "http://www.caisa.fi/sv/evenemang/event/C371652846D8E48BC9EA4258D269BE93/Emil_Nordman_Uncertainty_The_Tales_of_Emeric", "en": "http://www.caisa.fi/en/events/event/C371652846D8E48BC9EA4258D269BE93/Emil_Nordman_Uncertainty_The_Tales_of_Emeric" }, "location_extra_info": null, "name": { "fi": "Emil Nordman: Uncertainty – The Tales of Emeric – ENSI-ILTA", "sv": "Emil Nordman: Uncertainty – The Tales of Emeric – PREMIÄR", "en": "Emil Nordman: Uncertainty – The Tales of Emeric – PREMIERE" }, "description": { "fi": "<p>Uncertainty – The Tales of Emeric on tunteellinen ja energinen esitys, joka tempaa katsojan mukaan soturi Emericin maailmaan ja syvälle ihmismielen varjoihin.</p><p>Miekkailusta ja kamppailulajien liikekielestä ammentava tanssillinen teos pohjautuu psykoanalyytikko Carl Gustav Jungin varjotyön käsitteeseen. Se peilaa myyttisen fantasiamaailman kautta kysymyksiä, jotka koskettavat meitä jokaista: Kuinka hyvin tunnemme itsemme? Hallitsemmeko itseämme todella? Voimmeko voittaa sieluissamme piilevän pimeyden ja löytää sisäisen valomme?</p><p>Uncertainty – The Tales of Emeric on Emil Nordmanin kirjoittama fiktiivinen teos, joka perustuu Nordmanin omiin kokemuksiin. Nordman myös esiintyy itse teoksessa. Esityksen luominen mahdollistui, kun Nordman valittiin vuonna 2024 Koneen säätiön tukeman OAF Akatemia -taideohjelman taiteilijaksi. Outsider Art Festivalin luotsaaman OAF Akatemian tavoitteena on luoda uusia työmahdollisuuksia, ja rakentaa laadukkaita työolosuhteita Suomessa vaikuttaville outsider-taiteilijoille.</p><p>Emil Nordman on DuvTeaternissa vuodesta 2016 toiminut esiintyvä taiteilija. Hän on aiemmin esiintynyt tanssiesityksessä Sense of Hope (2022), joka toteutettiin DuvTeaternin ja Carl Knif Companyn yhteistuotantona. Sense of Hope -esitys voitti Kiss my Turku -palkinnon vuoden 2023 Finfringe-festivaaleilla. Lisäksi Nordman on osallistunut Mad House Helsingin tuottamaan ja Tellervo Kalleisen ohjaamaan tanssiproduktioon Tässä tanssissa minä vien (2019).</p><p>Teoksen ohjaajana ja Nordmanin taiteellisena mentorina toimii ohjaaja Antti Silvennoinen, joka on opiskellut Kiinassa teatteria ja itsepuolustuslajeja, tehnyt vuosia fyysistä teatteria ja työskennellyt mm. taistelukoreografina eri teattereissa. Silvennoinen valmistui vastikään Teatteritaiteen maisteriksi Taideyliopiston Teatterikorkeakoulusta, ja hänet tunnetaan Peking-oopperaa Suomeen tuoneen Wusheng Companyn johtajana.</p><p>Teoksen toisena esiintyjänä nähdään näyttelijä ja stunt-mies Ville Seivo. Valo- ja äänisuunnittelusta vastaa Antero Kemppi ja pukusuunnittelusta Erika Turunen.</p><p>Teos on tuotettu osana OAF Akatemiaa yhteistyössä DuvTeaternin kanssa.<br>Teoksen valmistamista ovat tukeneet Koneen säätiö ja Svenska Kulturfonden. Teoksen ensiesitykset ovat osa Caisan syyskauden ohjelmaa.</p><p>Esityksen kieli: Englanti<br>Sisältöhuomio: Esitys sisältää taistelukohtauksia, voimakkaita valoja ja kovia ääniä.</p><p>Ohjaus: Antti Silvennoinen<br>Käsikirjoitus & konsepti: Emil Nordman<br>Esiintyjät: Emil Nordman, Ville Seivo<br>Ääni- ja valosuunnittelu: Antero Kemppi<br>Pukusuunnittelu: Erika Turunen<br>Tuotanto: Outsider Art Festival ja DuvTeatern</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-20381814/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>", "sv": "<p>Uncertainty – The Tales of Emeric är en känsloladdad och energisk föreställning som drar med sig publiken i krigaren Emerics värld och djupt in i det mänskliga sinnets skuggor.</p><p>Dansverket, som bygger på fäktningens och kampgrenarnas rörelsespråk, är baserat på psykoanalytikern Carl Gustav Jungs begrepp skuggarbete. Genom en mytisk fantasivärld speglar den frågor som berör oss alla: Hur väl känner vi oss själva? Har vi verkligen kontroll över oss själva? Kan vi övervinna mörkret som gömmer sig i våra själar och hitta vårt inre ljus?</p><p>Uncertainty – The Tales of Emeric är ett fiktivt verk skrivet av Emil Nordman, baserat på hans egna erfarenheter. Nordman förekommer också i själva verket. Föreställningen möjliggjordes genom att Nordman år 2024 valdes till konstnär i konstprogrammet OAF Akatemia, som stöds av Konestiftelsen. OAF Akatemia, som lotsats av Outsider Art Festival, har som mål att skapa nya arbetstillfällen och arbetsförhållanden av hög kvalitet för outsider-konstnärer som verkar i Finland.</p><p>Emil Nordman är scenkonstnär på DuvTeatern sedan 2016. Tidigare har han uppträtt i dansföreställningen Sense of Hope (2022), som genomfördes som en samproduktion mellan DuvTeatern och Carl Knif Company. Föreställningen Sense of Hope vann priset Kiss my Turku på Finfringe-festivalerna 2023. Nordman har också medverkat i dansproduktionen Tässä tanssissa minä vien (2019), som producerades av Mad House Helsinki och regisserades av Tellervo Kalleinen.</p><p>Regissör för verket och Nordmans konstnärliga mentor är regissören Antti Silvennoinen, som har studerat teater och självförsvarsgrenar i Kina, arbetat i flera år med fysisk teater och bland annat som kampkoreograf på olika teatrar. Silvennoinen avlade nyligen magisterexamen i teaterkonst i Konstuniversitets Teaterhögskola och är känd som dirigent för Wusheng Company, som tog Pekingoperan till Finland.</p><p>Den andra artisten i verket är skådespelaren och stuntmannen Ville Seivo. <br>Antero Kemppi ansvarar för ljus- och ljudplanering och Erika Turunen för kostym.</p><p>Verket har producerats som en del av OAF Acatemia i samarbete med DuvTeatern.<br>Produktionen av verket har fått stöd av Konestiftelsen och Svenska Kulturfonden. Uruppförandena av verket ingår i Caisas höstprogram.</p><p>Föreställningens språk: Engelska<br>Innehållsvarning: Föreställningen innehåller stridsscener, starka ljus och höga ljud.</p><p>Regi: Antti Silvennoinen<br>Manus och koncept: Emil Nordman<br>Artister: Emil Nordman, Ville Seivo<br>Ljud- och ljusplanering: Antero Kemppi<br>Kostym: Erika Turunen<br>Produktion: Outsider Art Festival och DuvTeatern</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-20381814/?affiliate=FSF#tab=\">HÄR</a></u></p>", "en": "<p>Uncertainty – The Tales of Emeric is an emotional and energetic performance that will draw the audience into the world of a warrior named Emeric and deep into the shadows of the human mind.</p><p>Drawing on swordplay and the movement language of martial arts, the dance-based performance is based on psychoanalyst Carl Gustav Jung’s concept of shadow work. Through a mythical fantasy world, it reflects questions that concern us all: How well do we know ourselves? Are we really in control of ourselves? Can we overcome the darkness in our souls and find our inner light?</p><p>Uncertainty – The Tales of Emeric is a work of fiction written by Emil Nordman based on his own experiences. Nordman himself also appears in the work. The creation of the performance was made possible when Nordman was selected in 2024 as an artist in the OAF Academy art programme supported by the Kone Foundation. The OAF Academy, led by the Outsider Art Festival, aims to create new job opportunities and build high-quality working conditions for outsider artists working in Finland.</p><p>Emil Nordman has been a performing artist at DuvTeatern since 2016. He has previously performed in Sense of Hope (2022), a dance performance co-produced by DuvTeatern and Carl Knif Company. Sense of Hope won the Kiss my Turku Award at the 2023 Finfringe Festival. Nordman has also participated in the dance production Tässä tanssissa minä vien (2019) produced by Mad House Helsinki and directed by Tellervo Kalleinen.</p><p>The director of the work and Nordman’s artistic mentor is director Antti Silvennoinen, who has studied theatre and martial arts in China and has worked for years in physical theatre and as a fight choreographer at various theatres. Silvennoinen recently graduated as a Master of Theatre Arts from Uniarts Helsinki’s Theatre Academy and is known as the director of the Wusheng Company, which has brought Peking opera to Finland.</p><p>The other performer in the production is actor and stuntman Ville Seivo. <br>Antero Kemppi is responsible for lighting and sound design and Erika Turunen for costume design.</p><p>The work has been produced as part of the OAF Academy in collaboration with DuvTeatern.<br>The production of the work has been supported by the Kone Foundation and Svenska Kulturfonden. The debut performances of the work are part of Caisa’s autumn season programme.</p><p>Language of the performance: English<br>Content note: The performance includes battle scenes, bright lights and loud sounds.</p><p>Directed by: Antti Silvennoinen<br>Script & concept: Emil Nordman<br>Performers: Emil Nordman, Ville Seivo<br>Sound and light design: Antero Kemppi<br>Costume design: Erika Turunen<br>Production: Outsider Art Festival and DuvTeatern</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-20381814/?affiliate=FSF#tab=\">HERE</a></u></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66612/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 10295, "next": "