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=17&weekday=6%2C7
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=18&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=16&weekday=6%2C7" }, "data": [ { "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": [], "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null, "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" } } ], "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, "location_extra_info": null, "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" }, "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." }, "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" }, "name": { "fi": "Kill the Jockey – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Kill the Jockey – Love & Anarchy 18.–28.9.2025" }, "@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": [], "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null, "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" } } ], "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, "location_extra_info": null, "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_" }, "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." }, "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" }, "name": { "fi": "Heads or Tails? – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Heads or Tails? – Love & Anarchy 18.–28.9.2025" }, "@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": [], "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null, "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" } } ], "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, "location_extra_info": null, "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" }, "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." }, "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" }, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66971/?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": [], "price": { "fi": "14€", "sv": "14€", "en": "14€" }, "description": null, "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/" } } ], "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, "location_extra_info": null, "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_" }, "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!" }, "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, "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!" }, "@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": [], "price": { "fi": "20 € / 7 €", "sv": "20 € / 7 €", "en": "20 € / 7 €" }, "description": null, "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/" } } ], "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, "location_extra_info": null, "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" }, "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." }, "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, "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" }, "@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": [], "price": { "fi": "20 € / 7 €", "sv": "20 € / 7 €", "en": "20 € / 7 €" }, "description": null, "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/" } } ], "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, "location_extra_info": null, "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" }, "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." }, "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, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66613/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66970", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null, "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490615, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T11:13:54.363128Z", "last_modified_time": "2025-09-03T11:13:54.363145Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776933.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490615/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T11:13:54.224616Z", "last_modified_time": "2025-09-03T11:13:54.530308Z", "date_published": null, "start_time": "2025-09-26T13:10:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0B65E2E93A144BF69F77DF298F0627B7/Saturn_Return", "en": "http://www.savoyteatteri.fi/en/events/event/0B65E2E93A144BF69F77DF298F0627B7/Saturn_Return" }, "provider_contact_info": null, "short_description": { "fi": "Espanjalaisen indierockin pioneeribändi Los Planetas astelee päälavalle vangitsevassa musiikkielokuvassa. Pakollista katsottavaa jokaiselle itseään kunnioittavalle indie-nautiskelijalle!", "en": "Spanish indie rock pioneers Los Planetas take the main stage in a captivating music film – essential viewing for any self-respecting indie connoisseur!" }, "description": { "fi": "<p>Espanjalaisen indierockin pioneeribändi Los Planetas astelee päälavalle vangitsevassa musiikkielokuvassa. Pakollista katsottavaa jokaiselle itseään kunnioittavalle indie-nautiskelijalle!</p><p>Miten muodostuu musiikin ydin, kun tutkiskeleva ja uutta kohti kurottava bändi tekee levyn, joka tulee määrittämään aikakautta? Tunnetun elokuvantekijä Isaki Lacuestan ja Pol Rodríguezin ohjaama Saturn Return sukeltaa espanjalaisen indierockin legendan, Los Planetas -yhtyeen, myyttiin ja perintöön. Bändin historian läpikäymisen sijaan Lacuesta ja Rodríguez keskittyvät yhteen keskeiseen hetkeen bändin uralla: legendaarisen kolmannen albumin Una Semana en el Motor de un Autobús tekemiseen. Kaoottista ja käänteentekevää prosessia määrittivät taiteellinen kunnianhimo, sisäiset ristiriidat ja huumeidenkäytön varjot.</p><p>Levyn kappaleiden mukaisesti 11 lukuun jaetun elokuvan kerronta etenee moniäänisesti ja unilogiikalla läpi neonväreissä kylpevän 90-luvun Granadan underground-skenen. Saturn Return ei käy läpi faktoja tai toista tositapahtumia, vaan liikkuu eteenpäin vapaasti fiktiota, todellista ja legendaa yhteen kietoen. Perinteisen bändielämäkerran sijaan se on immersiivinen tunnelmapala, joka tarjoaa vaihtoehdon klassisille musiikkielokuville, kuten 24 Hour Party People, Control tai Leto. Se on tunnelmallinen ja abstrakti muotokuva muutoksen keskellä olevasta bändistä.</p><p>Diego Ginartes Rodríguez (kääntänyt Inari Ylinen)</p><p>Ohjaus Pol Rodriguez, Isaki Lacuesta<br>Näyttelijät Daniel Ibáñez, Cristalino, Stéphanie Magnin, Mafo<br>Maa Espanja, Ranska<br>Kielet espanja, englanti<br>Tekstitykset osittain englanti<br>Ikäraja K16<br>Kesto 109 min<br>Teema Feel the Beat!<br>Avainsanat Musiikki, Fantasia, Perustuu tositapahtumiin, Kaupunkitila</p>", "en": "<p>Spanish indie rock pioneers Los Planetas take the main stage in a captivating music film – essential viewing for any self-respecting indie connoisseur!</p><p>How does musical essence take form when a band, unraveling and reaching, creates the record that will define an era? In Saturn Return, acclaimed filmmaker Isaki Lacuesta, co-directing with Pol Rodríguez, delves into the myth and legacy of Los Planetas, widely considered pioneers of Spain’s indie rock scene. Lacuesta and Rodríguez, rather than tracing a straight line through the band’s discography, focus on a key moment in the group’s evolution: the creation of their third and most defining album, Una Semana en el Motor de un Autobús. It is a chaotic, transformative chapter marked by artistic ambition, internal fractures, and the shadows of drug addiction.</p><p>Structured in eleven chapters, each tied to a track from the record, Saturn Return unfolds as a polyphonic, dreamlike narrative bathed in red and blue neon, underground haze, and the raw emotional pulse of 1990s Granada, Spain. The film is not a reconstruction of real events or a chronicle of facts; instead, it moves within a revealing dimension where fiction, reality, and legend freely intertwine. Less a conventional band biopic than an atmospheric immersion, it distances itself from classic films like 24 Hour Party People, Control, or Leto, opting instead for a more abstract, mood-driven portrait of a band undergoing transformation.</p><p>Diego Ginartes Rodríguez</p><p>Director Pol Rodriguez, Isaki Lacuesta<br>Starring Daniel Ibáñez, Cristalino, Stéphanie Magnin, Mafo<br>Country Spain, France<br>Languages Spanish, English<br>Subtitles partly English<br>Age limit K16<br>Duration 109 min<br>Theme Feel the Beat!<br>Keywords Music, Fantasy, Based on true events, Urban spaces</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "name": { "fi": "Saturn Return – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Saturn Return – Love & Anarchy 18.–28.9.2025" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66970/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66117", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1162434, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T08:13:43.550264Z", "last_modified_time": "2025-07-02T08:13:43.550281Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772201.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1162434/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-02T08:13:43.454957Z", "last_modified_time": "2025-09-03T10:13:55.606696Z", "date_published": null, "start_time": "2025-09-13T10:00:00Z", "end_time": "2025-09-13T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1269B72C453E71560557DEA9B5BA1FA6/Malmi_Mayhemi_2", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1269B72C453E71560557DEA9B5BA1FA6/Malmi_Mayhemi_2", "en": "http://www.malmitalo.fi/en/events/event/1269B72C453E71560557DEA9B5BA1FA6/Malmi_Mayhemi_2" }, "provider_contact_info": null, "short_description": { "fi": "Malmi on skenen epicentrum, lähiöiden paratiisi, Helsingin Forssa. Malmi vetää puoleensa kuin magneetti. Tervetuloa M-alueelle!", "sv": "Malm är scenens epicentrum, förorternas paradis, Helsingfors Forssa. Malm attraherar som en magnet. Välkommen till M-zonen!", "en": "Malmi is the epicentre of the scene, a suburban paradise, the Forssa of Helsinki. Malmi draws people in like a magnet. Welcome to the M Zone!" }, "description": { "fi": "<p>Malmi on skenen epicentrum, lähiöiden paratiisi, Helsingin Forssa. Malmi vetää puoleensa kuin magneetti. Tervetuloa M-alueelle!</p><p>Malmi Vicen ja Malmitalon yhteistyössä järjestämässä ilmaistapahtumassa tarjoillaan lähiökulttuurin ja urbaanin taiteen parhaita paloja: pop-up-tatuointipiste (tatuoinnit for life or for a weekend), Notkea Rotan & MC Rautaperseen keikka, Taikuri Luttisen taikashow sekä tietysti onnenpyörän pyöritystä mässyillä palkinnoilla!</p><p>Tapahtuman kesto: 13.00-19.00</p><p><b>Aikataulu</b><br>13.30 Live Love Lähiö – Malmi Vice 20 vuotta -juhlanäyttelyn avajaispuhe + Onnenpyöräarvonta<br>14.15 MC Rautaperse & Notkea Rotta<br>16.00 Onnenpyöräarvonta<br>17.00 Taikuri Luttisen taikashow<br>18.00 Onnenpyöräarvonta</p><p><b>Koko tapahtuman ajan:</b><br>Silk Inkin tatuointipiste<br>Areefer's Supplyn vaatepainopiste<br>Kertakäyttötatuointeja</p><p>Tapahtuman juontaa <b>Lina Schiffer.</b></p><p>Tapahtumassa järjestetään Malmi Vicen 20-vuotisjuhlanäyttelyn avajaiset. <u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/BF675A976F98603E8E6E42CA89953EC4/Live_Love_L_hi____Malmi_Vice_20_vuotta_juhlan_yttely\">Lue lisää näyttelystä</a></u></p><p>Vapaa pääsy, tervetuloa!</p>", "sv": "<p>Malm är scenens epicentrum, förorternas paradis, Helsingfors Forssa. Malm attraherar som en magnet. Välkommen till M-zonen!</p><p>I gratisevenemanget som Malmi Vice och Malms kulturhus ordnar i samarbete serveras det bästa av förortskultur, urban konst och gatumode: Pop-up-tatuointipunkt (tatueringar for life or for a weekend), konsert med Notkea Rotta & MC Rautaperse, Trollkarlen Luttinens trollerishow samt naturligtvis lyckohjulet med priser!</p><p>Evenemangets längd: 13.00–19.00</p><p><b>Program</b><br>13.30 Live Love Lähiö – öppningstal för jubileumsutställningen Malmi Vice 20 år + lyckohjulsdragning<br>14.15 MC Rautaperse & Notkea Rotta<br>16.00 Lyckohjulet<br>17.00 Trollkarlen Luttinens trollerishow<br>18.00 Lyckohjulet</p><p><b>Under hela evenemanget:</b><br>• Silk Ink tatueringar<br>• Areefer's Supply klädtryck<br>• Engångstatueringar</p><p>Evenemanget leds av <b>Lina Schiffer.</b></p><p>Under evenemanget ordnas även vernissagen av Malmi Vices 20-årsjubileumsutställning. <u><a href=\"https://malmitalo.fi/sv/evenemangen/event/BF675A976F98603E8E6E42CA89953EC4/LIVE_LOVE_SUBURBS___MALMI_VICE_20_YEARS\">Mer information </a></u></p><p>Fritt inträde. Välkommen!</p>", "en": "<p>Malmi is the epicentre of the scene, a suburban paradise, the Forssa of Helsinki. Malmi draws people in like a magnet. Welcome to the M Zone!</p><p>Co-organised by Malmi Vice and Malmitalo, the free event will feature the best of suburban culture, urban art and street fashion: Pop-up tattoo booth (tattoos for life or just for a weekend), a live gig by Notkea Rotta & MC Rautaperse, Magician Luttinen’s magic show, and of course a spin of the wheel of fortune with prizes!</p><p><b>Schedule</b><br>1:30 PM Live Love Lähiö – opening speech for the Malmi Vice 20 Years anniversary exhibition + wheel of fortune<br>2:15 PM MC Rautaperse & Notkea Rotta<br>4:00 PM Wheel of fortune<br>5:00 PM Magician Luttinen’s magic show<br>6:00 PM Wheel of fortune</p><p><b>Throughout the event:</b><br>• Silk Ink tattoo booth<br>• Areefer’s Supply clothing print station<br>• Temporary tattoos</p><p>The event will be hosted by <b>Lina Schiffer.</b></p><p>The event includes the opening of the Malmi Vice 20th anniversary exhibition. <u><a href=\"https://malmitalo.fi/en/events/event/BF675A976F98603E8E6E42CA89953EC4/LIVE_LOVE_SUBURBS___MALMI_VICE_20_YEARS\">More information </a></u></p><p>Free entry – welcome!</p>" }, "provider": null, "name": { "fi": "Malmi Mayhemi 2 – Mukana mm. Notkea Rotta & MC Rautaperse ja Taikuri Luttinen!", "sv": "Malmi Mayhemi 2", "en": "Malmi Mayhemi 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66117/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66655", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1217519, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-09T08:14:37.949669Z", "last_modified_time": "2025-07-09T08:14:37.949687Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775480.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1217519/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-09T08:14:37.817173Z", "last_modified_time": "2025-09-03T09:13:56.430789Z", "date_published": null, "start_time": "2025-10-04T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/1243A1C9935EF4EEEB706E98C8E0280E/Mehrnoosh_Zolfaghari_Awakening_Senase_DJ_Bunuel", "sv": "http://www.stoa.fi/sv/evenemang/event/1243A1C9935EF4EEEB706E98C8E0280E/Mehrnoosh_Zolfaghari_Awakening_Senase_DJ_Bunuel", "en": "http://www.stoa.fi/en/events/event/1243A1C9935EF4EEEB706E98C8E0280E/Mehrnoosh_Zolfaghari_Awakening_Senase_DJ_Bunuel" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Nomads Festivaalille nauttimaan unohtumattomasta illasta musiikin parissa", "sv": "Välkommen till Nomads Festivalen för att njuta av en oförglömlig kväll med musiken!", "en": "Welcome to Nomads Festival for an unforgettable evening of music!" }, "description": { "fi": "<p>Tervetuloa Nomads Festivaalille nauttimaan unohtumattomasta illasta musiikin parissa</p><p>Luvassa on lumoava Awakening-konsertti, jossa Mehrnoosh Zolfagharin sävellykset tulevalta Awakening-levyltä vievät matkalle persialaisen musiikin juurista jazzin ja maailmanmusiikin sulautumiin. Kymmenhenkinen kokoonpano yhdistää ikiaikaisia rytmejä ja moderneja sävyjä.</p><p>lllan avaa Helsinkiin juurtunut Senase Trio, jonka kolumbialaissisarukset Natalia, Sebastián ja Sergio Castrillón luovat ainutlaatuisia äänimaisemia harpun, sellon ja laulun voimin, ammentaen globaaleista ja kokeellisista vaikutteista. Tunnelmaa nostattaa legendaarinen DJ Bunuel, suomalaisen rytmimusiikin pioneeri, jonka setit ovat inspiroineet sukupolvia. Tule kokemaan musiikin yhdistävä voima!</p><p>Aikataulu:<br>klo 18 DJ Bunuel <br>klo 18.30 Senase <br>klo 19.30 DJ Bunuel<br>klo 20.15 Mehrnoosh Zolfaghari: Awakening <br>klo 21.15 DJ Bunuel</p><p>Persian juuristaan ja Iranin klassisen musiikin rikkaista perinteistä inspiroitunut Awakening on Mehrnoosh Zolfagharin konserttiohjelma. Sävellykset heijastavat ääniä, joiden parissa hän kasvoi, samalla omaksuen vaikutteita jazzista ja moninaisista musiikkikulttuureista. Kun kokoonnumme juhlistamaan musiikin voimaa, anna Awakeningin kauniiden sävelten viedä sinut matkalle – yhdistellen muinaisia persialaisia rytmejä ja melodioita nykyaikaisiin ilmauksiin sekä improvisatorisiin jazz-elementteihin.</p><p>Esiintyjät: <br>Santoor, Percussion: Mehrnoosh Zolfaghari<br>Electric Guitar: Mahan Mirarab<br>Double Bass: Nathan Riki Thomson<br>Piano: Kari Ikonen<br>Kamancha: Melisa Yildirim<br>Trumpet: Devina Boughton<br>Cello: Mila Hussein Laine<br>Drum set: Aarne Toivonen<br> <br><b>Senase</b><br>Helsingissä toimiva trio Senase koostuu kolumbialaissyntyisistä sisaruksista Natalia, Sebastián ja Sergio Castrillónista, jotka vievät kuulijan kiehtovalle äänimatkalle harpun, sellon, modifioidun sellon ja laulun kautta. Inspiroituina globaaleista äänimaisemista, klassisesta ja kokeellisesta musiikista he esittävät yhdessä luotuja omaperäisiä sävellyksiä. Senasen äänipaletti yhdistää Etelä-Amerikan ja Pohjoismaiden musiikki- ja luontoääniä, luoden ainutlaatuisia äänellisiä tunnelmia perinteisten ja laajennettujen soittotekniikoiden avulla.<br> <br><b>Kokoonpano:</b><br>Sergio Castrillón: Modifioitu sello, laulu<br>Natalia Castrillón: Kampiharppu, laulu<br>Sebastián Castrillón: Sello, laulu<br> <br><b>DJ Bunuel</b><br>DJ Bunuel on suomalaisen rytmimusiikin legenda, joka on valloittanut klubit ja radioaallot 1970-luvulta lähtien. Hänen eklektiset settinsä yhdistävät jazzin, urbaanit rytmit ja maailmanmusiikin, luoden unohtumattomia tunnelmia.</p><p>Vapaa pääsy!</p>", "sv": "<p>Välkommen till Nomads Festivalen för att njuta av en oförglömlig kväll med musiken!</p><p>En förtrollande Awakening-konsert, där Mehrnoosh Zolfagharis kompositioner från den kommande Awakening-skivan för lyssnaren på en resa från den persiska musikens rötter till sammansmältningen av jazz och världsmusik, utlovas. Sammansättningen på tio personer förenar eviga rytmer och moderna nyanser.</p><p>Kvällen öppnas av Senase Trio som rotat sig i Helsingfors. Columbianska syskonen Natalia, Sebastián och Sergio Castrillón skapar unika ljudlandskap med harpa, cello och sång genom att använda sig av globala och experimentella inrtyck. Stämningen höjs av legendariska DJ Bunuel, pionjär inom den finska rytmmusiken. Hans set har inspirerat generationer. Kom med och upplev musikens förenande kraft!</p><p>kl 18 DJ Bunuel <br>kl 18.30 Senase <br>kl 19.30 DJ Bunuel<br>kl 20.15 Mehrnoosh Zolfaghari: Awakening <br>kl 21.15 DJ Bunuel</p><p>Med inspiration från sina persiska rötter och de rika klassiska musikarven från Iran tillhör Awakening Mehrnoosh Zolfagharis konsertprogram. Kompositionerna återspeglar ljud, bland vilka han växte upp, samtidigt som han tillägnade sig verkningar av jazz och mångahanda musikkulturer. När vi samlas för att fira musikens kraft, låt Awakenings vackra toner föra dig på en resa – genom att förena fornpersiska rytmer och melodier med nutida uttryck och improvisatoriska jazzelement.</p><p>Artister: <br>Santoor, Percussion: Mehrnoosh Zolfaghari<br>Electric Guitar: Mahan Mirarab<br>Double Bass: Nathan Riki Thomson<br>Piano: Kari Ikonen<br>Kamancha: Melisa Yildirim<br>Trumpet: Devina Boughton<br>Cello: Mila Hussein Laine<br>Drum set: Aarne Toivonen<br> <br><b>Senase</b><br>Senase, triot från Helsingfors, består av syskonen Natalia, Sebastián och Sergio Castrillón som fötts i Columbia. De för lyssnaren på en fascinerande ljudresa med hjälp av harpa, cello, modifierad cello och sång. Inspirerade av globala ljudlandskap, klassisk och experimentell musik framför de orginella musikstycken som de tillsammans skapat. Senases ljudpalett förenar musik- och naturljud från Sydafrika och nordiska länder, genom att skapa unika ljudliga stämningar med hjälp av traditionella och omfattande speltekniker.<br> <br><b>Sammansättning:</b><br>Sergio Castrillón: Modifierad cello, sång<br>Natalia Castrillón: Vevlira, sång<br>Sebastián Castrillón: Cello, sång</p><p><b>DJ Bunuel</b><br>DJ Bunuel är en legend inom den finska rytmmusiken, som har intagit klubbar och radiovågorna sedan 1970-talet. Hans eklektiska set förenar jazz, urbana rytmer och världsmusik, genom att skapa oförglömlig stämning.</p><p>Fritt inträde!</p>", "en": "<p>Welcome to Nomads Festival for an unforgettable evening of music!</p><p>The evening’s enchanting Awakening concert, with compositions from Mehrnoosh Zolfaghari's forthcoming Awakening album, will take you on a journey from the roots of Persian music to the fusion of jazz and world music. The ten-person ensemble combines ancient rhythms with modern tones.</p><p>The evening will be off to a great start with the Senase Trio, whose Colombian siblings Natalia, Sebastián and Sergio Castrillón create unique soundscapes with harp, cello and vocals, drawing on global and experimental influences. The evening’s energy will be fuelled even further by the legendary DJ Bunuel, a pioneer of Finnish rhythm music whose sets have inspired generations. Come and experience the unifying power of music!</p><p>18 DJ Bunuel <br>18.30 Senase <br>19.30 DJ Bunuel<br>20.15 Mehrnoosh Zolfaghari: Awakening <br>21.15 DJ Bunuel</p><p>Mehrnoosh Zolfaghari's concert programme, Awakening, is inspired by her Persian roots and the rich traditions of Iranian classical music. The compositions reflect the sounds she grew up with, while taking influences from jazz and diverse musical cultures. As we come together to celebrate the power of music, let the beautiful melodies of Awakening take you on a journey that combines ancient Persian rhythms and melodies with contemporary expressions and improvisational jazz elements.</p><p>Performers: <br>Santoor, Percussion: Mehrnoosh Zolfaghari<br>Electric Guitar: Mahan Mirarab<br>Double Bass: Nathan Riki Thomson<br>Piano: Kari Ikonen<br>Kamancha: Melisa Yildirim<br>Trumpet: Devina Boughton<br>Cello: Mila Hussein Laine<br>Drum set: Aarne Toivonen<br> <br><b>Senase</b><br>The Helsinki-based trio Senase consists of Colombian-born siblings Natalia, Sebastián and Sergio Castrillón, who take their audience on a fascinating soundscape journey through the melodies of harp, cello, modified cello and vocals. Inspired by global soundscapes, as well as classical and experimental music, they perform original compositions that they have created together. Senase's sound palette combines music and natural sounds from South America and the Nordic countries, creating unique soundscapes through traditional and extended instrumental techniques.<br> <br><b>Composition:</b><br>Sergio Castrillón: Modified cello, vocals<br>Natalia Castrillón: Wheelharp, vocals<br>Sebastián Castrillón: Cello, vocals</p><p><b>DJ Bunuel</b><br>DJ Bunuel is a legend of Finnish rhythm music, who has been conquering clubs and radio waves since the 1970s. His eclectic sets combine jazz, urban rhythms and world music, creating unforgettable atmospheres.</p><p>Free entry!</p>" }, "provider": null, "name": { "fi": "Mehrnoosh Zolfaghari: Awakening | Senase | DJ Bunuel – Nomads Festival", "sv": "Mehrnoosh Zolfaghari: Awakening | Senase | DJ Bunuel – Nomads Festival", "en": "Mehrnoosh Zolfaghari: Awakening | Senase | DJ Bunuel – Nomads Festival" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66655/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66963", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "13/14 €", "en": "13/14 €" }, "description": null, "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo", "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490608, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-03T09:13:54.392799Z", "last_modified_time": "2025-09-03T09:13:54.392815Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776934.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490608/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-03T09:13:54.214055Z", "last_modified_time": "2025-09-03T09:13:54.604238Z", "date_published": null, "start_time": "2025-09-26T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/10803C9759D7A33FDA064605088BE623/Nama_pienet_asiat", "en": "http://www.savoyteatteri.fi/en/events/event/10803C9759D7A33FDA064605088BE623/Small_Things_Like_These" }, "provider_contact_info": null, "short_description": { "fi": "Cillian Murphy vie jalat alta Claire Keeganin romaaniin perustuvassa draamassa, jossa Irlannin lähihistorian synkkä salaisuus lyö perheenisän sydämen säpäleiksi.", "en": "Cillian Murphy wows as a father, whose heart is shattered by a dark secret from Ireland’s recent past, in this drama based on Claire Keegan’s novel." }, "description": { "fi": "<p>Cillian Murphy vie jalat alta Claire Keeganin romaaniin perustuvassa draamassa, jossa Irlannin lähihistorian synkkä salaisuus lyö perheenisän sydämen säpäleiksi.</p><p>Vuonna 1985 harmaassa ja sateisessa Kaakkois-Irlannissa ahkera kivihiilikauppias Bill Furlong odottaa perheineen joulua. Perheessä on viisi tytärtä eikä rahaa ole paljon, mutta hyväsydäminen Bill antaa tästä huolimatta kolikoitaan vähempiosaisille. Hiilitoimitusta viedessään Bill näkee nuoren naisen, jota raahataan väkisin katolisen kirkon pyörittämään Magdalena-pesulaan. Bill järkyttyy näystä pahoin, ja muistot omasta rikkonaisesta lapsuudesta hyökyvät vasten kasvoja. Hän haluaisi auttaa naisia, mutta vaimo Eileen käskee unohtamaan asian peläten tyttäriensä kokevan saman kohtalon katolisen kirkon käsissä.</p><p>Ohjaaja Tim Mielants ja mestarinäyttelijä Cillian Murphy käsittelevät taitavasti ja tunteellisesti Irlannin kollektiivista traumaa yhden ihmisen kokemusten kautta Claire Keeganin kirjaan perustuvassa elokuvassa. Vuosina 1922–1998 kymmeniätuhansia naisia vangittiin katolisen kirkon pyörittämiin Magdalena-pesuloihin ”sopimattoman käytöksen” kuten avioliiton ulkopuolisen raskauden vuoksi. Neljäsosa heistä joutui niihin valtion lähettämänä, ja epäinhimillisissä olosuhteissa kymmenesosa työhön pakotetuista naisista kuoli. Trauma elää yhä valtion anteeksipyynnöistä huolimatta.</p><p>Jaakko Jokinen</p><p>Ohjaus Tim Mielants<br>Näyttelijät Cillian Murphy, Eileen Walsh, Emily Watson, Clare Dunne,<br>Maa Irlanti, Belgia, Yhdysvallat<br>Kielet englanti, iiri<br>Tekstitykset suomi, ruotsi<br>Ikäraja K7<br>Kesto 98 min<br>Teema Historia uusiksi<br>Avainsanat Naiskuvia, Historia, Usko, Angsti, Yhteiskunta, Perustuu tositapahtumiin, Tekstitetty/puhuttu suomeksi<br>Vuosi 2024<br>Alkuperäinen nimi Small Things Like These<br>Levittäjä Cinemanse</p>", "en": "<p>Cillian Murphy wows as a father, whose heart is shattered by a dark secret from Ireland’s recent past, in this drama based on Claire Keegan’s novel.</p><p>The year is 1985 and Bill Furlong, a hardworking coal merchant, is waiting for Christmas in grey and rainy southeast Ireland with his family. The family has five daughters and money is tight, but generous Bill still donates money to those less fortunate than himself. When delivering coal to a client, Bill sees a young woman being dragged against her will to work in the Magdalene laundrette operated by the Catholic Church. Bill is shocked by this sight, and memories of his own troubled childhood hit him hard. He would like to help the women working in the laundrette, but his wife Eileen tells him to forget the whole thing, fearing that their daughters would face the same fate.</p><p>In Small Things Like These, based on Claire Keegan’s novel, director Tim Mielants and the masterful Cillian Murphy handle with great skill and sensitivity Ireland’s collective trauma through the experiences of one person. Between 1922 and 1998, tens of thousands of women were captured and forced to work in the Magdalene laundrettes by the Catholic Church, on account of “inappropriate behaviour,” such as pregnancy outside marriage. One quarter of them were sent to these laundrettes by the state, and one tenth of the women forced to work in inhumane conditions died. The trauma still lives on regardless of the state’s official apologies.</p><p>Jaakko Jokinen (translated by Herman Tikkanen)</p><p>Director Tim Mielants<br>Starring Cillian Murphy, Eileen Walsh, Emily Watson, Clare Dunne,<br>Country Ireland, Belgium, United States<br>Languages English, Irish Gaelic<br>Subtitles Finnish, Swedish<br>Age limit K7<br>Duration 98 min<br>Theme Rewrite History<br>Keywords Female stories, History, Faith, Angst, Society, Based on true events, Subtitled/spoken in Finnish<br>Year 2024<br>Original name Small Things Like These<br>Distributor Cinemanse</p>" }, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "name": { "fi": "Nämä pienet asiat – Rakkautta & Anarkiaa 18.–28.9.2025", "en": "Small Things Like These – Love & Anarchy 18.–28.9.2025" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66963/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22nvci", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15396/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/697945953300836/697945976634167/", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nsxa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ntja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nt4u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nupm/?format=api" } ], "images": [ { "id": 1490206, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-08T11:27:18.262825Z", "last_modified_time": "2025-07-08T11:27:18.262844Z", "name": "Nöykkiön lukupiiri, syksy 2025", "url": "https://tapahtumasyotto.espoo.fi/media/images/a1553346-4b82-4ec2-a409-fc55b44a5374.png", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Avoimia kirjoja ympyrässä. Kuvaa reunustavat kansikuvat neljästä eri teoksesta.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490206/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-07-08T11:40:02.312868Z", "last_modified_time": "2025-09-03T08:51:43.759081Z", "date_published": null, "start_time": "2025-09-08T15:00:00Z", "end_time": "2025-12-01T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa lukupiiriin! Lukupiirin kirjat on valittu niin, että ne kiinnostavat kaikkia yläkoulusta ylöspäin. ", "sv": "Välkommen till bokcirkeln på finska! Böckerna är utvalda för att passa alla från högstadiet och uppåt.", "en": "Welcome to the book club in Finnish! The books have been selected to appeal to everyone from secondary school upwards." }, "description": { "fi": "<p>Lukupiiri Nöykkiön kirjastossa joka kuun ensimmäinen torstai syyskuusta 2025 alkaen klo 18-19:30. Huomaa päivitetty aikataulu!</p><p><br></p><p><strong>Ma 8.9. Frankenstein - Mary Shelley </strong></p><p><strong>Ma 6.10. Jumalat juhlivat öisin - Donna Tartt</strong></p><p><strong>Ma 3.11. Nälkäpeli trilogia - Suzanne Collins </strong></p><p><strong>Ma 1.12. Pikku prinssi - Antoine de Saint-Exupéry</strong></p><p><br></p><p>Tervetuloa lukupiiriin! Lukupiirin kirjat on valittu niin, että ne kiinnostavat kaikkia yläkoulusta ylöspäin. </p><p>Voit osallistua lukupiiriin myös, vaikka et olisi ehtinyt lukea kirjaa kokonaan - tai ollenkaan. Ei ennakkoilmoittautumista. Lämpimästi tervetuloa mukaan! Lukupiirissä keskustelua ohjaa vapaaehtoinen.</p>", "sv": "<p>Bokcirkeln på finska på Nöykkiö bibliotek varje första torsdag i månaden från september 2025 kl. 18-19:30. Observera det uppdaterade schemat!</p><p><br></p><p><strong>mån. 8.9. Frankenstein - Mary Shelley </strong></p><p><strong>mån. 6.10. Jumalat juhlivat öisin - Donna Tartt</strong></p><p><strong>mån. 3.11. Nälkäpeli trilogia - Suzanne Collins </strong></p><p><strong>mån. 1.12. Pikku prinssi - Antoine de Saint-Exupéry</strong></p><p><br></p><p>Välkommen till bokcirkeln! Böckerna är utvalda för att passa alla från högstadiet och uppåt.</p><p>Du kan delta i läsecirkeln även om du inte har hunnit läsa boken i sin helhet - eller överhuvudtaget. Ingen föranmälan krävs. Du är varmt välkommen att vara med! Diskussionen leds av en volontär.</p>", "en": "<p>Book club in Finnish at Nöykkiö Library every first Thursday of the month from September 2025 at 18-19:30. Please note the updated schedule!</p><p><br></p><p><strong>Mon. 8.9. Frankenstein - Mary Shelley </strong></p><p><strong>Mon. 6.10. Jumalat juhlivat öisin - Donna Tartt</strong></p><p><strong>Mon. 3.11. Nälkäpeli trilogia - Suzanne Collins </strong></p><p><strong>Mon. 1.12. Pikku prinssi - Antoine de Saint-Exupéry</strong></p><p><br></p><p>Welcome to the book club! The books have been selected to appeal to everyone from secondary school upwards.</p><p>You can take part in the reading circle even if you haven't had time to read the book in full - or at all. No pre-registration required. You are warmly welcome to join us! The discussion will be led by a volunteer.</p>" }, "provider": null, "name": { "fi": "Nöykkiön kirjaston lukupiiri", "sv": "Nöykis biblioteks bokcirkel", "en": "Nöykkiö library's book club" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nvci/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmq5l4txm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22axnq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:tyt", "sub_events": [], "images": [ { "id": 1490604, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-12T07:54:23.406874Z", "last_modified_time": "2025-08-12T07:54:23.406887Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/d9508152-1858-432c-a731-a761b8a17c8a.png", "cropping": "168,0,682,514", "photographer_name": "", "alt_text": "Espoolaisten ideasprintti: Kaupunkikeskukset 2060 -näyttely Lippulaivan kirjastossa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490604/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-12T07:05:11.278111Z", "last_modified_time": "2025-09-03T07:47:10.135318Z", "date_published": null, "start_time": "2025-09-01T05:00:00Z", "end_time": "2025-09-14T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "https://www.espoo.fi/fi/asuminen-ja-rakentaminen/kaupunkisuunnittelu/yleiskaavoitus/espoolaisten-ideasprintti-kaupunkikeskukset-2060" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Kaupunkikeskukset 2060 -näyttelyyn! Näyttelyssä on esillä asukkaiden toteuttamia ideatöitä Espoon kaupunkikeskusten tulevaisuudesta." }, "description": { "fi": "<p>Tervetuloa Kaupunkikeskukset 2060 -näyttelyyn Lippulaivan kirjastoon! Näyttelyssä on esillä asukkaiden toteuttamia ideatöitä Espoon kaupunkikeskusten tulevaisuudesta. Työt ovat esillä näyttelyseinällä monitoimitila Salongissa. </p><p>Espoolaisten ideasprintti – Kaupunkikeskukset 2060 -työpajasarjassa asukkaat pääsivät ideoimaan toivottavaa tulevaisuutta Espoon kaupunkikeskuksille. </p><p>Osallistujien tehtävänä oli muodostaa pienryhmissä yhteinen visio kaupunkikeskusten tulevaisuudesta sekä siitä, mitä sen toteutuminen edellyttäisi. </p><p>Ryhmät esittivät visionsa ideatöinä, joita hyödynnetään Espoon yleiskaava 2060:n valmistelussa. Näyttelyn avulla haluamme jatkaa keskustelua kaupunkikeskusten tulevaisuudesta kaikkien espoolaisten kanssa. </p><p>Kaikki ideatyöt ovat esillä kaikissa näyttelypaikoissa.</p><p>Näyttely toteutetaan kirjastoissa ja Espoon kulttuurikeskuksessa 1.9.-14.9.2025. <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agmjqzppje\">Katso kaikki näyttelypaikat näyttelyn pääsivulta.</a></p>" }, "provider": null, "name": { "fi": "Kaupunkikeskukset 2060 -näyttely Lippulaivan kirjastossa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmq5l4txm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmq5l4ume", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22axnq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:tyt", "sub_events": [], "images": [ { "id": 1490605, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-12T07:55:05.156196Z", "last_modified_time": "2025-08-12T07:55:05.156212Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/1d568d95-65cd-4140-bf8c-892c4ea41e19.png", "cropping": "168,0,682,514", "photographer_name": "", "alt_text": "Espoolaisten ideasprintti: Kaupunkikeskukset 2060 -näyttely Ison Omenan kirjastossa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490605/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-12T07:13:03.137764Z", "last_modified_time": "2025-09-03T07:46:33.016318Z", "date_published": null, "start_time": "2025-09-01T05:00:00Z", "end_time": "2025-09-14T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "https://www.espoo.fi/fi/asuminen-ja-rakentaminen/kaupunkisuunnittelu/yleiskaavoitus/espoolaisten-ideasprintti-kaupunkikeskukset-2060" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Kaupunkikeskukset 2060 -näyttelyyn! Näyttelyssä on esillä asukkaiden toteuttamia ideatöitä Espoon kaupunkikeskusten tulevaisuudesta." }, "description": { "fi": "<p>Tervetuloa Kaupunkikeskukset 2060 -näyttelyyn Ison Omenan kirjastoon! Näyttelyssä on esillä asukkaiden toteuttamia ideatöitä Espoon kaupunkikeskusten tulevaisuudesta. Työt ovat esillä Pajan lasiseinillä. </p><p>Espoolaisten ideasprintti – Kaupunkikeskukset 2060 -työpajasarjassa asukkaat pääsivät ideoimaan toivottavaa tulevaisuutta Espoon kaupunkikeskuksille. </p><p>Osallistujien tehtävänä oli muodostaa pienryhmissä yhteinen visio kaupunkikeskusten tulevaisuudesta sekä siitä, mitä sen toteutuminen edellyttäisi. </p><p>Ryhmät esittivät visionsa ideatöinä, joita hyödynnetään Espoon yleiskaava 2060:n valmistelussa. Näyttelyn avulla haluamme jatkaa keskustelua kaupunkikeskusten tulevaisuudesta kaikkien espoolaisten kanssa. </p><p>Kaikki ideatyöt ovat esillä kaikissa näyttelypaikoissa.</p><p>Näyttely toteutetaan kirjastoissa ja Espoon kulttuurikeskuksessa 1.9.-14.9.2025. <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agmjqzppje\">Katso kaikki näyttelypaikat näyttelyn pääsivulta</a>.</p>" }, "provider": null, "name": { "fi": "Kaupunkikeskukset 2060 -näyttely Ison Omenan kirjastossa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmq5l4ume/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmq5l4u4q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22axnq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:tyt", "sub_events": [], "images": [ { "id": 1490606, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-12T07:53:44.304953Z", "last_modified_time": "2025-08-12T07:53:44.304968Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/f392f115-24c4-4feb-8170-bc6882ce2298.png", "cropping": "354,0,1432,1079", "photographer_name": "", "alt_text": "Espoolaisten ideasprintti: Kaupunkikeskukset 2060 -näyttely Sellon kirjastossa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490606/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-12T07:08:47.075327Z", "last_modified_time": "2025-09-03T07:45:43.713542Z", "date_published": null, "start_time": "2025-09-01T05:00:00Z", "end_time": "2025-09-14T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "https://www.espoo.fi/fi/asuminen-ja-rakentaminen/kaupunkisuunnittelu/yleiskaavoitus/espoolaisten-ideasprintti-kaupunkikeskukset-2060" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Kaupunkikeskukset 2060 -näyttelyyn! Näyttelyssä on esillä asukkaiden toteuttamia ideatöitä Espoon kaupunkikeskusten tulevaisuudesta." }, "description": { "fi": "<p>Tervetuloa Kaupunkikeskukset 2060 -näyttelyyn Sellon kirjastoon! Näyttelyssä on esillä asukkaiden toteuttamia ideatöitä Espoon kaupunkikeskusten tulevaisuudesta. Työt ovat esillä kirjaston aulassa sermeillä. </p><p>Espoolaisten ideasprintti – Kaupunkikeskukset 2060 -työpajasarjassa asukkaat pääsivät ideoimaan toivottavaa tulevaisuutta Espoon kaupunkikeskuksille. </p><p>Osallistujien tehtävänä oli muodostaa pienryhmissä yhteinen visio kaupunkikeskusten tulevaisuudesta sekä siitä, mitä sen toteutuminen edellyttäisi. </p><p>Ryhmät esittivät visionsa ideatöinä, joita hyödynnetään Espoon yleiskaava 2060:n valmistelussa. Näyttelyn avulla haluamme jatkaa keskustelua kaupunkikeskusten tulevaisuudesta kaikkien espoolaisten kanssa. </p><p>Kaikki ideatyöt ovat esillä kaikissa näyttelypaikoissa.</p><p>Näyttely toteutetaan kirjastoissa ja Espoon kulttuurikeskuksessa 1.9.-14.9.2025. <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agmjqzppje\">Katso kaikki näyttelypaikat näyttelyn pääsivulta</a>.</p>" }, "provider": null, "name": { "fi": "Kaupunkikeskukset 2060 -näyttely Sellon kirjastossa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmq5l4u4q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmq5l4vni", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22axnq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:tyt", "sub_events": [], "images": [ { "id": 1490607, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-12T07:53:03.327097Z", "last_modified_time": "2025-08-12T07:53:03.327110Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/6b395307-b767-4738-a7a8-43e7e9839978.png", "cropping": "168,0,682,514", "photographer_name": "", "alt_text": "Espoolaisten ideasprintti: Kaupunkikeskukset 2060 -näyttely Entressen kirjastossa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490607/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T12:25:30.417882Z", "last_modified_time": "2025-09-03T07:45:18.599459Z", "date_published": null, "start_time": "2025-09-01T05:00:00Z", "end_time": "2025-09-14T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Kaupunkikeskukset 2060 -näyttelyyn! Näyttelyssä on esillä asukkaiden toteuttamia ideatöitä Espoon kaupunkikeskusten tulevaisuudesta." }, "description": { "fi": "<p>Tervetuloa Kaupunkikeskukset 2060 -näyttelyyn Entressen kirjastoon! Näyttelyssä on esillä asukkaiden toteuttamia ideatöitä Espoon kaupunkikeskusten tulevaisuudesta. Työt ovat esillä Valatori-seinällä kirjaston keskellä. </p><p>Espoolaisten ideasprintti – Kaupunkikeskukset 2060 -työpajasarjassa asukkaat pääsivät ideoimaan toivottavaa tulevaisuutta Espoon kaupunkikeskuksille. </p><p>Osallistujien tehtävänä oli muodostaa pienryhmissä yhteinen visio kaupunkikeskusten tulevaisuudesta sekä siitä, mitä sen toteutuminen edellyttäisi. </p><p>Ryhmät esittivät visionsa ideatöinä, joita hyödynnetään Espoon yleiskaava 2060:n valmistelussa. Näyttelyn avulla haluamme jatkaa keskustelua kaupunkikeskusten tulevaisuudesta kaikkien espoolaisten kanssa. </p><p>Kaikki ideatyöt ovat esillä kaikissa näyttelypaikoissa.</p><p>Näyttely toteutetaan kirjastoissa ja Espoon kulttuurikeskuksessa 1.9.-14.9.2025. <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agmjqzppje\">Katso kaikki näyttelypaikat näyttelyn pääsivulta</a>.</p>" }, "provider": null, "name": { "fi": "Kaupunkikeskukset 2060 -näyttely Entressen kirjastossa " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmq5l4vni/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66395", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/jore-zpoppa/jore-zpoppa-malmitalo-3904975/", "sv": "https://www.lippu.fi/artist/jore-zpoppa/jore-zpoppa-malmitalo-3904975/", "en": "https://www.lippu.fi/artist/jore-zpoppa/jore-zpoppa-malmitalo-3904975/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1163428, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T11:12:24.613330Z", "last_modified_time": "2025-07-02T11:12:24.613345Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774028.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1163428/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-02T11:12:24.560862Z", "last_modified_time": "2025-09-03T07:13:44.469448Z", "date_published": null, "start_time": "2025-09-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2AEBA12ABAA6C7BBB92400368B6E9CA7/Jore_Zpoppa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2AEBA12ABAA6C7BBB92400368B6E9CA7/_Jore_Zpoppa", "en": "http://www.malmitalo.fi/en/events/event/2AEBA12ABAA6C7BBB92400368B6E9CA7/_Jore_Zpoppa" }, "provider_contact_info": null, "short_description": { "fi": "Pohjois-Helsingistä kotoisin oleva Jore & Zpoppa on tällä hetkellä yksi Suomen kiinnostavimmista rap-ilmiöistä.", "sv": "Jore & Zpoppa från Norra Helsingfors är ett av de mest intressanta rapfenomenen i Finland just nu.", "en": "Hailing from Northern Helsinki, Jore & Zpoppa are currently one of Finland's most exciting rap phenomena." }, "description": { "fi": "<p>Pohjois-Helsingistä kotoisin oleva Jore & Zpoppa on tällä hetkellä yksi Suomen kiinnostavimmista rap-ilmiöistä.</p><p>Vuodesta 2018 lähtien yhdessä musiikkia tehneet veljekset ovat tunnettuja koukuttavista melodioistaan sekä klubeja järisyttävästä tuotannostaan, joka vangitsee kuulijan heti ensitahdeilla.</p><p>Vuonna 2023 julkaistu debyyttialbumi \"LOVE SZN\" keräsi suurta suosiota ja Spotifyn kärkisijoille noussut jättihitti \"Heikkouteni\" nosti parivaljakon nimen koko kansan huulille. Kotimaisen musiikkikentän mielenkiintoisin sekä persoonallisin duo julkaisi keväällä 2025 ennakkoon platinaa striimanneen kakkosalbuminsa \"Monsteri\", jonka isoimmaksi hitiksi on noussut “MVP” (feat. ibe & Elastinen). Jore & Zpoppa tuovat lavalle energian, joka kaikkien täytyy kokea livenä.</p><p>Kesto: n. 40 min</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-20296403/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Jore & Zpoppa från Norra Helsingfors är ett av de mest intressanta rapfenomenen i Finland just nu.</p><p>Bröderna, som gjort musik tillsammans sedan 2018, är kända för sina medryckande melodier och för sin produktion som försätter klubbarna i skakning och fängslar lyssnaren från första takten.</p><p>Deras debutalbum LOVE SZN, som släpptes 2023, blev en stor framgång och den stora hiten Heikkouteni som nådde toppen av Spotify gjorde att duon blev känd i hela landet. Den intressantaste och personligaste duon på det inhemska musikfältet gav våren 2025 på förhand ut sitt andra album, Monster, som streamade platina, där MVP har blivit den största hitten (feat. ibe & Elastinen). Jore & Zpoppa ger en energi till scenen som alla behöver uppleva live.</p><p>Längd: cirka 40 minuter</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-20296403/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Hailing from Northern Helsinki, Jore & Zpoppa are currently one of Finland's most exciting rap phenomena.</p><p>The brothers, who have been making music together since 2018, are known for their catchy melodies and club-shaking production that grabs listeners from the first beat.</p><p>Their 2023 debut album LOVE SZN gained massive popularity, and the mega hit Heikkouteni soared to the top of Spotify charts, putting the duo's name on everyone's lips. Finland's most intriguing and distinctive music duo released their second album, Monsteri, in spring 2025, which had already streamed platinum before its release and spawned the major hit MVP (feat. ibe & Elastinen). Jore & Zpoppa bring their unmatched energy on the stage, which everyone must simply experience live.</p><p>Duration: about 40 min</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20296403/?affiliate=FSF\">HERE</a></u></p>" }, "provider": null, "name": { "fi": "Jore & Zpoppa", "sv": "Jore & Zpoppa", "en": "Jore & Zpoppa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66395/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22vymy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490269, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-06-03T10:47:28.585339Z", "last_modified_time": "2025-06-03T10:47:28.585354Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/af0c72f1-57a2-4971-88a8-9cea708cea22.png", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "lankakeriä kasassa metallisessa korissa, muutama puinen kudinpuikko pystyssä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490269/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-06-03T10:50:56.288172Z", "last_modified_time": "2025-09-03T06:54:18.066374Z", "date_published": null, "start_time": "2025-09-08T05:00:00Z", "end_time": "2025-09-19T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Jätä lahjoitus henkilökunnalle" }, "info_url": { "fi": "https://www.siskotjasimot.fi/" }, "provider_contact_info": null, "short_description": { "fi": "Kampanjalla luodaan iloa ikäihmisten elämään jakamalla heille vapaaehtoisten valmistamia käsitöitä. " }, "description": { "fi": "<p>Siskot ja Simot kutsuu sinut mukaan Tehdään yllätyksiä ikäihmisille -kädentaitokampanjaan. Kampanjalla luodaan iloa ikäihmisten elämään jakamalla heille vapaaehtoisten valmistamia käsitöitä.</p><p><br></p>\n<strong>Kampanja alkaa 2.6 ja tuotteiden keräysaika on 8.- 19.9.</strong><p>Voit omaan tahtiin virkata, kutoa, ommella, maalata tai nikkaroida lahjan kotona, mökillä tai vaikka pihakeinussa. Mitä vain, mikä ilahduttaa lahjan saavaa ikäihmistä. Huomioithan, että tuotosten materiaalit ovat turvallisia, puhtaita ja pilaantumattomia. Käsityö on oltava kooltaan ja muodoltaan helposti kuljetettavissa keräyksen kautta kohteisiinsa.</p><p>Tempauksessa kerätyt uudet kotitekoiset yllätykset lahjoitetaan ikäihmisille mm. palvelukotien ja kotihoidon asiakkaille. Siskot ja Simot organisoivat yllätykset paikkakunnan ikäihmisille yhteistyökumppaneidensa kanssa</p><p>LISÄTIETOJA: maarit.tuomiranta@siskotjasimot.fi</p>" }, "provider": { "fi": "Siskot ja Simot ry" }, "name": { "fi": "Tehdään yllätyksiä ikäihmisille -kädentaitokampanja" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vymy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmq46b3ri", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmq46b754/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490603, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-08-20T10:07:14.081008Z", "last_modified_time": "2025-09-03T06:40:31.214158Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/entresse_babykino_ja_perheleffat4_1.png", "cropping": "420,0,1500,1080", "photographer_name": "Canva", "alt_text": "perheleffat juliste", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490603/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-09-03T06:49:33.300205Z", "last_modified_time": "2025-09-03T06:49:33.300221Z", "date_published": null, "start_time": "2025-12-13T11:00:00Z", "end_time": "2025-12-13T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Sininen huone" }, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat" }, "provider_contact_info": null, "short_description": { "fi": "Perheleffat lauantaisin kirjastolla klo 13 " }, "description": { "fi": "<p>PERHELEFFAT LAUANTAISIN KLO 13</p><p>9.8.2025</p><p>23.8.2025</p><p>6.9.2025</p><p>20.9.2025</p><p>4.10.2025</p><p>18.10.2025</p><p>1.11.2025</p><p>15.11.2025</p><p>29.11.2025</p><p>13.12.2025</p><p><br></p><p>Elokuvat tarkoitettu lapsille ja lapsiperheille</p><p>Leffat K7</p><p>Alle 7-vuotiaat vain huoltajan seurassa</p><p>Lapset saavat valita elokuvan kahdesta vaihtoehdosta äänestyksellä</p><p>Elokuva on maksuton</p><p>TERVETULOA ELOKUVIIN!</p><p><br></p><p>Järjestäjä: kirjasto</p>" }, "provider": null, "name": { "fi": "Perheleffa " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmq46b3ri/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmq46b4lq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmq46b754/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490603, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-08-20T10:07:14.081008Z", "last_modified_time": "2025-09-03T06:40:31.214158Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/entresse_babykino_ja_perheleffat4_1.png", "cropping": "420,0,1500,1080", "photographer_name": "Canva", "alt_text": "perheleffat juliste", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490603/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-09-03T06:49:33.221436Z", "last_modified_time": "2025-09-03T06:49:33.221452Z", "date_published": null, "start_time": "2025-11-29T11:00:00Z", "end_time": "2025-11-29T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Sininen huone" }, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat" }, "provider_contact_info": null, "short_description": { "fi": "Perheleffat lauantaisin kirjastolla klo 13 " }, "description": { "fi": "<p>PERHELEFFAT LAUANTAISIN KLO 13</p><p>9.8.2025</p><p>23.8.2025</p><p>6.9.2025</p><p>20.9.2025</p><p>4.10.2025</p><p>18.10.2025</p><p>1.11.2025</p><p>15.11.2025</p><p>29.11.2025</p><p>13.12.2025</p><p><br></p><p>Elokuvat tarkoitettu lapsille ja lapsiperheille</p><p>Leffat K7</p><p>Alle 7-vuotiaat vain huoltajan seurassa</p><p>Lapset saavat valita elokuvan kahdesta vaihtoehdosta äänestyksellä</p><p>Elokuva on maksuton</p><p>TERVETULOA ELOKUVIIN!</p><p><br></p><p>Järjestäjä: kirjasto</p>" }, "provider": null, "name": { "fi": "Perheleffa " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmq46b4lq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmq46b46i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmq46b754/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490603, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-08-20T10:07:14.081008Z", "last_modified_time": "2025-09-03T06:40:31.214158Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/entresse_babykino_ja_perheleffat4_1.png", "cropping": "420,0,1500,1080", "photographer_name": "Canva", "alt_text": "perheleffat juliste", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490603/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-09-03T06:49:33.142477Z", "last_modified_time": "2025-09-03T06:49:33.142492Z", "date_published": null, "start_time": "2025-11-15T11:00:00Z", "end_time": "2025-11-15T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Sininen huone" }, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat" }, "provider_contact_info": null, "short_description": { "fi": "Perheleffat lauantaisin kirjastolla klo 13 " }, "description": { "fi": "<p>PERHELEFFAT LAUANTAISIN KLO 13</p><p>9.8.2025</p><p>23.8.2025</p><p>6.9.2025</p><p>20.9.2025</p><p>4.10.2025</p><p>18.10.2025</p><p>1.11.2025</p><p>15.11.2025</p><p>29.11.2025</p><p>13.12.2025</p><p><br></p><p>Elokuvat tarkoitettu lapsille ja lapsiperheille</p><p>Leffat K7</p><p>Alle 7-vuotiaat vain huoltajan seurassa</p><p>Lapset saavat valita elokuvan kahdesta vaihtoehdosta äänestyksellä</p><p>Elokuva on maksuton</p><p>TERVETULOA ELOKUVIIN!</p><p><br></p><p>Järjestäjä: kirjasto</p>" }, "provider": null, "name": { "fi": "Perheleffa " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmq46b46i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 4968, "next": "