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=269
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=270", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=268" }, "data": [ { "id": "kulke:65589", "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: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: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: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": "10 €", "sv": "10 €", "en": "10 €" }, "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-kino-vuotalo-vuotalo-19539982/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-kino-vuotalo-vuotalo-19539982/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-kino-vuotalo-vuotalo-19539982/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 195524, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-05T13:13:16.187672Z", "last_modified_time": "2025-02-05T13:13:16.187685Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761788.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/195524/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-05T13:13:16.165844Z", "last_modified_time": "2025-02-05T13:13:16.241198Z", "date_published": null, "start_time": "2025-04-22T11: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, "name": { "fi": "Orenda – Ensi-iltaviikon elokuva", "sv": "Orenda – Premiärveckans film", "en": "Orenda – Premiere week film" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B76E390D9B49A5AD8C19448D169DD07E/Orenda", "sv": "http://www.vuotalo.fi/sv/evenemang/event/B76E390D9B49A5AD8C19448D169DD07E/Orenda", "en": "http://www.vuotalo.fi/en/events/event/B76E390D9B49A5AD8C19448D169DD07E/Orenda" }, "description": { "fi": "<p>Suomen kansainvälisesti juhlituimpiin ohjaajiin kuuluva Pirjo Honkasalo (mm. Betoniyö, Melancholian 3 huonetta) tekee henkeäsalpaavan paluun uutuudellaan Orenda.</p><p>Kaksi voimakastahtoista naista (Alma Pöysti ja Pirkko Saisio) kohtaavat maagisissa saaristomaisemissa. Kumpaakin kuristaa syyllisyys menetetystä miehestä, jonka muisto kietoo heidät yhteen. Mitä levoton oopperalaulaja ja äkkiväärä pappi toisistaan oikein hakevat?</p><p>Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta. Se kuljettaa katsojan saarta hellivästä kesäsateesta mieltä piiskaavan myrskyn silmään. Pirkko Saision käsikirjoituksen arvoituksellisessa vireessä soi elämän näkymätön voima, orenda.</p><p>Ohjaus: Pirjo Honkasalo<br>Käsikirjoitus: Pirkko Saisio<br>Näyttelijät: Pirkko Saisio, Alma Pöysti, Hannu-Pekka Björkman, Luca Leino</p>", "sv": "<p>Pirjo Honkasalo (bl.a. Betoniyö, Melancholian 3 huonetta) som hör till Finlands mest internationellt hyllade regissörer gör en häpnadsväckande återkomst med sin nyhetsfilm Orenda.</p><p>Två viljestarka kvinnor (Alma Pöysti och Pirkko Saisio) möter i ett magiskt ölandskap. Båda har skuldkänslor över en förlorad man vars minne flätar dem samman. Vad vill en rastlös operasångare och en lättretlig präst av varandra?</p><p>Orenda tänjer på gränser för den vardagliga verkligheten och är en flytande berättelse om nåd och stränghet. Den tar åskådaren från sommarregn som smeker ön till stormens öga som piskar sinnet. I den gåtfulla atmosfären för manuset av Pirkko Saisio klingar livets osynliga kraft, orenda.</p><p>Regi: Pirjo Honkasalo<br>Manus: Pirkko Saisio<br>I rollerna: Pirkko Saisio, Alma Pöysti, Hannu-Pekka Björkman, Luca Leino</p><p>Språk: finska<br>Textning: svenska</p>", "en": "<p>Pirjo Honkasalo (e.g. Concrete Night, The 3 Rooms of Melancholia), one of Finland’s internationally most celebrated directors, is making a breathtaking return with her newest movie Orenda.</p><p>Two strong-willed women (Alma Pöysti and Pirkko Saisio) meet in a magical archipelago landscape. Both are struggling with the guilt of a man whose memory binds them together. What is it that the restless opera singer and the extreme priest are looking for from each other?</p><p>Stretching the boundaries of everyday reality, Orenda is a flowing story of grace and austerity. It transports the viewer from the summer rain pampering the island to the eye of the storm that stirs the mind. You can hear the invisible power of life, orenda, in the mysterious tone of Pirkko Saisio’s screenplay.</p><p>Director: Pirjo Honkasalo<br>Screenplay: Pirkko Saisio<br>Cast: Pirkko Saisio, Alma Pöysti, Hannu-Pekka Björkman, Luca Leino</p><p>Language: Finnish<br>Subtitles: Swedish</p>" }, "provider_contact_info": null, "short_description": { "fi": "Suomen kansainvälisesti juhlituimpiin ohjaajiin kuuluva Pirjo Honkasalo (mm. Betoniyö, Melancholian 3 huonetta) tekee henkeäsalpaavan paluun uutuudellaan Orenda.", "sv": "Pirjo Honkasalo (bl.a. Betoniyö, Melancholian 3 huonetta) som hör till Finlands mest internationellt hyllade regissörer gör en häpnadsväckande återkomst med sin nyhetsfilm Orenda.", "en": "Pirjo Honkasalo (e.g. Concrete Night, The 3 Rooms of Melancholia), one of Finland’s internationally most celebrated directors, is making a breathtaking return with her newest movie Orenda." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65589/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:agknl6jqvu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": { "fi": "", "sv": "", "en": "" }, "info_url": null, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 195399, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-02-05T12:00:26.019956Z", "last_modified_time": "2025-02-05T12:00:52.345282Z", "name": "WhatsApp Image 2024-09-23 at 16.50.05.jpeg", "url": "https://linkedevents.api.test.hel.ninja/media/images/WhatsApp_Image_2024-09-23_at_16.50.05.jpeg", "cropping": "0,200,1200,1400", "photographer_name": "Suvi", "alt_text": "Kädet, paperityö", "data_source": "kultus", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/195399/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api" } ], "created_time": "2025-02-05T11:57:45.572084Z", "last_modified_time": "2025-02-05T12:00:52.505239Z", "date_published": null, "start_time": "2025-02-05T12:00:51.672000Z", "end_time": "2025-02-06T10: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": "2025-02-05T14:05:00+02:00", "enrolment_end_time": "2025-02-06T10:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "Testing 2", "sv": "", "en": "" }, "provider": null, "info_url": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "<p>afsdfas</p>\n", "sv": "", "en": "" }, "provider_contact_info": null, "short_description": { "fi": "Test", "sv": "", "en": "" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agknl6jqvu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65190", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "5–30 € (maksa mitä jaksat)", "sv": "5–30 € (maksa mitä jaksat)", "en": "5–30 € (maksa mitä jaksat)" }, "info_url": { "fi": "https://www.lippu.fi/artist/sointi-jazz-orchestra/wishamalii-sointi-jazz-orchestra-3793189/", "sv": "https://www.lippu.fi/artist/sointi-jazz-orchestra/wishamalii-sointi-jazz-orchestra-3793189/", "en": "https://www.lippu.fi/artist/sointi-jazz-orchestra/wishamalii-sointi-jazz-orchestra-3793189/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153312, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-09T13:14:19.940472Z", "last_modified_time": "2024-12-09T13:14:19.940489Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761783.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153312/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-09T13:14:19.913102Z", "last_modified_time": "2025-02-05T10:13:18.169781Z", "date_published": null, "start_time": "2025-04-03T15: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, "name": { "fi": "Wishamalii & Sointi Jazz Orchestra", "sv": "Wishamalii & Sointi Jazz Orchestra", "en": "Wishamalii & Sointi Jazz Orchestra" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C7D182DF9610EDE27693D27ACCFB9AE6/Wishamalii_Sointi_Jazz_Orchestra", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C7D182DF9610EDE27693D27ACCFB9AE6/Wishamalii_Sointi_Jazz_Orchestra", "en": "http://www.vuotalo.fi/en/events/event/C7D182DF9610EDE27693D27ACCFB9AE6/Wishamalii_Sointi_Jazz_Orchestra" }, "description": { "fi": "<p>Tule kokemaan kolmen seikkailunhaluisen muusikon Wishamaliin ja orkestraalisen tyylikameleontti Sointi Jazz Orchestran ensimmäinen yhteiskonsertti!</p><p>Ainutlaatuisesta musiikistaan sekä hurmaavasta lavaesiintymisestä tunnetun Wishamaliin muodostavat palestiinalais-jordanialainen laulaja-oudisti Nemat Battah, pianisti Kari Ikonen sekä etiopialaissyntyinen lyömäsoittaja Abdissa “Mamba” Assefa.</p><p>Yhtyeen nimi viittaa pohjoismaiseen tapaan tulkita arabi-andalusialaisia Muwashah-lauluja, ja suurin osa yhtyeen ohjelmistosta on kuitenkin erityisesti tälle yhtyeelle tehtyä musiikkia.</p><p>Yhteiskonsertissa kuullaan Wishamaliin uunituoreen Al-Bahr-albumin sävellyksistä juuri tätä konserttia varten tehtyjä värikylläisiä orkestraalisia sovituksia, joita lähes 20-henkinen yhtye esittää.</p><p>Tervetuloa musiikilliselle matkalle, jollaista et ole ennen kokenut!</p><p><b>Wishamalii:</b><br>Nemat Battah – laulu & Oud<br>Kari Ikonen – piano w. Maqiano™ mikroviritysjärjestelmä, moog<br>Abdissa Assefa – perkussiot</p><p>Liput: 5–30 €<br>Tässä konsertissa on käytössä \"maksa minkä voit\" -käytäntö ja voit ostaa 5–30 €:n hintaisen lipun oman tilanteesi mukaan.</p><p>Kesto: 70 min (ei väliaikaa)</p>", "sv": "<p>Kom och upplev den första gemensamma konserten med tre äventyrslystna musiker från Wishamaliin och den orkestrala stilkameleonten Sointi Jazz Orchestra!</p><p>Wishamaliin, som är känt för sin unika musik och förtjusande scenframträdande, består av den palestinsk-jordanska sångare-oudspelaren Nemat Battah, pianisten Kari Ikonen och den Etiopienfödde perkussionisten Abdissa \"Mamba\" Assefa.</p><p>Bandets namn hänvisar till ett nordiskt sätt att tolka arab-andalusiska Muwashah-sånger, och merparten av bandets repertoar är dock musik som är särskilt gjord för bandet.</p><p>På den gemensamma konserten hörs färgstarka orkesterarrangemang av kompositioner från Wishamaliins pinfärska album Al-Bahr som har gjorts speciellt för konserten. Arrangemangen framförs av en ensemble med nästan 20 musiker.</p><p>Välkommen på en musikalisk resa som du aldrig upplevt förut!</p><p><b>Wishamalii:</b><br>Nemat Battah – sång & Oud<br>Kari Ikonen – piano w. Maqiano™-mikrostämningssystem, moog<br>Abdissa Assefa – perkussion</p><p>Obs. För konserten gäller principen ”betala vad du kan”, och du kan köpa en biljett på 5–30 € enligt din egen situation.</p><p>Längd: 70 min (ingen paus)</p>", "en": "<p>Come and experience the first joint concert of the three adventurous musicians in Wishamalii and the orchestral style chameleon Sointi Jazz Orchestra!</p><p>Known for their unique music and charming stage performances, Wishamalii is made up of Palestinian-Jordanian singer and oud player Nemat Battah, pianist Kari Ikonen and Ethiopian-born percussionist Abdissa “Mamba” Assefa.</p><p>The name of the band refers to the Nordic way of interpreting Arab-Andalusian Muwashah songs. Most of the band’s repertoire, however, is music made specifically for this band.</p><p>The joint concert will feature colourful orchestral arrangements of Wishamalii’s brand new album Al-Bahr, composed particularly for this concert and performed by a band of almost 20 people.<br>Welcome to a musical journey like you have never experienced before!</p><p><b>Wishamalii:</b><br>Nemat Battah – vocals & oud<br>Kari Ikonen – piano w. Maqiano™ microtuning system, moog<br>Abdissa Assefa – percussion</p><p>Note: This concert has a “pay what you can” policy, and you can buy a ticket for €5–30, depending on your situation.</p><p>Duration: 70 min, no interval</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kokemaan kolmen seikkailunhaluisen muusikon Wishamaliin ja orkestraalisen tyylikameleontti Sointi Jazz Orchestran ensimmäinen yhteiskonsertti!", "sv": "Kom och upplev den första gemensamma konserten med tre äventyrslystna musiker från Wishamaliin och den orkestrala stilkameleonten Sointi Jazz Orchestra!", "en": "Come and experience the first joint concert of the three adventurous musicians in Wishamalii and the orchestral style chameleon Sointi Jazz Orchestra!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65190/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65584", "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: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: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: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": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 195024, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-05T09:13:17.046620Z", "last_modified_time": "2025-02-05T09:13:17.046639Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761667.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/195024/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-05T09:13:17.025640Z", "last_modified_time": "2025-02-05T09:13:17.088213Z", "date_published": null, "start_time": "2025-03-26T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Viimeinen matka – Onsdagsbio", "sv": "Den Sista Resan – Onsdagsbio", "en": "The Last Journey – Onsdagsbio" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/304B2F740FA596CE0D4F483F6856721A/Viimeinen_matka", "sv": "http://www.vuotalo.fi/sv/evenemang/event/304B2F740FA596CE0D4F483F6856721A/Den_Sista_Resan", "en": "http://www.vuotalo.fi/en/events/event/304B2F740FA596CE0D4F483F6856721A/The_Last_Journey" }, "description": { "fi": "<p>Kotimaassaan Ruotsissa yleisön rakastama elokuva on kerännyt jo yli 400.000 elokuvateatterikatsojaa!</p><p>Kun Lars Hammar jää eläkkeelle rakastamaltaan nelikymmenvuotiselta uralta ranskanopettajana, hän haaveilee ihanasta ’kolmannesta iästä’ matkoineen, viineineen ja elämyksineen yhdessä vaimonsa Tiinan kanssa.</p><p>Elämä ei kuitenkaan mene suunnitelmien mukaan. Sen sijaan, että Lars nauttisi elämästä, hän muuttuu yhä passiivisemmaksi ja välinpitämättömämmäksi ja kököttää kotonaan nahkaisessa nojatuolissaan ja saa niin Tiinan kuin heidän poikansa Filipin turhautuneeksi.</p><p>Filip saa idean ja päättää viedä hauraan isänsä matkalle Ranskaan, näkemään ja kokemaan uudelleen sen, mitä hän elämässään eniten rakasti. Suunnitelmissa on tehdä samanlainen matka kuin mitä perhe teki Filipin ollessa lapsi, elää uudelleen joukko elämän kauneimpia hetkiä ja saada näin vanhan isän elämänhalu syttymään. Filip pyytää avukseen parhaan ystävänsä Fredrikin, ottaa mukaan aimo annoksen optimismia ja kekseliäisyyttä ja pakkaa vanhan oranssin Renault 4:n. Seikkailu voi alkaa!</p><p>Kieli: ruotsi, ranska<br>Tekstitys: suomi<br>Kesto: 1h 31 min<br> <br>OHJAAJA<br>Filip Hammar, Fredrik Wikingsson<br>PÄÄOSISSA<br>Filip Hammar, Fredrik Wikingsson, Lars Hammar, Tiina Hammar, Emelie Boursault-Atlan</p><p>Dokumentti, Ruotsi 2024</p><p>Elokuva on osa Vuotalon Armas-festivaalin ohjelmaa.</p>", "sv": "<p>När Lars Hammar efter 40 år som älskad fransklärare i Köping går i pension ser han framför sig en ljuvlig “tredje ålder” med resor, vin och upplevelser tillsammans med sin fru Tiina.</p><p>Men det blir inte som han tänkt sig. I stället för att ta för sig av livets goda blir Lars alltmer passiv och viljelös hemma i sin läderfåtölj, till både Tiinas och deras son Filips stora frustration, och förtvivlan.<br>Då får Filip en idé – att ta sin skröpliga gamla far till hans älskade Frankrike och låta honom återse de platser som han älskat mest i livet. Genom att göra samma bilresa som familjen brukade göra när Filip var barn och i hemlighet iscensätta några av livets härligaste ögonblick hoppas han kunna tända Lars livsgnista igen. Till sin hjälp tar Filip sin bästa vän Fredrik, några rejäla doser optimism och påhittighet samt en gammal orange Renault 4. Äventyret kan börja! <br> <br>Språk: svenska och franska<br>Text: finska<br>Längd 1h 31 min.</p><p>REGISSÖR<br>Filip Hammar, Fredrik Wikingsson<br>LEDANDE ROLLER<br>Filip Hammar, Fredrik Wikingsson, Lars Hammar, Tiina Hammar, Emelie Boursault-Atlan</p><p>Dokumentär, Sverige 2024</p><p>Filmvisningen är en del av Nordhusets program för Armas-festivalen för seniorer.</p>", "en": "<p>Lars Hammar’s retirement didn’t go as planned.</p><p>Instead of a new beginning with travels and experiences, Lars has turned more and more passive to his wife and son Filip’s dismay. Filip gets an idea: to take his rugged old father on a journey to his beloved France and let him revisit his most beloved places. By recreating the same vacation the family used to do when Filip was a child, and secretly try and stage some wonderful moments, Filip hopes to reignite Lars’ spark again. With the help of his best friend Fredrik, a large heap of optimism and creativity, and an old Renault 4, Filip takes his father on one last adventure.<br> <br>Language: Swedish, French<br>Subtitles: Finnish<br>Duration: 1h 31 min</p><p>DIRECTOR<br>Filip Hammar, Fredrik Wikingsson<br>LEADING ROLES<br>Filip Hammar, Fredrik Wikingsson, Lars Hammar, Tiina Hammar, Emelie Boursault-Atla</p><p>Documentary, Sweden 2024</p><p>The film is part of Vuotalo´s programme for the Armas Festival for Seniors.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kotimaassaan Ruotsissa yleisön rakastama elokuva on kerännyt jo yli 400.000 elokuvateatterikatsojaa!", "sv": "När Lars Hammar efter 40 år som älskad fransklärare i Köping går i pension ser han framför sig en ljuvlig “tredje ålder” med resor, vin och upplevelser tillsammans med sin fru Tiina.", "en": "Lars Hammar’s retirement didn’t go as planned." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65584/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65583", "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/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 195023, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-05T09:13:15.741440Z", "last_modified_time": "2025-02-05T09:13:15.741456Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765414.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/195023/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-05T09:13:15.701092Z", "last_modified_time": "2025-02-05T09:13:15.803652Z", "date_published": null, "start_time": "2025-03-19T07: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, "name": { "fi": "Yläkoulukino: Nasrin’s Voice – + Q&A ohjaaja Kaisa Rastimon kanssa", "sv": "Yläkoulukino: Nasrin’s Voice – + Q&A ohjaaja Kaisa Rastimon kanssa", "en": "Yläkoulukino: Nasrin’s Voice – + Q&A ohjaaja Kaisa Rastimon kanssa" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B533A047B72CB721333F7697640716FE/Ylakoulukino_Nasrin_s_Voice", "sv": "http://www.vuotalo.fi/sv/evenemang/event/B533A047B72CB721333F7697640716FE/Ylakoulukino_Nasrin_s_Voice", "en": "http://www.vuotalo.fi/en/events/event/B533A047B72CB721333F7697640716FE/Ylakoulukino_Nasrin_s_Voice" }, "description": { "fi": "<p>Minna Canthin ja tasa-arvon päivänä Vuotalossa nähdään elokuva Nasrin's voice. Näytöksen jälkeen tekijätapaaminen elokuvan ohjaajan kanssa.</p><p>Nasrin’s voice on jännittävä nuoren tytön kasvutarina maahanmuuttobisneksessä ja -systeemissä, jonka palasia ovat kumiveneet öisellä Välimerellä, väärennettyjä passeja tehtailevat ihmisalakuljettajat, Suomen viranomaiset ja säädökset sekä kotouttamisprosessi.</p><p>Se on intensiivinen dokumenttielokuva ihmiskaupasta, itsenäistymisestä ja hinnasta, jonka nuori kurdinainen Nasrin joutuu vapaudestaan maksamaan. Samalla se on elokuva selviytymisestä, rohkeudesta ja toivosta. Kuinka lapsivaimosta ja -äidistä, joka on tarkoitettu tottelemaan ”omistajaansa”, aviomiestään, kasvaakin Suomessa itsenäinen ja rohkea nuori nainen, joka ottaa elämänsä omiin käsiinsä.</p><p>Nasrin oppii Suomessa, että miehet ja naiset ovat tasa-arvoisia. Hän ottaa avioeron pakkoavioliitostaan, mutta rangaistus tästä on julma. Ex-mies kaappaa Nasrinin kolme tytärtä Irakiin, jossa heitä odottaa äitinsä kohtalo. Mutta Nasrin ei luovuta. Hän aloittaa taistelun niin omien kuin lastensa oikeuksien puolesta.<br>Elokuvan teemana on ihmisoikeudet. Myös naisten oikeudet ovat ihmisoikeuksia. Kaikessa hurjuudessaan Nasrinin tarina on se tavallinen tarina.</p><p>Elokuvan kaikki tekijät ovat palkittuja ja kokeneita tekijöitä. Sen on ohjannut Kaisa Rastimo, kuvannut Marita Hällfors ja äänisuunnitellut Pietari Koskinen. Musiikin on tehnyt Sakari Kukko ja Piirpauke. Myös elokuvan päähenkilö Nasrin on antanut runoillaan ja teksteillään oman taiteellisen panoksensa elokuvaan.</p><p>Nasrin’s voice palkittiin Finnish Film Affairissa parhaana kotimaisena dokumenttiprojektina vuonna 2021. Elokuvan ensi-ilta pidettiin tammikuussa 2024 DocPointissa, jonka kotimaiseen kilpasarjaan elokuva oli valittu.</p><p>Ohjaaja Kaisa Rastimo kertoo tilaisuudessa elokuvasta ja vastaa osallistujien kysymyksiin elokuvan jälkeen.</p><p>Genre: Dokumenttielokuva<br>Pituus: 74 min<br>Ohjaus ja käsikirjoitus: Kaisa Rastimo<br>Kuvaus: Marita Hällfors<br>Äänisuunnittelu: Pietari Koskinen<br>Musiikki: Sakari Kukko ja Piirpauke<br>Tuottaja: Ella Ruohonen<br>Tuotantoyhtiö: Image Club Oy<br>Tuotantovuosi: 2024 Suomi</p><p>Ryhmille ilmoittautuminen osoitteessa: kultus.hel.fi</p>", "en": "<p>13-year-old Nasrin was married off to a human trafficker in Kos. She gives birth to her first child as a 15-year-old.</p><p>When Nasrin is 20, she lives in Finland and has three daughters. She starts to study and is emancipated.</p><p>Nasrin’s voice is an intensive documentary film about human trafficking, becoming independent and the price Nasrin has to pay for her freedom. At the same time it is a film about survival, courage, and hope. How a child bride and child mother starts to live the life she wants.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Minna Canthin ja tasa-arvon päivänä Vuotalossa nähdään elokuva Nasrin's voice. Näytöksen jälkeen tekijätapaaminen elokuvan ohjaajan kanssa.", "en": "13-year-old Nasrin was married off to a human trafficker in Kos. She gives birth to her first child as a 15-year-old." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65583/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj3vx6axq", "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:p2149/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6cdi/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 151605, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T10:45:34.712620Z", "last_modified_time": "2024-07-02T10:45:34.712671Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/parsimiskuva.jpg", "cropping": "0,52,1429,1482", "photographer_name": "Elina Kulmala", "alt_text": "Henkilö ompelee farkkuihin paikkaa. Taustalla näkyy sakset, lankaa, mitta ja nuppineuloja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151605/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T11:57:47.085382Z", "last_modified_time": "2025-02-05T08:44:19.876879Z", "date_published": null, "start_time": "2025-05-27T14:00:00Z", "end_time": "2025-05-27T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Parsi ja paikkaa", "sv": "Stoppa och lappa", "en": "Patching and repairing " }, "provider": null, "info_url": null, "description": { "fi": "<p>Tule parsimaan ja paikkaamaan omia projektejasi kivassa porukassa Sellon pajaan. Voit käyttää omien välineidesi lisäksi kirjaston ompelukonetta. Tapahtumassa ei ole ohjausta, vaan ideana on että parsijat jakavat ideoita ja oppia keskenään. </p><p>Maksuton, ei ennakkoilmoittautumista.</p><p>10.12 on kirjaston puolesta vinyylileikkurin opastusta sitä haluaville.</p>", "sv": "<p>Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad (paja). Förutom dina egna sytillbehör kan du använda dig av bibliotekets symaskiner. Det finns ingen vägledning, men tanken är att församlingsmedlemmarna ska dela med sig av idéer och lära av varandra. </p><p>Avgiftsfri. Ingen förhandsanmälan.</p><p>10.12 finns vinylskärarhandledning för den som vill ha det.</p>", "en": "<p>Come and improve and patch up your own projects in a nice group in Sello's workshop. You can use the library's sewing machine in addition to your own tools. There is no guidance, but the idea is for the parishioners to share ideas and learn from each other. </p><p>Free of charge, no pre-registration. </p><p>10.12 There will be a Vinylcutter tutorial on behalf of the library for those who want one. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule parsimaan ja paikkaamaan omia projektejasi Sellon kirjaston pajaan. ", "sv": "Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad", "en": "Patch up your own projects in a nice group in Sello Library´s Maker Space. " }, "location_extra_info": { "fi": "Sellon kirjaston pajatila", "sv": "Sello biblioteks verkstaden ", "en": "Sello Library´s Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6axq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj3vx6atm", "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:p2149/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6cdi/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 151605, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T10:45:34.712620Z", "last_modified_time": "2024-07-02T10:45:34.712671Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/parsimiskuva.jpg", "cropping": "0,52,1429,1482", "photographer_name": "Elina Kulmala", "alt_text": "Henkilö ompelee farkkuihin paikkaa. Taustalla näkyy sakset, lankaa, mitta ja nuppineuloja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151605/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T11:57:47.285195Z", "last_modified_time": "2025-02-05T08:44:19.835456Z", "date_published": null, "start_time": "2025-06-10T14:00:00Z", "end_time": "2025-06-10T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Parsi ja paikkaa", "sv": "Stoppa och lappa", "en": "Patching and repairing " }, "provider": null, "info_url": null, "description": { "fi": "<p>Tule parsimaan ja paikkaamaan omia projektejasi kivassa porukassa Sellon pajaan. Voit käyttää omien välineidesi lisäksi kirjaston ompelukonetta. Tapahtumassa ei ole ohjausta, vaan ideana on että parsijat jakavat ideoita ja oppia keskenään. </p><p>Maksuton, ei ennakkoilmoittautumista.</p><p>10.12 on kirjaston puolesta vinyylileikkurin opastusta sitä haluaville.</p>", "sv": "<p>Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad (paja). Förutom dina egna sytillbehör kan du använda dig av bibliotekets symaskiner. Det finns ingen vägledning, men tanken är att församlingsmedlemmarna ska dela med sig av idéer och lära av varandra. </p><p>Avgiftsfri. Ingen förhandsanmälan.</p><p>10.12 finns vinylskärarhandledning för den som vill ha det.</p>", "en": "<p>Come and improve and patch up your own projects in a nice group in Sello's workshop. You can use the library's sewing machine in addition to your own tools. There is no guidance, but the idea is for the parishioners to share ideas and learn from each other. </p><p>Free of charge, no pre-registration. </p><p>10.12 There will be a Vinylcutter tutorial on behalf of the library for those who want one. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule parsimaan ja paikkaamaan omia projektejasi Sellon kirjaston pajaan. ", "sv": "Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad", "en": "Patch up your own projects in a nice group in Sello Library´s Maker Space. " }, "location_extra_info": { "fi": "Sellon kirjaston pajatila", "sv": "Sello biblioteks verkstaden ", "en": "Sello Library´s Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6atm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj3vx6ajy", "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:p2149/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6cdi/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 151605, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T10:45:34.712620Z", "last_modified_time": "2024-07-02T10:45:34.712671Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/parsimiskuva.jpg", "cropping": "0,52,1429,1482", "photographer_name": "Elina Kulmala", "alt_text": "Henkilö ompelee farkkuihin paikkaa. Taustalla näkyy sakset, lankaa, mitta ja nuppineuloja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151605/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T11:57:47.450310Z", "last_modified_time": "2025-02-05T08:44:19.786289Z", "date_published": null, "start_time": "2025-06-24T14:00:00Z", "end_time": "2025-06-24T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Parsi ja paikkaa", "sv": "Stoppa och lappa", "en": "Patching and repairing " }, "provider": null, "info_url": null, "description": { "fi": "<p>Tule parsimaan ja paikkaamaan omia projektejasi kivassa porukassa Sellon pajaan. Voit käyttää omien välineidesi lisäksi kirjaston ompelukonetta. Tapahtumassa ei ole ohjausta, vaan ideana on että parsijat jakavat ideoita ja oppia keskenään. </p><p>Maksuton, ei ennakkoilmoittautumista.</p><p>10.12 on kirjaston puolesta vinyylileikkurin opastusta sitä haluaville.</p>", "sv": "<p>Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad (paja). Förutom dina egna sytillbehör kan du använda dig av bibliotekets symaskiner. Det finns ingen vägledning, men tanken är att församlingsmedlemmarna ska dela med sig av idéer och lära av varandra. </p><p>Avgiftsfri. Ingen förhandsanmälan.</p><p>10.12 finns vinylskärarhandledning för den som vill ha det.</p>", "en": "<p>Come and improve and patch up your own projects in a nice group in Sello's workshop. You can use the library's sewing machine in addition to your own tools. There is no guidance, but the idea is for the parishioners to share ideas and learn from each other. </p><p>Free of charge, no pre-registration. </p><p>10.12 There will be a Vinylcutter tutorial on behalf of the library for those who want one. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule parsimaan ja paikkaamaan omia projektejasi Sellon kirjaston pajaan. ", "sv": "Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad", "en": "Patch up your own projects in a nice group in Sello Library´s Maker Space. " }, "location_extra_info": { "fi": "Sellon kirjaston pajatila", "sv": "Sello biblioteks verkstaden ", "en": "Sello Library´s Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6ajy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj3vx6cdi", "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:p2149/?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, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6ajy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6atm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6axq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6a3q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6a7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6bc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6bg4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6bk4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6bou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6bsu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6bw4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6b3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6b7m/?format=api" } ], "images": [ { "id": 151605, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T10:45:34.712620Z", "last_modified_time": "2024-07-02T10:45:34.712671Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/parsimiskuva.jpg", "cropping": "0,52,1429,1482", "photographer_name": "Elina Kulmala", "alt_text": "Henkilö ompelee farkkuihin paikkaa. Taustalla näkyy sakset, lankaa, mitta ja nuppineuloja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151605/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T11:57:42.051989Z", "last_modified_time": "2025-02-05T08:44:18.766130Z", "date_published": null, "start_time": "2025-01-07T15:00:00Z", "end_time": "2025-06-24T16: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, "name": { "fi": "Parsi ja paikkaa", "sv": "Stoppa och lappa", "en": "Patching and repairing " }, "provider": null, "info_url": null, "description": { "fi": "<p>Tule parsimaan ja paikkaamaan omia projektejasi kivassa porukassa Sellon pajaan. Voit käyttää omien välineidesi lisäksi kirjaston ompelukonetta. Tapahtumassa ei ole ohjausta, vaan ideana on että parsijat jakavat ideoita ja oppia keskenään. </p><p>Maksuton, ei ennakkoilmoittautumista.</p><p>10.12 on kirjaston puolesta vinyylileikkurin opastusta sitä haluaville.</p>", "sv": "<p>Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad (paja). Förutom dina egna sytillbehör kan du använda dig av bibliotekets symaskiner. Det finns ingen vägledning, men tanken är att församlingsmedlemmarna ska dela med sig av idéer och lära av varandra. </p><p>Avgiftsfri. Ingen förhandsanmälan.</p><p>10.12 finns vinylskärarhandledning för den som vill ha det.</p>", "en": "<p>Come and improve and patch up your own projects in a nice group in Sello's workshop. You can use the library's sewing machine in addition to your own tools. There is no guidance, but the idea is for the parishioners to share ideas and learn from each other. </p><p>Free of charge, no pre-registration. </p><p>10.12 There will be a Vinylcutter tutorial on behalf of the library for those who want one. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule parsimaan ja paikkaamaan omia projektejasi Sellon kirjaston pajaan. ", "sv": "Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad", "en": "Patch up your own projects in a nice group in Sello Library´s Maker Space. " }, "location_extra_info": { "fi": "Sellon kirjaston pajatila", "sv": "Sello biblioteks verkstaden ", "en": "Sello Library´s Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6cdi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65136", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "25 €", "sv": "25 €", "en": "25 €" }, "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-hevisaurus-vuoden-raeyhaeisin-keikka-raeyh-vuotalo-19543222/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-hevisaurus-vuoden-raeyhaeisin-keikka-raeyh-vuotalo-19543222/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-hevisaurus-vuoden-raeyhaeisin-keikka-raeyh-vuotalo-19543222/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-29T09:14:20.955700Z", "last_modified_time": "2024-11-29T09:14:20.955717Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760352.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-11-29T09:14:20.907822Z", "last_modified_time": "2025-02-05T08:14:37.239919Z", "date_published": null, "start_time": "2025-02-22T12: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, "name": { "fi": "LOPPUUNMYYTY Hevisaurus", "sv": "SLUTSÅLD Hevisaurus", "en": "SOLD OUT Hevisaurus" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/70493495B0C4A32CD890439ADE8B8E30/LOPPUUNMYYTY_Hevisaurus", "sv": "http://www.vuotalo.fi/sv/evenemang/event/70493495B0C4A32CD890439ADE8B8E30/SLUTSALD_Hevisaurus", "en": "http://www.vuotalo.fi/en/events/event/70493495B0C4A32CD890439ADE8B8E30/SOLD_OUT_Hevisaurus" }, "description": { "fi": "<p>Kun Hevisauruksen räpylät iskeytyvät estradiin ja jurahevin ensimmäiset biitit jyrähtävät ilmoille, nousee yleisössä tunnelma kattoon ja sen yli.</p><p>Kuten Hevisauruksen Mikä minusta tulee isona? -biisissäkin lauletaan: \"Seinät tärisee, katto putoaa, kun kertsi lähtee, kaikki sekoaa!\"</p><p>Komppi Momppi, Riffi Raffi, Milli Pilli, Muffi Puffi sekä tietysti itse Herra Hevisaurus pistävät pystyyn viihdyttävän lavashown, joka ei jätä juroimpiakaan tallaajia kylmäksi. Jalan alle menevät sävellykset, nerokkaat sanoitukset ja taidokkaat sovitukset yhdistettynä vauhdikkaaseen menoon ja yllättäviin käänteisiin takaavat sen, että Hevisauruksen keikat ovat usein loppuunmyytyjä. Biiseissä on myös korvamatotakuu!</p><p>Kesto n. 1 tunti, ei väliakaa. <br>Konsertissa ei ole väliaikaa.</p>", "sv": "<p>När Hevisaurus slår fötterna mot estraden och man spelar juraheavymusikens första noter, står stämningen i publiken högt i taket och bortom.</p><p>Såsom man sjunger i Hevisaurus låt Mikä minusta tulee isona? (Vad blir jag som stor?) \"Seinät tärisee, katto putoaa, kun kertsi lähtee, kaikki sekoaa!\" (Väggarna skakar, taket faller, när refrängen börjar, blir alla vilda!)</p><p>Komppi Momppi, Riffi Raffi, Milli Pilli, Muffi Puffi och naturligtvis själva Herr Hevisaurus sätter upp en underhållande scenshow som värmer upp även de dystraste medmänniskorna. Kompositioner som går under dina fötter, geniala texter och skickliga arrangemang, i kombination med ett snabbt tempo och överraskande svängar, garanterar att Hevisaurus konserter ofta är slutsålda. Låtarna har även öronmasksgaranti!</p><p>Längd cirka 1 timme, ingen paus.</p>", "en": "<p>When Hevisaurus’ webbed feet hit the stage and you hear the first beats of jurahevi, the atmosphere in the audience will blow the roof off.</p><p>Komppi Momppi, Riffi Raffi, Milli Pilli, Muffi Puffi and, of course, Herra Hevisaurus himself will put on an entertaining stage show that will not leave even the sulkiest dancers cold. The compositions the make your feet move, ingenious lyrics and skilful arrangements combined with a fast pace and unexpected twists and turns guarantee that Hevisaurus’ concerts are usually sold out. The songs also come with an earworm guarantee!</p><p>Duration: approx. 1 h, no intermission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kun Hevisauruksen räpylät iskeytyvät estradiin ja jurahevin ensimmäiset biitit jyrähtävät ilmoille, nousee yleisössä tunnelma kattoon ja sen yli.", "sv": "När Hevisaurus slår fötterna mot estraden och man spelar juraheavymusikens första noter, står stämningen i publiken högt i taket och bortom.", "en": "When Hevisaurus’ webbed feet hit the stage and you hear the first beats of jurahevi, the atmosphere in the audience will blow the roof off." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65136/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65297", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24,8 € / 20 €", "sv": "24,8 € / 20 €", "en": "24,8 € / 20 €" }, "info_url": { "fi": "https://www.lippu.fi/event/arja-saijonmaa-ystaevaenpaeivaekonsertti-vuotalo-19589893/", "sv": "https://www.lippu.fi/event/arja-saijonmaa-ystaevaenpaeivaekonsertti-vuotalo-19589893/", "en": "https://www.lippu.fi/event/arja-saijonmaa-ystaevaenpaeivaekonsertti-vuotalo-19589893/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153472, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-17T09:14:14.172417Z", "last_modified_time": "2024-12-17T09:14:14.172433Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764115.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153472/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-17T09:14:14.147840Z", "last_modified_time": "2025-02-05T08:14:34.133398Z", "date_published": null, "start_time": "2025-02-14T16: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, "name": { "fi": "LOPPUUNMYYTY Arja Saijonmaa – Ystävänpäiväkonsertti", "sv": "SLUTSÅLD Arja Saijonmaa – Alla hjärtans dag-konsert", "en": "SOLD OUT Arja Saijonmaa – Valentine’s Day Concert" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1C6C40E39FABFCF33A4F58951685F51E/LOPPUUNMYYTY_Arja_Saijonmaa_Ystavanpaivakonsertti", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1C6C40E39FABFCF33A4F58951685F51E/SLUTSALD_Arja_Saijonmaa_Alla_hjartans_dag-konsert", "en": "http://www.vuotalo.fi/en/events/event/1C6C40E39FABFCF33A4F58951685F51E/SOLD_OUT_Arja_Saijonmaa_Valentine_s_Day_Concert" }, "description": { "fi": "<p>Arja Saijonmaa saapuu esiintymään Vuotaloon ensimmäistä kertaa!</p><p>Kestosuosikki Arja Saijonmaa on jälleen maamme musiikkielämän keskiössä liityttyään suositun Elämäni biisi -televisio-ohjelman tähtiartisteihin vuonna 2021.</p><p>Monipuolisen laulaja-näyttelijän ura sai alkusysäyksensä jo 1960-luvulla. Kansainvälinen karriääri aukesi 1970-luvun alussa, kun kreikkalainen Mikis Theodorakis kiinnitti hänet maailmankiertueensa solistiksi. Theodorakisin musiikki on edelleen tärkeä osa Saijonmaan repertuaaria, ja näitä säveliä kuullaan myös Vuotalon konsertissa ystävänpäivänä.</p><p>Kesto: 2 t sis. väliajan</p>", "sv": "<p>Arja Saijonmaa uppträder i Nordhuset för första gången!</p><p>Evighetsfavoriten Saijonmaa står åter i centrum för vårt lands musikliv efter att hon anslöt sig till stjärnartisterna för det populära TV-programmet Elämäni biisi år 2021.</p><p>Den mångsidiga sångerskans och skådespelerskans karriär fick sin början redan på 1960-talet. Den internationella karriären öppnades i början av 1970-talet, då den grekiska Mikis Theodorakis gjorde henne till solist för hans världsturné. Theodorakis musik är fortfarande en viktig del av Saijonmaas repertoar, och vi får även höra dessa toner på konserten i Nordhuset på alla hjärtans dag.</p><p>Längd: 2 timmar inklusive paus</p>", "en": "<p>Arja Saijonmaa arrives to perform at Vuotalo for the first time!</p><p>Long-time favourite Aija Saijonmaa has once again taken centre stage in Finland’s music scene after joining the star-studded cast of Yle’s Elämäni biisi music programme in 2021.</p><p>Saijonmaa is a varied singer-actress, whose career kicked off in the 1960s. Her international career opened in the early 1970s, when Greek composer Mikis Theodorakis signed her as the soloist for his world tour. Theodorakis’ music is still an important part of Saijonmaa’s repertoire, and you can hear these sounds at the Vuotalo concert on Valentine’s Day.</p><p>Duration: Two hours, incl. intermission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Arja Saijonmaa saapuu esiintymään Vuotaloon ensimmäistä kertaa!", "sv": "Arja Saijonmaa uppträder i Nordhuset för första gången!", "en": "Arja Saijonmaa arrives to perform at Vuotalo for the first time!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65297/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65191", "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": "10 €", "sv": "10 €", "en": "10 €" }, "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-kino-vuotalo-vuotalo-19539981/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-kino-vuotalo-vuotalo-19539981/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-kino-vuotalo-vuotalo-19539981/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153307, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-09T13:14:15.526411Z", "last_modified_time": "2024-12-09T13:14:15.526429Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761731.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153307/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-09T13:14:15.477600Z", "last_modified_time": "2025-02-05T08:14:30.417546Z", "date_published": null, "start_time": "2025-02-05T16: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, "name": { "fi": "LOPPUUNMYYTY Kesäkirja (S) – Ensi-iltaviikon elokuva", "sv": "SLUTSÅLD Sommarboken (S) – Premiärveckans film", "en": "SOLD OUT he Summer Book (All ages) – Premiere week film" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/82A56A46D3FD09BC2BE5FEBF94847535/LOPPUUNMYYTY_Kesakirja_S_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/82A56A46D3FD09BC2BE5FEBF94847535/SLUTSALD_Sommarboken_S_", "en": "http://www.vuotalo.fi/en/events/event/82A56A46D3FD09BC2BE5FEBF94847535/SOLD_OUT_he_Summer_Book_All_ages_" }, "description": { "fi": "<p>Tove Janssonin rakastettuun Kesäkirja-teokseen perustuva kansainvälinen elokuva, joka on kuvattu Suomessa.</p><p>Elokuva kertoo romaanin tapaan maagisen ja elämää kohottavan tarinan Sophia-tytön kesästä isoäidin kanssa pikkuisella saarella Suomenlahdella.</p><p>Glenn Closen ja Anders Danielsen Lien tähdittämä, Charlie McDowellin ohjaama ja Robert Jonesin käsikirjoittama Kesäkirja kuvattiin kesällä 2023 Suomessa, muun muassa Itäisen Suomenlahden rannikolla, esimerkiksi Kotkan, Porvoon ja Espoon saaristoissa.</p><p>Kesäkirja-elokuva näyttää Suomen kesän ja saaristoluonnon aidoimmillaan ja kauneimmillaan. Kansainvälisen yhteistuotannon suomalainen tuotantoyhtiö on Helsinki-filmi, tuottajinaan Aleksi Bardy ja Helen Vinogradov.</p><p>Ohjaus: Charlie McDowell<br>Näyttelijät: Glenn Close, Anders Danielsen Lie, Emily Matthews, Pekka Strang, Sophia Heikkilä</p><p>Kesto: 90 min<br>Kieli: englanti, tekstitykset: suomi, ruotsi<br>Ikäraja: Sallittu kaikenikäisille</p>", "sv": "<p>En internationell film som baserar sig på Tove Janssons älskade roman Sommarboken har spelats in i Finland.</p><p>Såsom romanen berättar filmen om en magisk och uppiggande historia om flickan Sophias sommar med farmor på en liten ö i Finska viken.</p><p>Sommarboken med Glenn Close och Anders Danielsen Lie i huvudrollerna, regi av Charlie McDowell och manus av Rober Jones spelades in i Finland sommaren 2023, bland annat vid kusten för östra Finska viken, till exempel i skärgårdarna i Kotka, Borgå och Esbo.</p><p>Filmen Sommarboken visar Finlands sommar och skärgårdsnatur som mest autentisk och vackrast. Det finländska produktionsbolaget för den internationella samproduktionen är Helsinki-filmi med Aleksi Bardy och Helen Vinogradov som producenter.</p><p>Regi: Charlie McDowell<br>I rollerna: Glenn Close, Anders Danielsen Lie, Emily Matthews, Pekka Strang, Sophia Heikkilä</p><p>Åldersgräns: T<br>Längd: 90 min.<br>Språk: engelska<br>Textning: finska, svenska</p>", "en": "<p>An international film based on Tove Jansson’s beloved The Summer Book, shot in Finland.</p><p>Like the novel, the film tells the magical and life-enhancing story of young Sophia’s summer with her grandmother on a small island in the Gulf of Finland.</p><p>The Summer Book, starring Glenn Close and Anders Danielsen Lie, directed by Charlie McDowell and written by Robert Jones, was filmed in the summer of 2023 in Finland. Filming was carried out in the archipelagos of Kotka, Porvoo and Espoo in the coast of the Eastern Gulf of Finland.</p><p>The Summer Book represents Finland’s summer and archipelago nature at its most authentic and beautiful. The Finnish production company for the international co-production is Helsinki-filmi, produced by Aleksi Bardy and Helen Vinogradov.</p><p>Director: Charlie McDowell<br>Cast: Glenn Close, Anders Danielsen Lie, Emily Matthews, Pekka Strang, Sophia Heikkilä</p><p>Age limit: All ages<br>Duration: 90 min<br>Language: English<br>Subtitles: Finnish, Swedish</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tove Janssonin rakastettuun Kesäkirja-teokseen perustuva kansainvälinen elokuva, joka on kuvattu Suomessa.", "sv": "En internationell film som baserar sig på Tove Janssons älskade roman Sommarboken har spelats in i Finland.", "en": "An international film based on Tove Jansson’s beloved The Summer Book, shot in Finland." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65191/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64766", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 192814, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-04T15:13:12.174336Z", "last_modified_time": "2025-02-04T15:13:12.174347Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760118.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/192814/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-02-04T15:13:12.157191Z", "last_modified_time": "2025-02-04T15:13:12.217403Z", "date_published": null, "start_time": "2025-03-29T09:00:00Z", "end_time": "2025-03-29T12: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, "name": { "fi": "Annantalon taidelauantai: Elävä veistos", "sv": "Annegårdens konstlördag: Levande skulptur", "en": "Annantalo Art Saturday: Living sculpture" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/424A3414FC27AAC716DB7CC0FE0957A7/Annantalon_taidelauantai_Elava_veistos", "sv": "http://www.annantalo.fi/sv/evenemang/event/424A3414FC27AAC716DB7CC0FE0957A7/Annegardens_konstlordag_Levande_skulptur", "en": "http://www.annantalo.fi/en/events/event/424A3414FC27AAC716DB7CC0FE0957A7/Annantalo_Art_Saturday_Living_sculpture" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Elävä veistos</b></p><p>Tule kokeilemaan miten voimme muovata toisistamme eläviä veistoksia! Entä miten asento taipuu saven muotoon? Työpajan teema on ihmistä esittävät veistokset. Aihetta tutkitaan eläytymisen ja muovailun kautta. Veistoksen materiaalina käytetään kierrätyssavea, jonka saa jättää uudelleen kierrätykseen tai ottaa mukaansa raakaveistoksena.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat. <br> <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p>Kom och pröva hur vi kan forma varandra till levande skulpturer! Hur får man en ställning till lera? Temat för workshoppen är skulpturer av människor. Temat utforskas med hjälp av att leva sig in och forma. Materialet för skulpturen är återvunnen lera som kan återanvändas på nytt eller tas med hem som en rå skulptur.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p>ome and see how we can shape each other into living sculptures! And how can you bend clay into the position? The theme of this workshop is sculptures depicting people. We will study the topic by getting absorbed and by shaping. The material of the sculpture is recycled clay, which you can leave behind to be recycled again or take with you as a rough draft.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by art educators from Annantalo.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64766/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64974", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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:41/?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:p1278/?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": "24,80 € / 20,80 €", "sv": "24,80 € / 20,80 €", "en": "24,80 € / 20,80 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kanneltalo-bailame-kanneltalo-19487270/", "sv": "https://www.lippu.fi/event/kanneltalo-bailame-kanneltalo-19487270/", "en": "https://www.lippu.fi/event/kanneltalo-bailame-kanneltalo-19487270/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 192446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-04T12:16:44.159318Z", "last_modified_time": "2025-02-04T12:16:44.159333Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763204.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/192446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-04T12:16:44.133133Z", "last_modified_time": "2025-02-04T12:16:44.222675Z", "date_published": null, "start_time": "2025-05-17T15:00:00Z", "end_time": "2025-05-17T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Báilame – Elina Robinsonin flamenco-oppilaiden kevätnäytös", "sv": "Báilame – Våruppvisning för Elina Robinsons flamencoelever", "en": "Báilame – Spring performance by Elina Robinson’s flamenco students" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F33D7579EAE900B2C5AA2D9B4BE71479/B_ilame", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F33D7579EAE900B2C5AA2D9B4BE71479/B_ilame", "en": "http://www.kanneltalo.fi/en/events/event/F33D7579EAE900B2C5AA2D9B4BE71479/B_ilame" }, "description": { "fi": "<p>Elina Robinsonin flamenco-oppilaiden kevätnäytöksessä juhlistetaan tanssivuoden päätöstä!</p><p>Esityksessä kohtaavat sielukas flamencomusiikki ja tanssi. Mukana huikea livebändi!<br> <br>Tony de María (kitara)<br>Anna Murtola (laulu)<br>Sirpa Airisto (laulu)<br>Ricardo Padilla (perkussiot)<br>Elina Robinson (koreografiat, palmas)<br>Camila Laine (koreografia ja palmas)</p>", "sv": "<p>På våruppvisningen för Elina Robinsons flamencoelever firar vi dansårets slut!</p><p>I uppvisningen möts själfull flamencomusik och dans. Med är ett otroligt liveband!<br> <br>Tony de Maria (gitarr)<br>Anna Murtola (sång)<br>Sirpa Airisto (sång)<br>Ricardo Padilla (slagverk)<br>Elina Robinson (koreografier, palmas)<br>Camila Laine (koreografi och palmas)</p>", "en": "<p>The spring show by Elina Robinson’s flamenco students celebrates the end of the dancing year!</p><p>The spring show by Elina Robinson’s flamenco students celebrates the end of the dancing year!</p><p>The performance combines soulful flamenco music and dance. There will also be a fantastic live band!<br> <br>Tony de María (guitar)<br>Anna Murtola (vocals)<br>Sirpa Airisto (vocals)<br>Ricardo Padilla (percussion)<br>Elina Robinson (choreographies, palmas)<br>Camila Laine (choreography and palmas)</p>" }, "provider_contact_info": null, "short_description": { "fi": "Elina Robinsonin flamenco-oppilaiden kevätnäytöksessä juhlistetaan tanssivuoden päätöstä!", "sv": "På våruppvisningen för Elina Robinsons flamencoelever firar vi dansårets slut!", "en": "The spring show by Elina Robinson’s flamenco students celebrates the end of the dancing year!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64974/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65036", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 192445, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-04T12:16:43.281625Z", "last_modified_time": "2025-02-04T12:16:43.281665Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763665.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/192445/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-04T12:16:43.253971Z", "last_modified_time": "2025-02-04T12:16:43.346342Z", "date_published": null, "start_time": "2025-05-12T14:00:00Z", "end_time": "2025-05-12T16: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, "name": { "fi": "Kirjailijavieraina Minna Eväsoja ja Raisa Porrasmaa – Maksuttomat maanantait", "sv": "Författargäster Minna Eväsoja och Raisa Porrasmaa – Kostnadsfria måndagar", "en": "Guest authors Minna Eväsoja and Raisa Porrasmaa – Free Mondays" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/344D1B66E2215C3D34D9EC38E5FB768D/Kirjailijavieraina_Minna_Evasoja_ja_Raisa_Porrasmaa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/344D1B66E2215C3D34D9EC38E5FB768D/Forfattargaster_Minna_Evasoja_och_Raisa_Porrasmaa", "en": "http://www.kanneltalo.fi/en/events/event/344D1B66E2215C3D34D9EC38E5FB768D/Guest_authors_Minna_Evasoja_and_Raisa_Porrasmaa" }, "description": { "fi": "<p>Japanilaisen hanami-juhlan aikaan kirjailijavieraiksi saapuvat kaksi Japanin kirjallisuuden ja kulttuurin asiantuntijaa: klo 17 Minna Eväsoja ja klo 18 Raisa Porrasmaa.</p><p>Minna Eväsoja, japanilaisen estetiikan tutkija, kertoo uusimmassa teoksessaan väitöskirjan kirjoittamisvuosistaan Japanissa ja senseistä, rakkaasta opettajastaan. Sensei – oppilaana Kiotossa (2023 Gummerus) johdattaa lukijan japanilaiseen maalaustaiteeseen, No-teatteriin, teeseremoniaan ja puutarhojen merkityksiin.</p><p>Kääntäjä Raisa Porrasmaa puolestaan keskustelee uusimmasta kääntämästään teoksesta Emi Yagi: Venus ja minä (2025 Otava), sekä puhuu japanin kääntämisestä ja nykykirjallisuudesta.</p><p>Minna Eväsojaa ja Raisa Porrasmaata haastattelee kirjailija, toimittaja Esa Mäkijärvi.</p><p>Kieli: suomi</p>", "sv": "<p>Under den japanska hanami-festivalen anländer två experter på japansk litteratur och kultur som författargäster: Minna Eväsoja och Raisa Porrasmaa.</p><p>Minna Eväsoja, forskare inom japansk estetik, berättar i sin senaste bok om de år hon skrev sin doktorsavhandling i Japan och om sensei, hennes älskade lärare. Sensei – oppilaana Kiotossa (2023 Gummerus) introducerar läsaren till den japanska målarkonsten, No-teater, teceremonin och trädgårdarnas betydelse.</p><p>Översättaren Raisa Porrasmaa diskuterar sin nya översättning av verket Emi Yagi: Venus ja minä (2025 Otava) samt talar om översättning från japanska och samtida författarskap.</p><p>Minna Eväsoja och Raisa Porrasmaa intervjuas av författaren, journalisten Esa Mäkijärvi.</p><p>Språk: finska</p>", "en": "<p>During the Japanese Hanami festival, our guest authors will be two experts on Japanese literature and culture: Minna Eväsoja and Raisa Porrasmaa.</p><p>In her latest work, Minna Eväsoja, a researcher of Japanese aesthetics, shares the story of her years writing her PhD thesis in Japan and of her dear teacher, sensei. Sensei – oppilaana Kiotossa (2023 Gummerus) introduces the readers to Japanese painting, Noh theatre, the tea ceremony and the significance of gardens.</p><p>Translator Raisa Porrasmaa, in turn, discusses her latest translation of Emi Yagi, Venus ja minä (2025 Otava), and talks about translating Japanese and contemporary literature.</p><p>Minna Eväsoja and Raisa Porrasmaa will be interviewed by writer and journalist Esa Mäkijärvi.</p><p>Language: Finnish</p>" }, "provider_contact_info": null, "short_description": { "fi": "Japanilaisen hanami-juhlan aikaan kirjailijavieraiksi saapuvat kaksi Japanin kirjallisuuden ja kulttuurin asiantuntijaa: klo 17 Minna Eväsoja ja klo 18 Raisa Porrasmaa.", "sv": "Under den japanska hanami-festivalen anländer två experter på japansk litteratur och kultur som författargäster: Minna Eväsoja och Raisa Porrasmaa.", "en": "During the Japanese Hanami festival, our guest authors will be two experts on Japanese literature and culture: Minna Eväsoja and Raisa Porrasmaa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65036/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65567", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 192444, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-04T12:16:41.702629Z", "last_modified_time": "2025-02-04T12:16:41.702665Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765316.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/192444/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-04T12:16:41.676942Z", "last_modified_time": "2025-02-04T12:16:41.773352Z", "date_published": null, "start_time": "2025-05-05", "end_time": "2025-05-19", "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, "name": { "fi": "Työväenopiston kevätsalonki 2025: Viiva-Väri-Muoto", "sv": "Finska arbetarinstitutets vårsalong 2025 – Viiva-Väri-Muoto", "en": "Adult Education Centre’s Spring Salon 2025 – Line/Colour/Form" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2327940EB0C49D1F419C0070425FA7F4/Tyovaenopiston_kevatsalonki_2025_Viiva-Vari-Muoto", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2327940EB0C49D1F419C0070425FA7F4/Finska_arbetarinstitutets_varsalong_2025_Viiva-Vari-Muoto_", "en": "http://www.kanneltalo.fi/en/events/event/2327940EB0C49D1F419C0070425FA7F4/Adult_Education_Centre_s_Spring_Salon_2025_Line_Colour_Form" }, "description": { "fi": "<p>Tule ihailemaan Helsingin työväenopiston kuvataidekurssien monipuolisia teoksia!</p><p>Helsingin työväenopiston kuvataidekurssien kevätnäyttelyssä on esillä eri tekniikoin tehtyjä maalauksia, piirustuksia, grafiikkaa ja veistoksia.<br> <br>Galleria</p><p>Vapaa pääsy</p>", "sv": "<p>Kom och beundra de mångsidiga verken från Helsingfors finska arbetarinstituts bildkonstkurser!</p><p>Vårutställningen för Helsingfors finska arbetarinstituts bildkonstkurser presenterar målningar, ritningar, grafik och skulpturer som gjorts med olika tekniker.</p>", "en": "<p>Come admire diverse works from the Helsinki Finnish Adult Education Centre’s visual arts courses!</p><p>The spring exhibition of the Adult Education Centre’s visual arts courses is a showcase of artworks created by the students using various techniques: paintings, drawings, graphic art, and sculptures.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule ihailemaan Helsingin työväenopiston kuvataidekurssien monipuolisia teoksia!", "sv": "Kom och beundra de mångsidiga verken från Helsingfors finska arbetarinstituts bildkonstkurser!", "en": "Come admire diverse works from the Helsinki Finnish Adult Education Centre’s visual arts courses!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65567/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65025", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/frim-fram-quartet/", "sv": "https://www.lippu.fi/artist/frim-fram-quartet/", "en": "https://www.lippu.fi/artist/frim-fram-quartet/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156104, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T09:14:56.277428Z", "last_modified_time": "2025-01-17T09:14:56.277444Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763531.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156104/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-17T09:14:56.251813Z", "last_modified_time": "2025-02-04T12:16:36.036265Z", "date_published": null, "start_time": "2025-04-03T15: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, "name": { "fi": "Frim-Fram Quartet", "sv": "Frim-Fram Quartet", "en": "Frim-Fram Quartet" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E7B24465519A94B9BBAEA07A4E018A85/Frim-Fram_Quartet", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E7B24465519A94B9BBAEA07A4E018A85/Frim-Fram_Quartet", "en": "http://www.kanneltalo.fi/en/events/event/E7B24465519A94B9BBAEA07A4E018A85/Frim-Fram_Quartet" }, "description": { "fi": "<p>Frim-Fram Quartet tarjoaa värikkään kattauksen musiikkia, jossa pääosassa on blues ja soul eri muodoissaan.</p><p>Yhtyeen mukaansatempaava esiintyminen loihtii hymyn kasvoille ja saa tanssijalan vipattamaan! Yhtyeen täyteläinen soundi on pari numeroa isompi kuin mitä voisi kuvitella. Suomen parhaaksi jazzlaulajaksikin tituleerattu Juki Välipakka soittaa myös kitaraa ja rouheaa bluesharppua.</p><p>Pehmeän savuisesta äreän juurevaan ulottuvan soundin omaava tenorisaksofonisti Sirpa Suomalainen on myös yhtyeen toinen laulusolisti ja taustalaulaja. Juki ja Sirpa ovat yleisölle tuttuja myös Kanneltalon jo kolmetoista vuotta pyörineen Juurilla-klubin housebandista.</p><p>Hammond-urkujen ystävälle on luvassa herkkua. Omaleimaisuutta ja kokoa soundille antaa Harri Taittonen, joka hoitaa Hammondeineen myös bassopuolta ja taustalaulua.</p><p>Tyylitajuinen rumpali Mikael Seire taitaa afroamerikkalaisen rytmimusiikin koko skaalan, antaen soinnille viimeisen silauksen.</p><p>Omasta materiaalista julkaistut levyt \"Let's Talk\" (2015) ja \"Wake Up!\" (2019) saivat hyviä arvioita alan lehdissä, mm. Blues News. Nyt klubeja ja festareita kiertänyt nelikko tuo Kanneltaloon myös uutta suomenkielistä materiaaliaan.</p>", "sv": "<p>Frim-Fram Quartet bjuder på en färggrann dukning av musik, där olika former av blues och soul spelar huvudrollen.</p><p>Bandets medryckande framträdande tar fram ett leende på läpparna och får dansfötterna att rycka! Bandets fylliga sound är ett par nummer större än man kunde vänta sig. Juki Välipakka har titulerats Finlands bästa jazzsångare, och spelar även gitarr och grovt bluesmunspel.</p><p>Tenorsaxofonisten Sirpa Suomalainens sound sträcker sig från mjukt rökigt till grinigt rotfast, och hon fungerar även som bandets andra sångsolist och bakgrundssångare. Juki och Sirpa är välkända för publiken även från Juurilla-klubbens houseband, som redan har verkat i Gamlasgården i tretton års tid.<br>Vänner av Hammond-orgeln utlovas delikatesser. Harri Taittonen, som med sin Hammond även sköter basen och bakgrundssången, ger särprägel och storlek åt soundet. <br>Den stilsäkra trummisen Mikael Seire behärskar hela den afroamerikanska rytmmusikens skala, och lägger en sista hand vid soundet.</p><p>Albumen “Let's Talk” (2015) och “Wake Up!” (2019) fick god kritik i branschens tidningar, bland annat Blues News. Fyrväpplingen har turnerat på klubbar och festivaler och hämtar även nytt eget finskspråkigt material till Gamlasgården.</p>", "en": "<p>The Frim-Fram Quartet offers a colourful array of music, featuring blues and soul in their various forms.</p><p>The band’s engaging performance will put a smile on your face and get your feet tapping! The band’s full sound is a couple of notches bigger than you might imagine. Dubbed one of Finland’s best jazz singers, Juki Välipakka also plays guitar and gritty blues harmonica.</p><p>Tenor saxophonist Sirpa Suomalainen, who has a sound that ranges from mellow and smoky to gruff and rootsy, is also the band’s other lead singer and backing vocalist. Juki and Sirpa are also familiar to the audience from the house band at Kanneltalo’s At the Roots Club, which has been operating for thirteen years now.</p><p>Hammond organ enthusiasts are definitely in for a treat. Harri Taittonen adds personality and depth to the band’s sound with his Hammond organ while also handling the bass and backing vocals.</p><p>The stylistically conscious drummer Mikael Seire masters the full spectrum of Afro-American rhythms, adding the finishing touches to the sound.</p><p>Their original material has been released on the albums Let’s Talk (2015) and Wake Up! (2019), which were well-received by industry publications, including Blues News. The four-piece, who have now been touring clubs and festivals, will also be bringing their new Finnish-language material to Kanneltalo.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Frim-Fram Quartet tarjoaa värikkään kattauksen musiikkia, jossa pääosassa on blues ja soul eri muodoissaan.", "sv": "Frim-Fram Quartet bjuder på en färggrann dukning av musik, där olika former av blues och soul spelar huvudrollen.", "en": "The Frim-Fram Quartet offers a colourful array of music, featuring blues and soul in their various forms." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65025/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65516", "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: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: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/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": "7 €", "sv": "7 €", "en": "7 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749338/", "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749338/", "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749338/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 172642, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-27T14:13:41.029092Z", "last_modified_time": "2025-01-27T14:13:41.029106Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760410.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172642/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-27T14:13:41.015131Z", "last_modified_time": "2025-02-04T12:16:18.300723Z", "date_published": null, "start_time": "2025-02-04T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PERUTTU | KINO CAISA: April (12)", "sv": "CANCELLED: KINO CAISA: April (12)", "en": "CANCELLED: KINO CAISA: April (12)" }, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F1589FFDDDDB6CFA2DC310177D39912D/PERUTTU_KINO_CAISA_April_12_", "sv": "http://www.caisa.fi/sv/evenemang/event/F1589FFDDDDB6CFA2DC310177D39912D/CANCELLED_KINO_CAISA_April_12_", "en": "http://www.caisa.fi/en/events/event/F1589FFDDDDB6CFA2DC310177D39912D/CANCELLED_KINO_CAISA_April_12_" }, "description": { "fi": "<p>After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need.</p><p>Nina (Ia Sukhitashvili) is a skilled obstetrician at a maternity hospital in Eastern Georgia. After a difficult delivery, the infant dies and the grief-racked father demands an inquiry into her methods. The resulting scrutiny threatens to bring to light Nina’s sideline—driving, through the stunningly beautiful countryside to the village homes of pregnant girls and women to provide unsanctioned abortions—and to destroy the profession that is the only source of meaning in her life.</p><p>For April, her second feature following 2020’s acclaimed Beginning, Dea Kulumbegashvili spent months observing the work of doctors at a maternity clinic and the lives of the surrounding rural communities. The story she crafted is grounded in realistic detail and was brought to life by an intensive rehearsal and production process, with a cast that includes accomplished</p><p>Georgian theater and film actors (Sukhitashvili, Kakha Kintsurashvili, Merab Ninidze) alongside nonprofessionals. This is a profoundly committed work that immerses the viewer in the reality of lives constrained by patriarchal tradition—that of Nina, whose emotional life outside of the empathy she has for her patients has become stunted, among them.</p><p>Anchored by Sukhitashvili’s disciplined performance, the film also gains rich texture from its sometimes luminous, sometimes spectral images by cinematographer Arseni Khachaturan and its mesmerizing soundtrack, which integrates minimalist music by experimental composer Matthew Herbert with heightened sounds from the physical world of the film.</p><p>Age Limit: 12<br>Duration: 134 min<br>Spoken language: Georgian<br>Subtitles: English</p>", "sv": "<p>After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need.</p><p>Nina (Ia Sukhitashvili) is a skilled obstetrician at a maternity hospital in Eastern Georgia. After a difficult delivery, the infant dies and the grief-racked father demands an inquiry into her methods. The resulting scrutiny threatens to bring to light Nina’s sideline—driving, through the stunningly beautiful countryside to the village homes of pregnant girls and women to provide unsanctioned abortions—and to destroy the profession that is the only source of meaning in her life.</p><p>For April, her second feature following 2020’s acclaimed Beginning, Dea Kulumbegashvili spent months observing the work of doctors at a maternity clinic and the lives of the surrounding rural communities. The story she crafted is grounded in realistic detail and was brought to life by an intensive rehearsal and production process, with a cast that includes accomplished</p><p>Georgian theater and film actors (Sukhitashvili, Kakha Kintsurashvili, Merab Ninidze) alongside nonprofessionals. This is a profoundly committed work that immerses the viewer in the reality of lives constrained by patriarchal tradition—that of Nina, whose emotional life outside of the empathy she has for her patients has become stunted, among them.</p><p>Anchored by Sukhitashvili’s disciplined performance, the film also gains rich texture from its sometimes luminous, sometimes spectral images by cinematographer Arseni Khachaturan and its mesmerizing soundtrack, which integrates minimalist music by experimental composer Matthew Herbert with heightened sounds from the physical world of the film.</p><p>Age Limit: 12<br>Duration: 134 min<br>Spoken language: Georgian<br>Subtitles: English</p>", "en": "<p>After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need.</p><p>Nina (Ia Sukhitashvili) is a skilled obstetrician at a maternity hospital in Eastern Georgia. After a difficult delivery, the infant dies and the grief-racked father demands an inquiry into her methods. The resulting scrutiny threatens to bring to light Nina’s sideline—driving, through the stunningly beautiful countryside to the village homes of pregnant girls and women to provide unsanctioned abortions—and to destroy the profession that is the only source of meaning in her life.</p><p>For April, her second feature following 2020’s acclaimed Beginning, Dea Kulumbegashvili spent months observing the work of doctors at a maternity clinic and the lives of the surrounding rural communities. The story she crafted is grounded in realistic detail and was brought to life by an intensive rehearsal and production process, with a cast that includes accomplished</p><p>Georgian theater and film actors (Sukhitashvili, Kakha Kintsurashvili, Merab Ninidze) alongside nonprofessionals. This is a profoundly committed work that immerses the viewer in the reality of lives constrained by patriarchal tradition—that of Nina, whose emotional life outside of the empathy she has for her patients has become stunted, among them.</p><p>Anchored by Sukhitashvili’s disciplined performance, the film also gains rich texture from its sometimes luminous, sometimes spectral images by cinematographer Arseni Khachaturan and its mesmerizing soundtrack, which integrates minimalist music by experimental composer Matthew Herbert with heightened sounds from the physical world of the film.</p><p>Age Limit: 12<br>Duration: 134 min<br>Spoken language: Georgian<br>Subtitles: English</p>" }, "provider_contact_info": null, "short_description": { "fi": "After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need.", "sv": "After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need.", "en": "After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65516/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65505", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "38,90-48,90 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3819941" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 192322, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-04T11:14:00.953253Z", "last_modified_time": "2025-02-04T11:14:00.953270Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765020.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/192322/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-04T11:14:00.916062Z", "last_modified_time": "2025-02-04T11:14:01.007507Z", "date_published": null, "start_time": "2025-10-24T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Duke Robillard (USA)" }, "provider": { "fi": "Deelen Consultancies" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1C7B457347A132FE5315F33118029C20/Duke_Robillard_USA_" }, "description": { "fi": "<p>Olemme ylpeitä voidessamme esittää Savoy-teatterissa ainutkertaisen konsertin, jonka tähtenä esiintyy Duke Robillard.</p><p>Robillard (s. 1948) on yksi merkittävimmistä blues-ikoneista. Hänellä on ainutlaatuinen, välittömästi tunnistettava, soundinsa. Häntä pidetään yleisesti maailman parhaimpiin kuuluvana blueskitaristeista. Itse B.B. King kutsui häntä ”yhdeksi suurimmista soittajista”.</p><p>Konsertissa juhlistetaan Duken valtavaa panosta roots-musiikin saralla ja siinä kuullaan kohokohtia Duken uralta sekä henkilökohtaisia suosikkeja. Taustalla esiintyy täysi bändi puhallinsektioineen. Luvassa on kaikille muusikin ystäville hieno ilta intiimissä ympäristössä. Konsertin jälkeen sinulla on mahdollisuus tavata Duke nimikirjoituksen tai valokuvan merkeissä.</p><p>Duke Robillardin ura käynnistyi 1967, kun hän muodosti Roomful Of Bluesin, josta muodostui autenttisen lähestymistavan vuoksi pian yksi arvostetuimmista blues-kokoonpanoista. Hän oli bändissä 10 vuotta, jonka jälkeen jatkoi uraansa useissa erilaisissa kokoonpanoissa. Näihin lukeutuvat kiertueet rockabilly artisti Robert Gordonin kanssa ja yhteistyö Fabulous Thunderbirdsin kanssa, joka oli tuolloin maailman suosituimpia bluesyhtyeitä. Yhteistyön kohokohtia oli vuoden 1991 albumi ”Walk That Walk, Talk That Talk”.</p><p>Robillard työskenteli myös sellaisten blues-legendojen kuin Muddy Waters, Big Joe Turner, Ronnie Earl ja Ruth Brown sekä jopa Bob Dylanin kanssa. Duke on levyttänyt yli 30 arvostettua sooloalbumia. Albumit tutkivat erilaisia tyylejä bluesin genressä, joihin lukeutuvat varhainen R&B, jump blues, blues, swing jazz ja bluesrock. Robillard on palkittu lukuisilla palkinnoilla ja on voittanut viisi kertaa W.C. Handy Palkinnon ”parhaana kitaristina”. Hän on ollut kaksi kertaa Grammy-ehdokkaana.</p><p>Duke Robillard on taiteensa todellinen mestari. Hänen erottuva kitarasoundinsa on vaikuttanut moniin. Duken intohimo ja bluesin syvällinen ymmärtäminen kaikissa muodoissaan heijastuu hänen tuotantoonsa. Artistina hän jatkaa edelleen kehittymistään.</p><p>Tämä konsertti on ainutkertainen mahdollisuus kokea todellinen muusikin jättiläinen läheltä. Duke sanoo odottavansa konserttia, joka on ainoa kerta, kun hän esiintyy Suomessa.</p><p>Kesto n. 2 h 15 min, sisältää väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Olemme ylpeitä voidessamme esittää Savoy-teatterissa ainutkertaisen konsertin, jonka tähtenä esiintyy Duke Robillard." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65566", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 189967, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-03T15:13:48.630109Z", "last_modified_time": "2025-02-03T15:13:48.630126Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765296.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189967/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-03T15:13:48.597210Z", "last_modified_time": "2025-02-03T15:13:48.706637Z", "date_published": null, "start_time": "2025-04-04", "end_time": "2025-04-29", "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, "name": { "fi": "Valon polku – Kari Holopaisen monitaiteinen retrospektiivinen näyttely", "sv": "Valon polku (Ljusets stig) – tvärkonstnärlig restrospektiv utställning av Kari Holopainen", "en": "Valon polku (Path of Light) – Kari Holopainen’s multidisciplinary retrospective exhibition" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4D95885FA049F0F6C0A0D3C2816CD500/Valon_polku", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4D95885FA049F0F6C0A0D3C2816CD500/Valon_polku_Ljusets_stig_", "en": "http://www.kanneltalo.fi/en/events/event/4D95885FA049F0F6C0A0D3C2816CD500/Valon_polku_Path_of_Light_" }, "description": { "fi": "<p>Holopaisen kookkaat valokuvateokset ja maalaukset antavat katsojalle mahdollisuuden uppoutua syvälle taiteen ja luonnon väliseen vuorovaikutukseen.</p><p>Valon polku -näyttely tarjoaa ainutlaatuisen katsauksen Holopaisen yli neljän vuosikymmenen mittaiseen taiteelliseen matkaan, jossa yhdistyvät valokuvataide, maalaus ja veistokset.</p><p>Näyttelyn teokset nostavat esiin taiteilijan monialaisen työskentelyn keskeiset teemat: valon, värin ja materian herkän vuoropuhelun, joka on ollut taiteilijan tutkimuksen ytimessä 1970-luvulta lähtien.</p><p>Holopainen kehitti valokuvataiteen ja grafiikan yhdistävän polymeerigravyyrimenetelmän, jolla toteutettuja vedoksia on mukana näyttelyssä. Näyttely on pääosin retrospektiivinen, mutta se esittelee myös uusia, pigmenttivedosteisia valokuvia. Ne käsittelevät valon ja luonnonmuotojen suhdetta luontokatoon – aiheeseen, joka on nykytaiteessa erityisen ajankohtainen.<br> <br>Kookkaat valokuvateokset ja maalaukset täyttävät valoisan, suuren tilan ja antavat katsojalle mahdollisuuden uppoutua syvälle taiteen ja luonnon väliseen vuorovaikutukseen. Lisäksi näyttelyssä on mukana kuvasalkkuja, jotka johdattavat yleisön taiteilijan uran eri vaiheisiin.<br> <br>Näyttely tarjoaa erinomaisen mahdollisuuden kokea taiteilijan uraauurtava työ valokuvataiteen ja syväpainografiikan parissa, joista hän on tullut kansainvälisesti tunnetuksi.</p>", "sv": "<p>Holopainens stora fotografiverk och målningar ger åskådaren möjlighet att fördjupa sig i interaktionen mellan konst och natur.</p><p>Utställningen Valon polku bjuder på en unik översikt av Holopainens över fyrtioåriga konstnärliga resa, som kombinerar fotografikonst, målning och skulpturer.</p><p>Utställningens verk lyfter fram de centrala temana i konstnärens multidisciplinära arbete: den känsliga dialogen mellan ljus, färg och materia, som har funnits i kärnan till konstnärens forskning från och med 1970-talet.</p><p>Holopainen utvecklade en polymergravyrmetod som kombinerar fotografikonst med grafik, och utställningen innefattar provtryck som genomförts med denna teknik. Utställningen är huvudsakligen retrospektiv, men den presenterar även nya, pigmenttryckta fotografier. De behandlar ljusets och de naturliga formernas relation till biodiversitetsförlusten – ett ämne som är särskilt aktuellt inom samtidskonsten.<br> <br>De stora fotografiverken och målningarna fyller upp det ljusa, stora utrymmet och ger åskådaren möjlighet att fördjupa sig i interaktionen mellan konst och natur. Utställningen innefattar också fotoportföljer som introducerar publiken till olika skeden i konstnärens karriär.<br> <br>Utställningen erbjuder en utmärkt möjlighet att uppleva konstnärens banbrytande arbete med fotografikonst och djuptrycksgrafik, som har gjort honom internationellt känd.</p>", "en": "<p>Holopainen’s large photographs and paintings allow viewers to deeply immerse themselves in the interaction between art and nature.</p><p>The Valon polku exhibition offers a unique overview of Holopainen’s artistic journey of more than four decades, combining photography, painting and sculpture.</p><p>The works in the exhibition highlight the central themes of the artist’s multidisciplinary work: the delicate dialogue between light, colour and material, which has been at the heart of his exploration since the 1970s.</p><p>Holopainen developed a method of polymer gravure that combines photography and graphics, and prints created using this method are included in the exhibition. The exhibition is mainly retrospective, but it also presents new pigment prints of photographs. They deal with the relationship of light and natural forms to the loss of biodiversity – a theme that is particularly relevant in contemporary art.<br> <br>The large photographs and paintings fill the bright, large space and allow viewers to deeply immerse themselves in the interaction between art and nature. The exhibition also includes portfolios of images that introduce the audience to the different stages of the artist’s career.<br> <br>The exhibition is an excellent opportunity to experience the artist’s pioneering work in photography and intaglio printing, for which he has become internationally renowned.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Holopaisen kookkaat valokuvateokset ja maalaukset antavat katsojalle mahdollisuuden uppoutua syvälle taiteen ja luonnon väliseen vuorovaikutukseen.", "sv": "Holopainens stora fotografiverk och målningar ger åskådaren möjlighet att fördjupa sig i interaktionen mellan konst och natur.", "en": "Holopainen’s large photographs and paintings allow viewers to deeply immerse themselves in the interaction between art and nature." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65566/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27054, "next": "