Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_super_event=true&page=41
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=42", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=40" }, "data": [ { "id": "kulke:68650", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385290, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-23T07:14:14.189900Z", "last_modified_time": "2026-06-23T07:14:14.189917Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791503.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385290/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-23T07:14:14.037321Z", "last_modified_time": "2026-09-09T07:14:33.609415Z", "date_published": null, "start_time": "2026-09-10T14:00:00Z", "end_time": "2026-09-10T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Welcome Day", "sv": "Welcome Day", "en": "Welcome Day" }, "description": { "fi": "<p>Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!</p><p>Tapahtumassa tuoreet kaupunkilaiset pääsevät tutustumaan oman asuinalueensa palveluihin, harrastuksiin ja vapaa-ajan tarjontaan.</p><p>Tapahtuman teema on tänä vuonna kesätori: Ala-Malmin tori muuttuu kesätoriksi ja hyödyllisen tiedon lisäksi osallistujat pääsevät nauttimaan torimaiseen tunnelmaan sopivasta ohjelmasta.</p><p>Säilättärien Metrilaku-menuetti yhdistää sirkusta, komiikkaa ja markkinahumua näyttäväksi spektaakkeliksi. Jay Jay Fun viihdyttää taikatempuilla ja akrobatialla, ja harmonikkataiteilija Seija Vesterinen vie osallistujat kesäisiin toritunnelmiin. Ohjelma huipentuu kaikille avoimeen Grande Mahoganyn konserttiin. Grande Mahogany heijastaa musiikin edelläkävijöiden henkeä, rikkoen rajoja ja loihtien soundin, jossa sykkii funkin elinvoima, alt-rockin rouheus ja psykedelia.</p><p>Tapahtumassa osallistujat pääsevät nauttimaan pullasta ja kahvista kuten suomalaiseen perinteeseen kuuluu.</p><p>Welcome Dayssa puhumme englantia, minkä lisäksi tarjoamme tulkkausta tarpeen mukaan. Tapahtuma on maksuton ja avoin kaikille.</p><p>Tapahtuman aikataulu:</p><p>Esitykset:<br> 17:15-17:30 Säilättäret, Ala-Malmin tori<br> 17:30-17:45 JayJayFun, aula<br> 17:45-18 Säilättäret, Ala-Malmin tori<br> 18:30 - 18:45 JayJayFun, aula</p><p>Konsertti Malmisalissa:<br> 19-20 Grande Mahogany<br> <br>Työpajat:<br>17-20 Kasvomaalaus, aula<br>17-20 Hävikkikukkatyöpaja, parvi (2. krs.)<br>17-20 Heijastintyöpaja, kirjaston lasten osaston satunurkka<br>17-20 Nuorisopalveluiden karaoke, kokoushuone 2 (2. krs.)<br>17.15-19.15 Tufting työpaja, kirjaston lasten osaston askartelupöytä<br>17.30-19 The Art of belonging työpaja, kirjaston monitoimitila</p>", "sv": "<p>Welcome Day hälsar invånare som nyligen flyttat till Finland välkomna till Helsingfors!</p><p>Under evenemanget får de nya stadsborna möjlighet att bekanta sig med tjänster, hobbyer och fritidsaktiviteter inom det egna bostadsområdet.</p><p>Temat för evenemanget i år är sommartorget: Nedre Malms torg förvandlas till ett sommartorg, och förutom användbar information får deltagarna njuta av program som passar den typiska torgstämningen.</p><p>Menuetten Säilättärien Metrilaku förenar cirkus, komik och torghandel till ett imponerande spektakel. Jay Jay Fun underhåller med trollkonster och akrobatik, och dragspelaren Seija Vesterinen förflyttar deltagarna till somrig marknadsstämning. Programmet kulminerar i ett svängigt framträdande av Grande Mahogany.</p><p>Under evenemanget får deltagarna njuta av kaffe och bulle enligt finländsk tradition.</p><p>På Welcome Day talar vi engelska, och dessutom erbjuder vi tolkning vid behov. Evenemanget är kostnadsfritt och öppet för alla.</p>", "en": "<p>Welcome Day offers a warm welcome to new residents of Finland to Helsinki!</p><p>The event gives new residents the chance to explore the services, hobbies and leisure activities available in their own residential area.</p><p>The theme of this year’s event is ‘summer market’: Ala-Malmi Square becomes a summer market, and in addition to gaining useful information, visitors get to enjoy a programme that fits in with the market atmosphere.</p><p>The Metrilaku minuet by Säilättäret combines circus, comedy and the hustle and bustle of a market into a spectacular show. Jay Jay Fun entertains the audience with magic tricks and acrobatics, and accordionist Seija Vesterinen transports attendees to a summertime market atmosphere. The programme culminates in a lively performance by Grande Mahogany.</p><p>Grande Mahogany reflects the spirit of music pioneers, breaking boundaries and crafting a sound pulsing with the vitality of funk, the rawness of alt-rock, and the expansiveness of psychedelia. Born in Finland, the musician absorbed global rhythms from an early age, and moving to Manchester at 11 deepened the multi-layered tapestry of his music.</p><p>At the event, participants also get to enjoy a sweet bun with coffee, as is the Finnish custom.</p><p>At Welcome Day, we speak English and provide interpretation if required. The event is free of charge and open to all.</p><p>Event Schedule</p><p>Performances<br>17:15–17:30 Säilättäret<br>17:30–17:45 JayFunFun<br>17:45–18:00 Säilättäret<br>18:30–18:45 JayFunFun<br>19:00–20:00 Grande Mahogany</p><p>Workshops & Activities<br>17:00–20:00 Face Painting<br>17:00–20:00 Flower Workshop Using Surplus Flowers<br>17:00–20:00 Youth Services Karaoke<br>17:15–19:15 Tufting Workshop<br>17:30–19:00 The Art of Belonging Workshop</p>" }, "provider_contact_info": null, "short_description": { "fi": "Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!", "sv": "Welcome Day hälsar invånare som nyligen flyttat till Finland välkomna till Helsingfors!", "en": "Welcome Day offers a warm welcome to new residents of Finland to Helsinki!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2C6E8B03AD8056EB899AA4E691E01645/Welcome_Day", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2C6E8B03AD8056EB899AA4E691E01645/Welcome_Day", "en": "http://www.malmitalo.fi/en/events/event/2C6E8B03AD8056EB899AA4E691E01645/Welcome_Day" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68650/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqikehjfu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20326/?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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-09T06:20:59.045087Z", "last_modified_time": "2026-09-09T06:20:59.045105Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/59118e97-ec9a-4a2d-807c-ba86def59e75.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Espoon kaupunginkirjasto", "alt_text": "Kirjastoauto keltaisen vaahteran vieressä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386178/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-09-09T06:31:15.374518Z", "last_modified_time": "2026-09-09T07:05:10.881825Z", "date_published": null, "start_time": "2026-10-15T07:00:00Z", "end_time": "2026-10-15T08: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, "location_extra_info": { "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky", "sv": "Esbos bok- och kultur bus Välkky", "en": "Espoos' book and culture bus Välkky" }, "provider": { "fi": "Espoon kaupunginkirjasto", "sv": "Esbo stadsbibliotek", "en": "Espoo City Library" }, "name": { "fi": "Syysdösä Välkky Perkkaan asukaspuistossa", "sv": "Syysdösä Välkky: Bergans invånarpark", "en": "Syysdösä Välkky: Perkkaa residents' park" }, "description": { "fi": "<p>Kirjasto- ja kulttuuriauto Välkky kiertää Espoossa syyslomaviikolla 12.-16.10.2026.</p><p>Syysdösästä löydät kirjoja ja hauskaa puuhaa erityisesti lapsiperheille!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>", "sv": "<p>Bok- och kulturbussen Välkky kör runt i Esbo under höstlovsveckan den 12–16 oktober 2026.</p><p>I höstmyset hittar du böcker och roliga aktiviteter särskilt för barnfamiljer!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>The library and cultural bus Välkky will tour around Espoo during the autumn holiday week, from 12 to 16 October 2026.</p><p>In the autumn fun, you'll find books and enjoyable activities especially for families with children!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!", "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! " }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqikehjfu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqikehkay", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64123/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-09T06:20:59.045087Z", "last_modified_time": "2026-09-09T06:20:59.045105Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/59118e97-ec9a-4a2d-807c-ba86def59e75.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Espoon kaupunginkirjasto", "alt_text": "Kirjastoauto keltaisen vaahteran vieressä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386178/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-09-09T06:32:44.119160Z", "last_modified_time": "2026-09-09T07:04:48.960923Z", "date_published": null, "start_time": "2026-10-14T07:00:00Z", "end_time": "2026-10-14T08: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, "location_extra_info": { "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky", "sv": "Esbos bok- och kultur bus Välkky", "en": "Espoos' book and culture bus Välkky" }, "provider": { "fi": "Espoon kaupunginkirjasto", "sv": "Esbo stadsbibliotek", "en": "Espoo City Library" }, "name": { "fi": "Syysdösä Välkky Järvenperän asukaspuistossa", "sv": "Syysdösä Välkky: Träskända invånarpark", "en": "Syysdösä Välkky: Järvenperä residents' park" }, "description": { "fi": "<p>Kirjasto- ja kulttuuriauto Välkky kiertää Espoossa syyslomaviikolla 12.-16.10.2026.</p><p>Syysdösästä löydät kirjoja ja hauskaa puuhaa erityisesti lapsiperheille!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>", "sv": "<p>Bok- och kulturbussen Välkky kör runt i Esbo under höstlovsveckan den 12–16 oktober 2026.</p><p>I höstmyset hittar du böcker och roliga aktiviteter särskilt för barnfamiljer!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>The library and cultural bus Välkky will tour around Espoo during the autumn holiday week, from 12 to 16 October 2026.</p><p>In the autumn fun, you'll find books and enjoyable activities especially for families with children!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!", "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! " }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqikehkay/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqikehkve", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46222/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwdz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-09T06:20:59.045087Z", "last_modified_time": "2026-09-09T06:20:59.045105Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/59118e97-ec9a-4a2d-807c-ba86def59e75.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Espoon kaupunginkirjasto", "alt_text": "Kirjastoauto keltaisen vaahteran vieressä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386178/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-09-09T06:40:27.690761Z", "last_modified_time": "2026-09-09T07:03:53.488789Z", "date_published": null, "start_time": "2026-10-13T10:00:00Z", "end_time": "2026-10-13T11: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, "location_extra_info": { "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky", "sv": "Esbos bok- och kultur bus Välkky", "en": "Espoos' book and culture bus Välkky" }, "provider": { "fi": "Espoon kaupunginkirjasto", "sv": "Esbo stadsbibliotek", "en": "Espoo City Library" }, "name": { "fi": "Syysdösä Välkky Oittaan virkistysalueella", "sv": "Syysdösä Välkky: Oitans friluftsområde", "en": "Syysdösä Välkky: Oittaa recreational area" }, "description": { "fi": "<p>Kirjasto- ja kulttuuriauto Välkky kiertää Espoossa syyslomaviikolla 12.-16.10.2026.</p><p>Syysdösästä löydät kirjoja ja hauskaa puuhaa erityisesti lapsiperheille!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>", "sv": "<p>Bok- och kulturbussen Välkky kör runt i Esbo under höstlovsveckan den 12–16 oktober 2026.</p><p>I höstmyset hittar du böcker och roliga aktiviteter särskilt för barnfamiljer!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>The library and cultural bus Välkky will tour around Espoo during the autumn holiday week, from 12 to 16 October 2026.</p><p>In the autumn fun, you'll find books and enjoyable activities especially for families with children!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!", "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! " }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqikehkve/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqikehlhy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20410/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwdz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-09T06:20:59.045087Z", "last_modified_time": "2026-09-09T06:20:59.045105Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/59118e97-ec9a-4a2d-807c-ba86def59e75.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Espoon kaupunginkirjasto", "alt_text": "Kirjastoauto keltaisen vaahteran vieressä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386178/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-09-09T06:41:37.228746Z", "last_modified_time": "2026-09-09T07:03:23.558845Z", "date_published": null, "start_time": "2026-10-14T10:00:00Z", "end_time": "2026-10-14T11: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, "location_extra_info": { "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky", "sv": "Esbos bok- och kultur bus Välkky", "en": "Espoos' book and culture bus Välkky" }, "provider": { "fi": "Espoon kaupunginkirjasto", "sv": "Esbo stadsbibliotek", "en": "Espoo City Library" }, "name": { "fi": "Syysdösä Välkky Talomuseo Glimsillä", "sv": "Syysdösä Välkky: Glims gårdsmuseum", "en": "Syysdösä Välkky: Glims Farmstead Museum" }, "description": { "fi": "<p>Kirjasto- ja kulttuuriauto Välkky kiertää Espoossa syyslomaviikolla 12.-16.10.2026.</p><p>Syysdösästä löydät kirjoja myös Glimsin Voihan kakka -näyttelyn hengessä.</p><p>Kannattaa siis käydä tutustumassa sekä Välkkyyn että Glimsin Voihan kakka -näyttelyyn yhdellä kertaa! Keskiviikkoisin Talomuseo Glimsiin on vapaa pääsy.</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>", "sv": "<p>Bok- och kulturbussen Välkky kör runt i Esbo under höstlovsveckan den 12–16 oktober 2026.</p><p>I höstmyset hittar du böcker och roliga aktiviteter särskilt för barnfamiljer!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>The library and cultural bus Välkky will tour around Espoo during the autumn holiday week, from 12 to 16 October 2026.</p><p>In the autumn fun, you'll find books and enjoyable activities especially for families with children!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!", "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! " }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqikehlhy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqikehlzq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46348/?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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-09T06:20:59.045087Z", "last_modified_time": "2026-09-09T06:20:59.045105Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/59118e97-ec9a-4a2d-807c-ba86def59e75.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Espoon kaupunginkirjasto", "alt_text": "Kirjastoauto keltaisen vaahteran vieressä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386178/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-09-09T06:36:12.718813Z", "last_modified_time": "2026-09-09T06:36:12.718830Z", "date_published": null, "start_time": "2026-10-15T10:00:00Z", "end_time": "2026-10-15T11: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, "location_extra_info": { "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky", "sv": "Esbos bok- och kultur bus Välkky", "en": "Espoos' book and culture bus Välkky" }, "provider": { "fi": "Espoon kaupunginkirjasto", "sv": "Esbo stadsbibliotek", "en": "Espoo City Library" }, "name": { "fi": "Syysdösä Välkky Leppävaaran urheilupuistossa", "sv": "Syysdösä Välkky: Alberga idrottspark", "en": "Syysdösä Välkky: Leppävaara Sports Park" }, "description": { "fi": "<p>Kirjasto- ja kulttuuriauto Välkky kiertää Espoossa syyslomaviikolla 12.-16.10.2026.</p><p>Syysdösästä löydät kirjoja ja hauskaa puuhaa erityisesti lapsiperheille!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>", "sv": "<p>Bok- och kulturbussen Välkky kör runt i Esbo under höstlovsveckan den 12–16 oktober 2026.</p><p>I höstmyset hittar du böcker och roliga aktiviteter särskilt för barnfamiljer!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>The library and cultural bus Välkky will tour around Espoo during the autumn holiday week, from 12 to 16 October 2026.</p><p>In the autumn fun, you'll find books and enjoyable activities especially for families with children!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!", "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! " }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqikehlzq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqikehmkm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46348/?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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-09T06:20:59.045087Z", "last_modified_time": "2026-09-09T06:20:59.045105Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/59118e97-ec9a-4a2d-807c-ba86def59e75.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Espoon kaupunginkirjasto", "alt_text": "Kirjastoauto keltaisen vaahteran vieressä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386178/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-09-09T06:35:51.224092Z", "last_modified_time": "2026-09-09T06:35:51.224114Z", "date_published": null, "start_time": "2026-10-12T10:00:00Z", "end_time": "2026-10-12T11: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, "location_extra_info": { "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky", "sv": "Esbos bok- och kultur bus Välkky", "en": "Espoos' book and culture bus Välkky" }, "provider": { "fi": "Espoon kaupunginkirjasto", "sv": "Esbo stadsbibliotek", "en": "Espoo City Library" }, "name": { "fi": "Syysdösä Välkky Leppävaaran urheilupuistossa", "sv": "Syysdösä Välkky: Alberga idrottspark", "en": "Syysdösä Välkky: Leppävaara Sports Park" }, "description": { "fi": "<p>Kirjasto- ja kulttuuriauto Välkky kiertää Espoossa syyslomaviikolla 12.-16.10.2026.</p><p>Syysdösästä löydät kirjoja ja hauskaa puuhaa erityisesti lapsiperheille!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>", "sv": "<p>Bok- och kulturbussen Välkky kör runt i Esbo under höstlovsveckan den 12–16 oktober 2026.</p><p>I höstmyset hittar du böcker och roliga aktiviteter särskilt för barnfamiljer!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>The library and cultural bus Välkky will tour around Espoo during the autumn holiday week, from 12 to 16 October 2026.</p><p>In the autumn fun, you'll find books and enjoyable activities especially for families with children!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!", "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! " }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqikehmkm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqikehmzy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20355/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-09T06:20:59.045087Z", "last_modified_time": "2026-09-09T06:20:59.045105Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/59118e97-ec9a-4a2d-807c-ba86def59e75.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Espoon kaupunginkirjasto", "alt_text": "Kirjastoauto keltaisen vaahteran vieressä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386178/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-09-09T06:33:53.881831Z", "last_modified_time": "2026-09-09T06:33:53.881851Z", "date_published": null, "start_time": "2026-10-16T07:00:00Z", "end_time": "2026-10-16T08: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, "location_extra_info": { "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky", "sv": "Esbos bok- och kultur bus Välkky", "en": "Espoos' book and culture bus Välkky" }, "provider": { "fi": "Espoon kaupunginkirjasto", "sv": "Esbo stadsbibliotek", "en": "Espoo City Library" }, "name": { "fi": "Syysdösä Välkky Soukan asukaspuistossa", "sv": "Syysdösä Välkky: Sökö invånarpark", "en": "Syysdösä Välkky: Soukka residents' park" }, "description": { "fi": "<p>Kirjasto- ja kulttuuriauto Välkky kiertää Espoossa syyslomaviikolla 12.-16.10.2026.</p><p>Syysdösästä löydät kirjoja ja hauskaa puuhaa erityisesti lapsiperheille!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>", "sv": "<p>Bok- och kulturbussen Välkky kör runt i Esbo under höstlovsveckan den 12–16 oktober 2026.</p><p>I höstmyset hittar du böcker och roliga aktiviteter särskilt för barnfamiljer!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>The library and cultural bus Välkky will tour around Espoo during the autumn holiday week, from 12 to 16 October 2026.</p><p>In the autumn fun, you'll find books and enjoyable activities especially for families with children!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!", "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! " }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqikehmzy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqikehnly", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20268/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-09T06:20:59.045087Z", "last_modified_time": "2026-09-09T06:20:59.045105Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/59118e97-ec9a-4a2d-807c-ba86def59e75.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Espoon kaupunginkirjasto", "alt_text": "Kirjastoauto keltaisen vaahteran vieressä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386178/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-09-09T06:29:42.579048Z", "last_modified_time": "2026-09-09T06:29:42.579064Z", "date_published": null, "start_time": "2026-10-13T07:00:00Z", "end_time": "2026-10-13T08: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, "location_extra_info": { "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky", "sv": "Esbos bok- och kultur bus Välkky", "en": "Espoos' book and culture bus Välkky" }, "provider": { "fi": "Espoon kaupunginkirjasto", "sv": "Esbo stadsbibliotek", "en": "Espoo City Library" }, "name": { "fi": "Syysdösä Välkky Olarin asukaspuistossa", "sv": "Syysdösä Välkky: Olars invånarpark", "en": "Syysdösä Välkky: Olari residents' park" }, "description": { "fi": "<p>Kirjasto- ja kulttuuriauto Välkky kiertää Espoossa syyslomaviikolla 12.-16.10.2026.</p><p>Syysdösästä löydät kirjoja ja hauskaa puuhaa erityisesti lapsiperheille!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>", "sv": "<p>Bok- och kulturbussen Välkky kör runt i Esbo under höstlovsveckan den 12–16 oktober 2026.</p><p>I höstmyset hittar du böcker och roliga aktiviteter särskilt för barnfamiljer!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>The library and cultural bus Välkky will tour around Espoo during the autumn holiday week, from 12 to 16 October 2026.</p><p>In the autumn fun, you'll find books and enjoyable activities especially for families with children!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!", "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! " }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqikehnly/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqikehn34", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20236/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-09T06:20:59.045087Z", "last_modified_time": "2026-09-09T06:20:59.045105Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/59118e97-ec9a-4a2d-807c-ba86def59e75.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Espoon kaupunginkirjasto", "alt_text": "Kirjastoauto keltaisen vaahteran vieressä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386178/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-09-09T06:28:16.920415Z", "last_modified_time": "2026-09-09T06:28:16.920440Z", "date_published": null, "start_time": "2026-10-12T07:00:00Z", "end_time": "2026-10-12T08: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, "location_extra_info": { "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky", "sv": "Esbos bok- och kultur bus Välkky", "en": "Espoos' book and culture bus Välkky" }, "provider": { "fi": "Espoon kaupunginkirjasto", "sv": "Esbo stadsbibliotek", "en": "Espoo City Library" }, "name": { "fi": "Syysdösä Välkky Mankkaan asukaspuistossa", "sv": "Syysdösä Välkky: Mankans invånarpark", "en": "Syysdösä Välkky: Mankkaa residents' park" }, "description": { "fi": "<p>Kirjasto- ja kulttuuriauto Välkky kiertää Espoossa syyslomaviikolla 12.-16.10.2026.</p><p>Syysdösästä löydät kirjoja ja hauskaa puuhaa erityisesti lapsiperheille!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>", "sv": "<p>Bok- och kulturbussen Välkky kör runt i Esbo under höstlovsveckan den 12–16 oktober 2026.</p><p>I höstmyset hittar du böcker och roliga aktiviteter särskilt för barnfamiljer!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>The library and cultural bus Välkky will tour around Espoo during the autumn holiday week, from 12 to 16 October 2026.</p><p>In the autumn fun, you'll find books and enjoyable activities especially for families with children!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!", "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! " }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqikehn34/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:21296646", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4010517/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null, "info_url": { "fi": "https://www.lippu.fi/event/kurtturuusut-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21296646/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kurtturuusut-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21296646/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kurtturuusut-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21296646/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1491174, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-23T20:16:00.504768Z", "last_modified_time": "2025-10-23T20:16:00.504790Z", "url": "https://www.lippu.fi/obj/mam/finland/69/0f/hkt-tickets_458214_3684898_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491174/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-03T15:16:35.471389Z", "last_modified_time": "2026-09-09T00:16:53.303995Z", "date_published": null, "start_time": "2026-09-08T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "Kurtturuusut" }, "description": { "fi": "<p>Pirjo Tuominen - Miika Muranen<br><strong>KURTTURUUSUT</strong></p><p>Kurtturuusut on lämminhenkinen komedia ystävyydestä, rakkaudesta ja ikääntymisestä.</p><p>Paula, Eini, Erika ja Sirkka – neljä seitsemänkymppistä leskinaista, ystävykset, Kurtturuusut. Naiset jakavat yhdessä elämäänsä, ja jaettavaa riittää. He eivät jää vaivojansa valittelemaan, vaan elävät itsensä näköistä elämää, nauttivat täysillä ja pitävät hauskaa yhdessä.</p><p>Mutta jotain puuttuu. Rakkaus.</p><p>Kurtturuusut syöksyvät rakkauden etsintään rohkeasti, sillä jos haluaa jotain tehdä, se on tehtävä nyt. Naiset alkavat tapailla erilaisia miehiä, joukossa niin vanhoja tuttuja kuin netin kautta löytyneitä uusia tuttavuuksia. Syntyy draamaa, komiikkaa, elämää.</p><p>Kurtturuusut on hehkuva ystävyyden ylistys ja korkealle kohotettu malja ikääntymisen iloille ja elämän kaikille sävyille!</p><p>Näytelmä perustuu Pirjo Tuomisen samannimiseen myyntimenestysromaaniin (Tammi 2024), ja sen dramatisoi ja ohjaa Miika Muranen.</p><p>Rooleissa: Helena Haaranen, Sari Havas, Aino Seppo,<br>Leenamari Unho, Seppo Halttunen, Lasse Karkjärvi,<br>Santeri Kinnunen, Vappu Nalbantoglu, Mikko Vihma</p><p>Oikeuksien valvoja: Nordic Drama Corner<br>Kirjailija: Pirjo Tuominen<br>Dramatisointi ja ohjaus: Miika Muranen<br>Dramaturgi: Sanna Niemeläinen<br>Lavastus: Katariina Kirjavainen<br>Pukusuunnittelu: Laura Dammert<br>Valo- ja videosuunnittelu: Mika Haaranen<br>Äänisuunnittelu: Jaakko Virmavirta<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Läheisyyskoreografi: Johanna Elovaara<br></p>" }, "provider_contact_info": null, "short_description": { "fi": "Pirjo Tuominen - Miika Muranen KURTTURUUSUT Kurtturuusut on lämminhenkinen komedia ystävyydestä, rakkaudesta ja ikääntymisestä." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kurtturuusut-4010517/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kurtturuusut-4010517/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kurtturuusut-4010517/?affiliate=ADV&language=en" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21296646/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqdqrhlku", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385973, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-25T08:32:36.870425Z", "last_modified_time": "2026-08-25T08:32:36.870443Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ac1e1b5e-7bee-4f8d-937a-c47a83ea354c.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kuvassa Evelyse Eerola", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385973/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-25T08:33:35.570061Z", "last_modified_time": "2026-09-08T15:46:41.451536Z", "date_published": null, "start_time": "2026-09-17T14:00:00Z", "end_time": "2026-09-17T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": { "fi": "Evelyse Eerola", "sv": "Evelyse Eerola", "en": "Evelyse Eerola" }, "name": { "fi": "Keskustelu: Kaksikielisten lasten kasvatus", "sv": "Diskussion: Att uppfostra tvåspråkiga barn", "en": "Talk: Raising Bilingual Children" }, "description": { "fi": "<p>Miten vanhemmat voivat tukea lastensa kaksikielistä kehitystä arjessa? Tässä esityksessä tarkastellaan käytännön keinoja, joilla kotiin voidaan luoda myönteinen ja kannustava kaksikielinen ympäristö. Erityistä huomiota kiinnitetään Suomessa monikielisissä perheissä kasvaviin lapsiin.</p>", "sv": "<p>Hur kan föräldrar stödja sina barns tvåspråkiga utveckling i vardagen? I detta föredrag kommer vi att undersöka praktiska strategier för att skapa en positiv och stödjande tvåspråkig miljö i hemmet, med särskilt fokus på barn som växer upp i flerspråkiga familjer i Finland.</p>", "en": "<p>How can parents support their children’s bilingual development in everyday life? In this talk, we will explore practical strategies for creating a positive and supportive bilingual environment at home, with a special focus on children growing up in multilingual families in Finland.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tässä esityksessä tarkastellaan käytännön keinoja, joilla kotiin voidaan luoda myönteinen ja kannustava kaksikielinen ympäristö.", "sv": "I detta föredrag kommer vi att undersöka praktiska strategier för att skapa en positiv och stödjande tvåspråkig miljö i hemmet.", "en": "In this talk, we will explore practical strategies for creating a positive and supportive bilingual environment at home." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqdqrhlku/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69898", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "13-14 €", "en": "13-14 €" }, "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/", "en": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386174, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-08T14:13:51.185760Z", "last_modified_time": "2026-09-08T14:13:51.185772Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_797149.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386174/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-08T14:13:51.073589Z", "last_modified_time": "2026-09-08T14:13:51.318408Z", "date_published": null, "start_time": "2026-09-26T11:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "name": { "fi": "California Schemin' – Rakkautta & Anarkiaa 17.–27.9.2026", "en": "California Schemin' – Love & Anarchy 17.–27.9.2026" }, "description": { "fi": "<p>Skottiräppärit alkavat esiintyä kalifornialaisina saadakseen uransa lentoon. James McAvoyn hillitön debyyttiohjaus perustuu tositapahtumiin.</p><p>”Haluatko olla uusi Eminem?” kysytään musiikkilehden ilmoituksessa. Skotlantilaiset kaverukset Gavin ja Billy sanovat kyllä. He ovat amatööriräppäreitä, jotka eivät saa uraansa alkuun skotlantilaisia karsastavassa Englannissa. Kotipuolessa heidän haaveensa saavat silmät pyörimään, Lontoon koe-esiintymisissä heidän skottiaksenttinsa naurattaa tuomareita. Hetken ideasta kasvaa suunnitelma: he alkavat näytellä amerikkalaisia räppäreitä saadakseen ansaitsemaansa uskottavuutta. Pian ”Brains” ja ”Silibili” ovat Lontoossa levytuottaja Anthonyn (James MacAvoy) siipien alla, matkalla kohti rahaa ja mainetta. Valheella on kuitenkin pitkät jäljet, ja epäaitouden paino koettelee miesten välistä ystävyyttä pahemman kerran.</p><p>Muotisana ”huijarisyndrooma” ei ole koskaan ollut yhtä käsinkosketeltava kuin tätä tositarinaa seuratessa. California Schemin’ on iloinen sekoitus genrejä: se on tummasävyinen komedia, puhdas musiikkielokuva, raastavan inhimillinen draama, ajoittain jopa jännäri. Rapin ystäville se on puhdasta iloa. Monipuolisen elokuvan eri kerroksia yhdistää inhimillinen kertomus ystävyydestä, kunnianhimosta ja valheen luomasta painolastista.</p><p>Erityisesti elokuva on esikoisohjaaja James McAvoyn rakkauskirje Skotlannille, jonka erikoiset hahmot, huumori ja rohkea elämänasenne järisyttävät tarttuvien säkeiden ja biittien kautta elokuvateatterin seiniä sekä katsojaa luihin ja ytimiin.</p><p>Joonas Kallonen</p><p>Ohjaus James McAvoy<br>Näyttelijät Séamus McLean Ross, Samuel Bottomley, Lucy Halliday, Rebekah Murrell, James McAvoy<br>Maa Iso-Britannia, Yhdysvallat<br>Kielet englanti<br>Ikäraja K12<br>Kesto 107 min<br>Teema Musiikin voima<br>Avainsanat Musiikki, Feelgood, Ystävyys, Huumori<br>Vuosi 2025<br>Levittäjä Bankside Films</p>", "en": "<p>Scottish rappers start posing as Californians to get their careers off the ground. James McAvoy's riotous directorial debut is based on a true story.</p><p>“Do you want to be the next Eminem?” asks an advert in a music magazine. Scottish friends Gavin and Billy answer yes. They are aspiring rappers unable to launch their careers in an England that looks down on Scots. Back home, their ambitions are met with rolled eyes; at auditions in London, their Scottish accents become the object of the judges’ laughter. What begins as a passing idea soon turns into a plan: they reinvent themselves as American rappers to gain the credibility they believe they deserve. Before long, “Brains” and “Silibili” find themselves under the wing of record producer Anthony (James McAvoy), on the road to money and fame. But deception leaves a long trail, and the burden of living a lie puts their friendship under severe strain.</p><p>The buzzword “impostor syndrome” has rarely felt more tangible than in this true story. California Schemin’ is a lively blend of genres: a dark comedy, a full-blooded music film, a deeply human drama, and at times even a thriller. For rap fans, it is pure delight. Uniting its many layers is a profoundly human story about friendship, ambition and the weight of deception.</p><p>Above all, the film is debut director James McAvoy’s love letter to Scotland, of which colourful characters, distinctive humour and fearless outlook on life reverberate through infectious rhymes and beats, shaking both the cinema walls and the audience to their core.</p><p>Joonas Kallonen (translated by Kati Ilomäki)</p>" }, "provider_contact_info": null, "short_description": { "fi": "Skottiräppärit alkavat esiintyä kalifornialaisina saadakseen uransa lentoon. James McAvoyn hillitön debyyttiohjaus perustuu tositapahtumiin.", "en": "Scottish rappers start posing as Californians to get their careers off the ground. James McAvoy's riotous directorial debut is based on a true story." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/10C579CEBBFEC3335896F52984977400/California_Schemin_", "en": "http://www.savoyteatteri.fi/en/events/event/10C579CEBBFEC3335896F52984977400/California_Schemin_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69898/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69897", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "13-14 €", "en": "13-14 €" }, "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/", "en": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386173, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-08T14:13:50.707231Z", "last_modified_time": "2026-09-08T14:13:50.707245Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_797147.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386173/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-08T14:13:50.584672Z", "last_modified_time": "2026-09-08T14:13:50.844685Z", "date_published": null, "start_time": "2026-09-26T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "name": { "fi": "No Good Men – Rakkautta & Anarkiaa 17.–27.9.2026", "en": "No Good Men – Love & Anarchy 17.–27.9.2026" }, "description": { "fi": "<p>Poliittisessa ja romanttisessa elokuvassa tv-kuvaaja löytää uuden rakkauden viimeisinä vapauden päivinä ennen talibanien toista valtaannousua Afganistanissa.</p><p>Afganistanilaisen Shahrbanoo Sadatin kirjoittama ja ohjaama elokuva No Good Men kertoo raskaista aiheista kevyesti, romcomin tapaan. Keskiössä ovat naisen asema ja poliittiset uutisaiheet Afganistanissa juuri ennen kuin Yhdysvallat vetäytyi maasta vuonna 2021.</p><p>Sadat esittää itse pääosaa, tv-yhtiön kuvaaja Narua, pienen pojan äitiä, joka on eroamassa väkivaltaisesta miehestään. Naru kuvaa studiossa paikallista Dr. Philiä, mutta tahtoisi uutiskuvaajaksi. Kerran hän sitten pääsee tähtitoimittaja Qodratin matkaan ja osoittaa kyvykkyytensä reportaasikuvaukseen.</p><p>Koska Naru on nainen, hän saa haastatteluissa naiset avautumaan toisin kuin miehet. Elokuvan nimi juontaa tällaisesta tilanteesta, Narun tekemästä ystävänpäivän katugallupista, jossa nainen toisensa jälkeen todistaa, ettei Afganistanissa ole yhtään hyviä miehiä. Kaikki kohtelevat naisia kaltoin.</p><p>Narun ja Qodratin yhteistyö johtaa ystävyyteen ja vähän enempäänkin, ja elokuva kumartaa lopussa vähän Michael Curtizin Casablancalle. Afganistanista löytyy ehkä sittenkin yksi hyvä mies?</p><p>Jaana Semeri</p><p>Ohjaus Shahrbanoo Sadat<br>Näyttelijät Shahrbanoo Sadat, Anwar Hashimi, Liam Hussaini, Yasin Negah, Torkan Omari<br>Maa Afganistan, Saksa, Tanska, Ranska, Norja<br>Kielet dari, arabia, englanti, saksa, paštu<br>Tekstitykset englanti<br>Ikäraja K12<br>Kesto 103 min<br>Teema Avainelokuvat<br>Avainsanat Festarihitti, Naiskuvia, Perhesuhteet, Rakkaus, Ihmisoikeudet<br>Vuosi 2026<br>Alkuperäinen nimi Kabul Jan<br>Levittäjä Edge Entertainment</p>", "en": "<p>In this politically charged and romantic film, a TV camerawoman finds new love during the final days of freedom before the Taliban’s second takeover of Afghanistan.</p><p>Written and directed by Afghan filmmaker Shahrbanoo Sadat, the film No Good Men tackles heavy subjects with a light touch, in the style of a rom-com. It centres on the position of women and political news topics in Afghanistan just before the US withdrew from the country in 2021.</p><p>Sadat plays the lead role herself, as Naru, a camerawoman for a TV company and mother to a young son, who is in the process of divorcing her abusive husband. Naru films a local version of Dr. Phil in the studio but would prefer to be a news videographer. One day, she gets the chance to accompany star reporter Qodrat on an assignment and demonstrates her talent for reportage videography.</p><p>Because Naru is a woman, she gets women to open up in interviews in ways that men cannot. The film’s title stems from such a situation: a Valentine’s Day street poll conducted by Naru, in which one woman after another testifies that there are no good men in Afghanistan. Everyone treats women badly.</p><p>Naru and Qodrat’s collaboration leads to friendship and perhaps even a little more, and the film pays a slight homage to Michael Curtiz’s Casablanca at the end. Perhaps there is one good man in Afghanistan after all?</p><p>Jaana Semeri (translated by Moritz Müller)</p>" }, "provider_contact_info": null, "short_description": { "fi": "Poliittisessa ja romanttisessa elokuvassa tv-kuvaaja löytää uuden rakkauden viimeisinä vapauden päivinä ennen talibanien toista valtaannousua Afganistanissa.", "en": "In this politically charged and romantic film, a TV camerawoman finds new love during the final days of freedom before the Taliban’s second takeover of Afghanistan." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F55597AC120901B52F382B08885FDECE/No_Good_Men", "en": "http://www.savoyteatteri.fi/en/events/event/F55597AC120901B52F382B08885FDECE/No_Good_Men" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69897/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69896", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "13-14 €", "en": "13-14 €" }, "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/", "en": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386172, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-08T14:13:50.237907Z", "last_modified_time": "2026-09-08T14:13:50.237921Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_797146.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386172/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-08T14:13:50.120079Z", "last_modified_time": "2026-09-08T14:13:50.373580Z", "date_published": null, "start_time": "2026-09-25T18:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "name": { "fi": "Ghost in the Cell – Rakkautta & Anarkiaa 17.–27.9.2026", "en": "Ghost in the Cell – Love & Anarchy 17.–27.9.2026" }, "description": { "fi": "<p>Joukko vankeja taistelee hengestään yliluonnollisia voimia vastaan pitelemättömässä indonesialaisessa genresekoituksessa.</p><p>Häkki heilahtaa toimittaja Dimasille, kun hänet löydetään pomonsa työhuoneesta yltä päältä veressä, pomo kattotuulettimeen suolistettuna. Vankila on kiltille tyypille pelottava paikka, mutta jengit ja sadistiset vartijat ovat vasta alkusoittoa: kun grand guignol -murhat jatkuvat vielä vankilan sisällä, on helvetti kirjaimellisesti irti.</p><p>Ruumiiden kasaantuessa vankien epäilykset kohdistuvat Dimasiin. Pian käy kuitenkin selväksi, että vastassa ovat yliluonnolliset voimat eikä kukaan kuolevainen ole turvassa. Vankien on otettava käyttöön kaikki kuviteltavissa olevat aseet selvitäkseen.</p><p>Indonesialainen Ghost in the Cell murtautuu ulos genrestä toisensa perään. Aineksina ovat tasavertaisesti draama, kauhu, martial arts -toiminta, fantasia ja slapstick, usein saman kohtauksen sisällä. Elokuva luo itselleen säännöistä piittaamattoman tyylin, jossa joukkotappelu saattaa muuttua tanssiksi ja jossa gore-efektit jakavat tilaa hyväntahtoisen ystävyystematiikan kanssa.</p><p>Erityistä hupia seuraa oivalluksesta, että vankeja saalistava henki poimii uhreikseen kaikkein vihaisimmat yksilöt. Positiivisesta ajattelusta tulee tällöin eloonjäämistaistelun arvokkain ase.</p><p>Jussi Tarvainen</p><p>Ohjaus Joko Anwar<br>Näyttelijät Abimana Aryasatya, Bront Palarae, Dimas Danang<br>Maa Indonesia, Etelä-Korea<br>Kielet indonesia<br>Tekstitykset englanti<br>Ikäraja K18<br>Kesto 106 min<br>Teema Midnight Mayhem<br>Avainsanat Angsti, Jännitys, Kauhu, Action<br>Vuosi 2026<br>Levittäjä Njuta Films</p>", "en": "<p>A group of prisoners fight for survival against a malevolent spirit in the gleefully unhinged Indonesian genre mash-up.</p><p>Prison awaits journalist Dimas when he’s found covered in blood in his boss’s office, the boss gutted and hung across the ceiling fan. For a nice guy like Dimas, prison is a scary place, but the gangs and the sadistic guards are just the beginning: when the grand-guignol-style murders continue within the prison walls, all hell literally breaks loose.</p><p>As the bodies mount, the prisoners begin to suspect Dimas. Soon, however, it becomes clear that supernatural forces are at work and no mortal man is safe. The prisoners will have to wield every conceivable weapon to survive.</p><p>The Indonesian jailhouse throwdown Ghost in the Cell gleefully breaks out of every genre thrown at it. Among its ingredients are drama, horror, martial arts, fantasy and slapstick, often within the same scene. The film creates for itself a freewheeling style in which a brawl can become a dance and gore effects share space with wholesome themes of friendship and collaboration.</p><p>Particular hilarity ensues when the prisoners discover that the spirit stalking them picks as its victims the angriest individuals, making positive thinking the most valuable weapon in their fight for survival.</p><p>Jussi Tarvainen</p>" }, "provider_contact_info": null, "short_description": { "fi": "Joukko vankeja taistelee hengestään yliluonnollisia voimia vastaan pitelemättömässä indonesialaisessa genresekoituksessa.", "en": "A group of prisoners fight for survival against a malevolent spirit in the gleefully unhinged Indonesian genre mash-up." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/FAAB7D8008F672D73CCCD27163AD6E43/Ghost_in_the_Cell", "en": "http://www.savoyteatteri.fi/en/events/event/FAAB7D8008F672D73CCCD27163AD6E43/Ghost_in_the_Cell" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69896/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69895", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "13-14 €", "en": "13-14 €" }, "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/", "en": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386171, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-08T14:13:49.877954Z", "last_modified_time": "2026-09-08T14:13:49.877969Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_797145.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386171/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-08T14:13:49.743568Z", "last_modified_time": "2026-09-08T14:13:50.010877Z", "date_published": null, "start_time": "2026-09-25T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "name": { "fi": "Arrested Memory – Rakkautta & Anarkiaa 17.–27.9.2026", "en": "Arrested Memory – Love & Anarchy 17.–27.9.2026" }, "description": { "fi": "<p>R&A-suosikki Sabun rikoselokuvassa etsivä ryhtyy selvittämään sieppausoperaatiota, mutta paheneva muistisairaus sotkee suunnitelmia.</p><p>Huonosti nukutun yön jälkeinen päivä on usein tahmea. Olo on väsynyt ja keskittymiskyky koetuksella. Arrested Memoryn rikosetsivänä työskentelevä päähenkilö kantaa tavallista raskaampaa taakkaa: hän kärsii muistisairaudesta.</p><p>Kun paikallisen liikemiehen lapsi kidnapataan, etsivä Lee (Ethan Juan) lähtee syyllisen perään lunnasrahat kourassaan. Yltyvä dementia heittää kuitenkin jos monenlaista kapulaa konnajahdin rattaisiin. Operaatio suistuu raiteiltaan lähes välittömästi, ja pian etsivä huomaa pakenevansa paitsi roistoja myös kollegojaan. Vähä vähältä Leen kova ulkokuori antaa myöten. Sairausdiagnoosin taustalta alkaa paljastua menneen haamuja.</p><p>Kulttimainetta nauttiva Sabu on ohjannut elokuvia kolmekymmentä vuotta, ja sen huomaa. Arrested Memory on tyylikäs ja itsevarma lisä etsiväelokuvan kirjavaan perinteeseen. Kuvaus suosii lämpimiä värejä, tyyneyttä ja hiljaisuutta. Sabu löytää seesteistä kauneutta hengästyttävien käsirysyjenkin keskeltä. Vaikka Leen verkkaisestikin etenevälle matkalle annetaan tilaa hengittää, elokuva ei unohda lajityyppinsä suolaa: komiikkaa ja meheviä toimintakohtauksia.</p><p>Iikka Arve</p><p>Ohjaus Sabu<br>Näyttelijät Ethan Juan, Moon Lee, Reika Kirishima, Shinichi Tsutsumi<br>Maa Taiwan, Japani<br>Kielet kiina<br>Tekstitykset englanti<br>Ikäraja K16<br>Kesto 87 min<br>Teema Asian Cuts<br>Avainsanat Action, Huumori, Angsti, Jännitys, Muisti, Matka, Suru, Rikos</p>", "en": "<p>In this crime drama by R&A favourite Sabu, a detective sets out to investigate a kidnapping operation, but his worsening dementia throws his plans into disarray.</p><p>The day after a bad night’s sleep can often feel sluggish. You are tired, and your ability to concentrate is put to the test. The protagonist of Arrested Memory, a detective by profession, carries a heavier burden than most: he is suffering from dementia.</p><p>When a child of a local businessman is kidnapped, detective Lee (Ethan Juan) sets off after the culprit, ransom in hand. But his advancing dementia throws all manner of obstacles in the way of the investigation. The operation goes off the rails almost immediately, and before long the detective finds himself fleeing not only the criminals but also his colleagues. Little by little, Lee’s tough exterior begins to crack. As the diagnosis unfolds, ghosts from the past begin to surface.</p><p>Cult director Sabu has been making films for thirty years, and it shows. Arrested Memory is a stylish and confident addition to the rich tradition of detective cinema. The cinematography favours warm colours, stillness and silence. Even amid breathtaking hand-to-hand fights, Sabu finds serene beauty. Although the film gives its protagonist’s unhurried journey room to breathe, it never forgets the essential ingredients of the genre: comedy and juicy action sequences.</p><p>Iikka Arve (translated by Mira Liimatainen)</p>" }, "provider_contact_info": null, "short_description": { "fi": "R&A-suosikki Sabun rikoselokuvassa etsivä ryhtyy selvittämään sieppausoperaatiota, mutta paheneva muistisairaus sotkee suunnitelmia.", "en": "In this crime drama by R&A favourite Sabu, a detective sets out to investigate a kidnapping operation, but his worsening dementia throws his plans into disarray." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/719446C3941EDA392122EE45DC350911/Arrested_Memory", "en": "http://www.savoyteatteri.fi/en/events/event/719446C3941EDA392122EE45DC350911/Arrested_Memory" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69895/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69894", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "13-14 €", "en": "13-14 €" }, "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/", "en": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386170, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-08T14:13:49.348564Z", "last_modified_time": "2026-09-08T14:13:49.348579Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_797144.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386170/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-08T14:13:49.215645Z", "last_modified_time": "2026-09-08T14:13:49.495321Z", "date_published": null, "start_time": "2026-09-25T13:45:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "name": { "fi": "Everybody to Kenmure Street – Rakkautta & Anarkiaa 17.–27.9.2026", "en": "Everybody to Kenmure Street – Love & Anarchy 17.–27.9.2026" }, "description": { "fi": "<p>Skotlantilainen naapurusto nousee vastustamaan maahanmuuttoviranomaisen kiinniottoja omalla kotikadullaan dokumentissa, joka osoittaa kansalaisaktivismin ja yhteisöllisyyden voiman.</p><p>13. toukokuuta 2021, muslimien Id-juhlan alkamisen aamuna Iso-Britannian maahanmuuttoviranomainen järjestää ratsian Kenmure Streetillä Skotlannin Glasgow’ssa.</p><p>Kaksi miestä otetaan kiinni ja suljetaan pakettiautoon. Tästä käynnistyy kansalaisaktivismin ja yhteisöllisyyden rauhaisa voimannäyte, jossa monikulttuurinen naapurusto nousee vastustamaan omien jäsentensä kiinniottoa.</p><p>Felipe Bustos Sierran ylistetty dokumentti on saanut tunnustusta mm. Sundancen elokuvajuhlilla. Hän kuvaa, miten jokainen voi vaikuttaa yhteisen asian eteen omalla tavallaan: Yksi hivuttautuu pakettiauton alle estääkseen sen lähdön, toinen ostaa kaupasta ruokaa jaettavaksi ja kolmas pirauttaa juristille.</p><p>Näyttelijät Emma Thompson, Kate Dickie ja Keira Lucchesi antavat äänensä kolmen osallistujan kokemuksille päivän tapahtumista. Haastatteluiden ja kattavan videomateriaalin lisäksi protestia peilataan arkistomateriaalilla osaksi kansalaisaktivismin perinnettä Glasgow’ssa.</p><p>Useat maat kiristävät maahanmuuttopolitiikkaansa. Moni kohtaa omakohtaisesti, lähipiirissään tai median välityksellä kiinniottoja tai niiden uhkaa. Dokumentti osoittaa, että jos tätä tapahtuu omalla kotikadullasi, sitä ei tarvitse katsoa sivusta.</p><p>Katariina Kantola</p><p>Ohjaus Felipe Bustos Sierra<br>Näyttelijät Emma Thompson, Kate Dickie, Keira Lucchesi<br>Maa Iso-Britannia<br>Kielet englanti, urdu, pandžabi<br>Tekstitykset osittain englanti<br>Ikäraja K12<br>Kesto 98 min<br>Teema Fight the Power<br>Avainsanat Yhteiskunta, Kaupunkitila, Siirtolaisuus, Ihmisoikeudet<br>Vuosi 2025<br>Levittäjä The Party Film Sales</p>", "en": "<p>A Scottish neighborhood rises up against immigration arrests on their own street, demonstrating the power of civic activism and community.</p><p>The date is 13 May, 2021, and as the local muslim community is preparing to celebrate Eid, the United Kingdom’s immigration agency launches a raid on Kenmure Street in Glasgow, Scotland.</p><p>Two men are apprehended and locked inside a van. This gives rise to a peaceful tour de force of civic activism and communality, as the multicultural neighbourhood comes together to protest the arrest of their members.</p><p>Felipe Bustos Sierra’s praised documentary has won recognition at Sundance Film Festival, among others. He portrays how everyone can bring something to further a common cause: while one can sneak under the van to stop it from moving, another might buy food to share from the local shop, and a third person can ring a lawyer.</p><p>Actors Emma Thompson, Kate Dickie, and Keira Lucchesi give their voices to three people who were present on the day. Along with interviews and fresh video footage, archival material is used to bring this protest into the wider context of civic activism in Glasgow.</p><p>Many countries are tightening their immigration policies. Many of us have either personal experiences of dealing with being arrested or threatened with arrest, or know someone who has faced these issues, or has at the very least seen such actions portrayed in the media. This documentary shows us, that if this happens on your own street, you don’t have be a bystander.</p><p>Katariina Kantola</p>" }, "provider_contact_info": null, "short_description": { "fi": "Skotlantilainen naapurusto nousee vastustamaan maahanmuuttoviranomaisen kiinniottoja omalla kotikadullaan dokumentissa, joka osoittaa kansalaisaktivismin ja yhteisöllisyyden voiman.", "en": "A Scottish neighborhood rises up against immigration arrests on their own street, demonstrating the power of civic activism and community." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2DE9F7E14E5DFBB6D39819AC33BC276F/Everybody_to_Kenmure_Street", "en": "http://www.savoyteatteri.fi/en/events/event/2DE9F7E14E5DFBB6D39819AC33BC276F/Everybody_to_Kenmure_Street" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69894/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69893", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "13-14 €", "en": "13-14 €" }, "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/", "en": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386169, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-08T14:13:48.626425Z", "last_modified_time": "2026-09-08T14:13:48.626439Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_797143.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386169/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-08T14:13:48.450104Z", "last_modified_time": "2026-09-08T14:13:48.835533Z", "date_published": null, "start_time": "2026-09-24T17:45:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "name": { "fi": "Decorado – Rakkautta & Anarkiaa 17.–27.9.2026", "en": "Decorado – Love & Anarchy 17.–27.9.2026" }, "description": { "fi": "<p>Synkän koominen aikuisten animaatio ja terävä dystopia, jossa keski-ikäinen Arnold-hiiri alkaa epäillä koko elämänsä olevan vain lavastettu illuusio.</p><p>Espanjalaisen animaation omaperäisimpiin tekijöihin kuuluva Alberto Vázquez (Psiconautas, Unicorn Wars) laajentaa Goya-palkitun lyhytelokuvansa täyspitkäksi eksistentiaaliseksi painajaiseksi, jossa suloisen näköinen animaatio kätkee alleen armottoman tutkielman vieraantumisesta, vallasta ja vapauden illuusiosta.</p><p>Keski-ikäinen, pitkäaikaistyötön Arnold-hiiri alkaa epäillä, että hänen elämänsä, avioliittonsa ja koko ympäröivä yhteiskunta ovat valtavaa lavastusta. Ystävän salaperäinen kuolema syventää vainoharhaa, joka johdattaa hänet kohti maailmaa hallitsevan megayhtiön kulissien takaista todellisuutta. Vázquez ei kuitenkaan rakenna perinteistä salaliittotrilleriä, vaan absurdin, mustalla huumorilla sävytetyn sadun, jossa todellisuus tuntuu liukuvan jatkuvasti pois otteesta.</p><p>Decorado leikittelee yhtä aikaa Disneyn klassisella eläinanimaatiolla, Orwellin dystopioilla ja The Truman Show’n kaltaisilla todellisuusilluusioilla. Lopputulos on visuaalisesti huumaava, synkän koominen ja filosofisesti levoton. Aikuisten animaatio ei tarjoa lohtua eikä moraalisia opetuksia, vaan kutsuu katsojan kyseenalaistamaan kaiken sen, mikä näyttää itsestään selvältä. Jos elämä on näyttämö, kuka kirjoittaa käsikirjoituksen?</p><p>Rauli Karjalainen</p><p>Ohjaus Alberto Vázquez<br>Näyttelijät Asier Hormaza, Aintzane Gamiz, Kandido Uranga<br>Maa Espanja<br>Kielet espanja<br>Tekstitykset englanti<br>Ikäraja K16<br>Kesto 95 min<br>Teema Animoituja unia<br>Avainsanat Angsti, Eläimet, Fantasia, Identiteetti, Jännitys, Kaupunkitila, Mielenterveys, Outoa, Perhesuhteet<br>Vuosi 2025<br>Levittäjä Le Pacte International</p>", "en": "<p>A darkly comic adult animation and sharp dystopia following Arnold, a middle-aged mouse who begins to suspect his entire life is merely a staged illusion.</p><p>Filmmaker Alberto Vázquez is responsible for some of the most unique work in contemporary Spanish animation (Psiconautas, Unicorn Wars). With Decorado, Vazquéz expands his Goya-winning short into a feature-length existential nightmare, its cutesy animation concealing a merciless examination of alienation, power and freedom.</p><p>Albert, a middle-aged and chronically unemployed mouse, begins to suspect his whole life, marriage, and the society around him are all staged. The mysterious death of a friend only deepens his paranoia, and his investigations soon lead him behind the façade of an all-powerful megacorporation. Decorado is not a classic conspiracy thriller, though; Vázquez constructs an absurdist fairytale, where reality is ever slipping out of reach.</p><p>All at the same time, Decorado toys with Disney’s classic animal animations, Orwellian dystopias and illusory reality á la The Truman Show. The final result is visually dizzy, morbidly comical and philosophically restless. This adult animation offers neither comfort nor moral lessons, but invites the viewer to question everything that seems obvious. If all the world’s a stage, who writes the script?</p><p>Rauli Karjalainen (translated by Adrian Murtomäki)</p>" }, "provider_contact_info": null, "short_description": { "fi": "Synkän koominen aikuisten animaatio ja terävä dystopia, jossa keski-ikäinen Arnold-hiiri alkaa epäillä koko elämänsä olevan vain lavastettu illuusio.", "en": "A darkly comic adult animation and sharp dystopia following Arnold, a middle-aged mouse who begins to suspect his entire life is merely a staged illusion." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/4D6FA3FDD7D98F2EAEFF7F71B34CAC17/Decorado", "en": "http://www.savoyteatteri.fi/en/events/event/4D6FA3FDD7D98F2EAEFF7F71B34CAC17/Decorado" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69893/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69892", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "13-14 €", "en": "13-14 €" }, "info_url": { "fi": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/", "en": "https://hiff.fi/rakkautta-anarkiaa/lippuinfo/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386168, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-08T13:14:15.145985Z", "last_modified_time": "2026-09-08T13:14:15.145999Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_797141.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386168/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-08T13:14:14.950570Z", "last_modified_time": "2026-09-08T13:14:15.359118Z", "date_published": null, "start_time": "2026-09-24T14:45:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry", "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry" }, "name": { "fi": "The Samurai and the Prisoner – Rakkautta & Anarkiaa 17.–27.9.2026", "en": "The Samurai and the Prisoner – Love & Anarchy 17.–27.9.2026" }, "description": { "fi": "<p>Kiyoshi Kurosawan samuraidraama yhdistää murhamysteerin psykologiseen valtapeliin Agatha Christien ja Shakespearen hengessä.</p><p>Japanilaisen taiteellisesti kunnianhimoisen kauhun mestari Kiyoshi Kurosawa (Cure; Pulse, R&A 2002) tekee uuden aluevaltauksen samuraidraamallaan The Samurai and the Prisoner.</p><p>1500-luvulle sijoittuva ja Honobu Yonezawan palkittuun menestysromaaniin perustuva teos on neljään vuodenaikaan jaettu epookkimysteeri. Tarina käynnistyy, kun kapinallinen samurai Araki Murashige (Masahiro Motoki) linnoittautuu Ariokan linnaan noustuaan sotaan entistä liittolaistaan, julmaa sotaherra Oda Nobunagaa vastaan. Piirityksen kiristyessä linnassa alkaa tapahtua selittämättömiä ja raakoja rikoksia, ja epätoivoinen samurai joutuu kääntymään tyrmään heitetyn vihollisstrategi Kuroda Kanbein puoleen.</p><p>Kurosawa muovaa historiallisesta sotaepookista hienovaraisen suljetun huoneen dekkarimysteerin, joka tihentyy Shakespearen tragedioita henkiväksi, psykologiseksi valtapeliksi. Epäluulon ja syyllisyyden mädättämät mielet ottavat yhteen, kun suljetussa linnassa alkaa levitä vainoharhaisuuden ja petoksen ilmapiiri. Linna muuttuu mikrokosmokseksi, jossa poliittinen laskelmointi, uskollisuus ja pelko syövät vähitellen yhteisön sisältäpäin.</p><p>Rauli Karjalainen</p><p>Ohjaus Kiyoshi Kurosawa<br>Näyttelijät Masahiro Motoki, Masaki Suda, Yuriko Yoshitaka<br>Maa Japani<br>Kielet japani<br>Tekstitykset englanti<br>Ikäraja K12<br>Kesto 147 min<br>Teema Avainelokuvat<br>Avainsanat Epookki, Rikos, Jännitys, Kirjallisuus</p>", "en": "<p>Kiyoshi Kurosawa’s samurai drama combines a murder mystery with a psychological power struggle in the spirit of Agatha Christie and Shakespeare.</p><p>Japanese filmmaker Kiyoshi Kurosawa (Cure; Pulse, R&A 2002), renowned for his artistically ambitious horror cinema, ventures into new territory with the samurai drama The Samurai and the Prisoner.</p><p>Set in sixteenth-century Japan and adapted from the award-winning bestselling novel by Honobu Yonezawa, this period mystery unfolds across four seasons. The story begins as the rebellious samurai Araki Murashige (Masahiro Motoki) barricades himself inside Arioka Castle after taking up arms against his former ally, the ruthless warlord Oda Nobunaga. As the siege tightens, a series of brutal and inexplicable crimes shatters the fortress, and the desperate Murashige is forced to turn to the imprisoned enemy strategist Kuroda Kanbei for help.</p><p>Kurosawa transforms a sweeping historical war drama into an elegant locked-room mystery, gradually evolving into a psychologically charged struggle for power reminiscent of Shakespearean tragedy. As suspicion and guilt consume the minds of those trapped within the castle walls, paranoia and betrayal spread unchecked. The fortress becomes a microcosm where political manoeuvring, loyalty and fear slowly erode the community from within.</p><p>Rauli Karjalainen (translated by Kati Ilomäki)</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kiyoshi Kurosawan samuraidraama yhdistää murhamysteerin psykologiseen valtapeliin Agatha Christien ja Shakespearen hengessä.", "en": "Kiyoshi Kurosawa’s samurai drama combines a murder mystery with a psychological power struggle in the spirit of Agatha Christie and Shakespeare." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0C55A46EAB18396825698C0420FCE8BB/The_Samurai_and_the_Prisoner", "en": "http://www.savoyteatteri.fi/en/events/event/0C55A46EAB18396825698C0420FCE8BB/The_Samurai_and_the_Prisoner" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69892/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69885", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "description": null, "price": { "fi": "43,50-84,50 €", "en": "43,50-84,50 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/polinaosetinskaya/polina-osetinskaya-4234650/", "en": "https://www.lippu.fi/artist/polinaosetinskaya/polina-osetinskaya-4234650/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386144, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-07T10:24:22.195504Z", "last_modified_time": "2026-09-07T10:24:22.195530Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_797110.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386144/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-07T10:24:22.029327Z", "last_modified_time": "2026-09-08T12:14:52.854760Z", "date_published": null, "start_time": "2027-03-01T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": { "fi": "AIT Music Event MB", "en": "AIT Music Event MB" }, "name": { "fi": "Polina Osetinskaya (piano)", "en": "Polina Osetinskaya (piano)" }, "description": { "fi": "<p>Welcome spring - with Polina Osetinskaya!</p><p>A rare musician to have made the transition from bona fide child prodigy to highly successful soloist, pianist Polina Osetinskaya inspires awe and admiration from fellow musicians, concert presenters and audiences around the world. She tours actively, giving concerts in venues such as the Vienna Konzerthaus, Berlin Philharmonic, Carnegie Hall, Toronto’s Koerner Hall, Barbican Centre, Sydney Opera House, and many others.</p><p>An accomplished recording artist with multiple Sony, Naxos, Evidence and Melodiya albums under her belt, Polina Osetinskaya has performed live with top level conductors such as Dennis Russell Davies, Teodor Currentzis, Yan Pascal Tortelier, and Andrey Boreiko. She enjoys an ongoing chamber music collaboration with Maxim Vengerov.</p><p>Profiled by the New York Times for her immense courage in сondemning the war in Ukraine, this Russian superstar is now banned entirely from performing in her native country.<br>Born in 1975, Polina Osetinskaya was identified as a prodigy at the age of five and started giving public performances at six years old. She made her orchestral debut with the Lithuanian Chamber Orchestra two years later, playing the Bach D-minor concerto, and became a nationally celebrated phenomenon at the age of 11, when she played the Mozart A-major concerto No. 23 at the legendary Tchaikovsky Conservatory Hall.</p><p>In 2008, Polina Osetinskaya published an autobiography “Farewell, Sadness”, telling the shocking story of her superstar childhood, her early artistic journey, and the emotional and physical price she had to pay for her extraordinary success. Given the pianist’s star profile, the book became a literary blockbuster and was recently reprinted.</p><p>The current season takes Polina Osetinskaya to Paris, Bordeaux, Brussels, Vienna, London, Barcelona, Turin, Stockholm, Sydney, Melbourne, Brisbane, Singapore, San Francisco, Atlanta, St. Louis, Berkley and other cities around the world. After the sensational success in Finland - she returns to Helsinki with one and only concert at Savoy theatre.</p><p><b>Program:</p><p>J.S. Bach</b>: Prelude, Gavotte and Gigue from Partita No. 3 in E major for<br>Solo Violin, BWV 1006 (arr. S. Rachmaninoff)</p><p><b>L. van Beethoven</b>: Piano Sonata No. 31 in A-flat major, Op. 110</p><p><b>C. Franck</b>: Prélude, Fugue et Variation in B minor, Op. 18 (originally for organ; arr. H. Bauer)</p><p><b>S. Rachmaninoff</b>: Variations on a Theme of Corelli in D minor, Op. 42</p><p>Age rating: suitable for all ages</p><p>Duration about 2 h 15 min, including intermission</p>", "en": "<p>Welcome spring - with Polina Osetinskaya!</p><p>A rare musician to have made the transition from bona fide child prodigy to highly successful soloist, pianist Polina Osetinskaya inspires awe and admiration from fellow musicians, concert presenters and audiences around the world. She tours actively, giving concerts in venues such as the Vienna Konzerthaus, Berlin Philharmonic, Carnegie Hall, Toronto’s Koerner Hall, Barbican Centre, Sydney Opera House, and many others.</p><p>An accomplished recording artist with multiple Sony, Naxos, Evidence and Melodiya albums under her belt, Polina Osetinskaya has performed live with top level conductors such as Dennis Russell Davies, Teodor Currentzis, Yan Pascal Tortelier, and Andrey Boreiko. She enjoys an ongoing chamber music collaboration with Maxim Vengerov.</p><p>Profiled by the New York Times for her immense courage in сondemning the war in Ukraine, this Russian superstar is now banned entirely from performing in her native country.<br>Born in 1975, Polina Osetinskaya was identified as a prodigy at the age of five and started giving public performances at six years old. She made her orchestral debut with the Lithuanian Chamber Orchestra two years later, playing the Bach D-minor concerto, and became a nationally celebrated phenomenon at the age of 11, when she played the Mozart A-major concerto No. 23 at the legendary Tchaikovsky Conservatory Hall.</p><p>In 2008, Polina Osetinskaya published an autobiography “Farewell, Sadness”, telling the shocking story of her superstar childhood, her early artistic journey, and the emotional and physical price she had to pay for her extraordinary success. Given the pianist’s star profile, the book became a literary blockbuster and was recently reprinted.</p><p>The current season takes Polina Osetinskaya to Paris, Bordeaux, Brussels, Vienna, London, Barcelona, Turin, Stockholm, Sydney, Melbourne, Brisbane, Singapore, San Francisco, Atlanta, St. Louis, Berkley and other cities around the world. After the sensational success in Finland - she returns to Helsinki with one and only concert at Savoy theatre.</p><p><b>Program:</p><p>J.S. Bach</b>: Prelude, Gavotte and Gigue from Partita No. 3 in E major for<br>Solo Violin, BWV 1006 (arr. S. Rachmaninoff)</p><p><b>L. van Beethoven</b>: Piano Sonata No. 31 in A-flat major, Op. 110</p><p><b>C. Franck</b>: Prélude, Fugue et Variation in B minor, Op. 18 (originally for organ; arr. H. Bauer)</p><p><b>S. Rachmaninoff</b>: Variations on a Theme of Corelli in D minor, Op. 42</p><p>Age rating: suitable for all ages</p><p>Duration about 2 h 15 min, including intermission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Welcome spring - with Polina Osetinskaya!", "en": "Welcome spring - with Polina Osetinskaya!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9C906782791CA832DE488654C584E83B/Polina_Osetinskaya_piano_", "en": "http://www.savoyteatteri.fi/en/events/event/9C906782791CA832DE488654C584E83B/Polina_Osetinskaya_piano_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69885/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }