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_recurring_children=true&page=59
{ "meta": { "count": 22851, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=60", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=58" }, "data": [ { "id": "kulke:67393", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468696/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468696/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468696/" }, "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1672530, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T11:14:16.783765Z", "last_modified_time": "2026-03-19T11:14:16.783781Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781082.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672530/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T11:14:16.626799Z", "last_modified_time": "2026-04-09T09:13:36.880648Z", "date_published": null, "start_time": "2026-04-08T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "The Wizard of The Kremlin (12) – Kino Helios", "sv": "The Wizard of The Kremlin (12) – Kino Helios", "en": "The Wizard of The Kremlin (12) – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Venäjä 1990-luvun alussa. Neuvostoliitto on romahtanut." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/40E7DFEDD706530E2D3485FDC0CD4329/The_Wizard_of_The_Kremlin_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/40E7DFEDD706530E2D3485FDC0CD4329/The_Wizard_of_The_Kremlin_12_", "en": "http://www.malmitalo.fi/en/events/event/40E7DFEDD706530E2D3485FDC0CD4329/The_Wizard_of_The_Kremlin_12_" }, "description": { "fi": "<p>Venäjä 1990-luvun alussa. Neuvostoliitto on romahtanut.</p><p>Keskellä kaaosta ja itseään uudelleen rakentavaa maata kulkee määrätietoisesti omaa polkuaan poikkeuksellisen älykäs nuori mies, Vadim Baranov (Paul Dano). Ensin avantgardetaiteilija, sitten tosi-tv-ohjelmien tuottaja, hänestä tulee epävirallinen neuvonantaja entiselle KGB-agentille, joka on matkalla kohti ehdotonta valtaa – miehelle, joka tullaan pian tuntemaan nimellä ”tsaari”, Vladimir Putin (Jude Law).</p><p>Järjestelmän ytimeen päätynyt Baranov nousee uuden Venäjän spin doctoriksi, muovaamaan puheita, mielikuvia ja todellisuudentajua. Yksi ihminen jää kuitenkin hänen vaikutusvaltansa ulkopuolelle: Ksenia (Alicia Vikander), vapaa ja tavoittamaton nainen, joka edustaa mahdollisuutta paeta – kauas poliittisesta vaikutuksesta ja vallankäytöstä.</p><p>Viisitoista vuotta myöhemmin, vetäydyttyään hiljaisuuteen, Baranov suostuu puhumaan. Se, mitä hän paljastaa, hämärtää rajat totuuden ja fiktion, uskomuksen ja strategian välillä. The Wizard of the Kremlin on laskeutuminen vallan pimeisiin käytäviin – elokuva, jossa jokainen sana on osa juonta.</p><p>Elokuva perustuu Giuliano da Empolin romaaniin Kremlin velho.</p><p>Ikäraja: 12<br>Kesto: 146 min<br>Ensi-ilta: 13.03.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67393/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67417", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-primavera-malmitalo-21536788/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-primavera-malmitalo-21536788/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-primavera-malmitalo-21536788/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1805284, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T07:14:13.273592Z", "last_modified_time": "2026-04-09T07:14:13.273610Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781118.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805284/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T07:14:13.117690Z", "last_modified_time": "2026-04-09T08:13:43.864974Z", "date_published": null, "start_time": "2026-05-08T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Primavera – Kino Helios", "sv": "Primavera – Kino Helios", "en": "Primavera – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Venetsia 1700-luvun alussa. Pietan orpokodissa kasvatetaan hylätyistä tytöistä muusikoita." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FD84B25EEEE6BDDE2D3E81FFF78EC3AB/Primavera_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/FD84B25EEEE6BDDE2D3E81FFF78EC3AB/Primavera_", "en": "http://www.malmitalo.fi/en/events/event/FD84B25EEEE6BDDE2D3E81FFF78EC3AB/Primavera_" }, "description": { "fi": "<p>Venetsia 1700-luvun alussa. Pietan orpokodissa kasvatetaan hylätyistä tytöistä muusikoita.</p><p>Pietan orkesteri on kuulu kautta Euroopan, onhan orpokoti kouluttanut muusikoita jo satoja vuosia. Orpotytöt soittavat kirkon parvella ristikon takana, jotta äveriäs seurapiiriyleisö voi paremmin keskittyä musiikkiin.</p><p>Pietan johtokunta pestaa säveltäjän uransa kanssa kamppailevan Antonio Vivaldin (Michele Rondino) orkesterin opettajaksi. Poikkeuksellisen lahjakas Cecilia (Primaveran pääosassa hehkuva Tecla Insolia) nousee ykkösviulistiksi. Euroopan aateliset ja kruunupäät matkustavat Venetsiaan kuullakseen Vivaldin sävellyksiä ja Pietan orkesteria - mutta musiikki ei avaa orpokodin lukittuja portteja. Cecilia haluaa maailmalle, eikä anna vastoinkäymisten lannistaa vapaudenkaipuutaan.<br> <br>Oopperaohjaajana tunnetun Damiano Michieletton esikoiselokuva Primavera elää ja hengittää Venetsian kevään, kanavien ja musiikin ehdoilla. Michieletton oopperaohjauksia on juhlittu Milanon La Scalassa sekä Lontoon, Pariisin ja Berliinin oopperataloissa. Ludovica Rampoldin käsikirjoitus pohjaa vapaasti Tiziano Scarpan romaaniin Stabat mater.<br> <br>Venetsialainen Antonio Vivaldi (1678–1741) sävelsi kymmeniä oopperoita, kuoro- ja kamariteoksia sekä lukuisia sonaatteja. Konserttoja syntyi vähintään satoja. Vivaldi opetti Pietan orpokodissa 40 vuoden ajan. Hänen tunnetuin teoksensa Neljä vuodenaikaa syntyi noina vuosina.</p><p>Ikäraja: 12<br>Kesto: 110 min<br>Ensi-ilta: 17.04.2026<br>Kieli: italia<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67417/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67412", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-michael-malmitalo-21536791/", "sv": "https://www.lippu.fi/event/kino-helios-michael-malmitalo-21536791/", "en": "https://www.lippu.fi/event/kino-helios-michael-malmitalo-21536791/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1805375, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T08:13:42.022857Z", "last_modified_time": "2026-04-09T08:13:42.022873Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781110.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805375/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T08:13:41.910732Z", "last_modified_time": "2026-04-09T08:13:42.190056Z", "date_published": null, "start_time": "2026-04-29T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Michael – Kino Helios", "sv": "Michael – Kino Helios", "en": "Michael – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Michael on elokuva yhden kaikkien aikojen merkittävimmän artistin elämästä ja perinnöstä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5D47D451AE54D1802449AA2005391A5C/Michael", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5D47D451AE54D1802449AA2005391A5C/Michael", "en": "http://www.malmitalo.fi/en/events/event/5D47D451AE54D1802449AA2005391A5C/Michael" }, "description": { "fi": "<p>Michael on elokuva yhden kaikkien aikojen merkittävimmän artistin elämästä ja perinnöstä.</p><p>Elokuva kertoo Michael Jacksonin tarinan seuraten hänen matkaansa The Jackson 5:n uskomattoman lahjakkaasta, nuoresta keulahahmosta aina visionääriseksi artistiksi, jonka kunnianhimoinen tavoite oli tulla maailman suurimmaksi tähdeksi.<br> <br>Tarina keskittyy Michaelin elämään konserttilavojen ulkopuolella ja soolouran alkuaikojen kuuluisimpiin esiintymisiin. Katsoja pääsee seuraamaan Michael Jacksonin elämää eturivistä ennennäkemättömällä tavalla. Tästä hänen tarinansa alkaa.<br> <br>Michaelin pääosissa nähdään Jaafar Jackson hänen ensimmäisessä pääroolissaan, Nia Long (Empire, The Best Man -elokuvasarja) ja Laura Harrier (BlacKkKlansman, Spider-Man: Homecoming). Mukana ovat myös Miles Teller (Top Gun: Maverick, Whiplash) ja kahdesti Oscar®-ehdokkaana ollut Colman Domingo (Sing Sing, Rustin).<br> <br>Elokuvan on ohjannut Antoine Fuqua, joka tunnetaan elokuvista Training Day ja Olympos on valloitettu sekä Equalizer-elokuvasarjasta. Käsikirjoituksen on laatinut kolmesti Oscar®-ehdokkaana ollut John Logan (Gladiator, Lentäjä). Elokuvan ovat tuottaneet Oscar®-voittaja Graham King (The Departed, Bohemian Rhapsody), John Branca (vastaava tuottaja: This Is It, Thriller 40) ja John McClain (vastaava tuottaja: This Is It, Michael Jackson Live at Wembley July 16, 1988).</p><p>Ikäraja: 12<br>Kesto: 127 min<br>Ensi-ilta: 22.04.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67412/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67411", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-father-mother-sister-brother-malmitalo-21537063/", "sv": "https://www.lippu.fi/event/kino-helios-father-mother-sister-brother-malmitalo-21537063/", "en": "https://www.lippu.fi/event/kino-helios-father-mother-sister-brother-malmitalo-21537063/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1805374, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T08:13:41.643225Z", "last_modified_time": "2026-04-09T08:13:41.643241Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781109.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805374/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T08:13:41.523263Z", "last_modified_time": "2026-04-09T08:13:41.782414Z", "date_published": null, "start_time": "2026-04-29T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Father Mother Sister Brother – Kino Helios", "sv": "Father Mother Sister Brother – Kino Helios", "en": "Father Mother Sister Brother – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Father Mother Sister Brother on Jim Jarmuschin ohjaama tarkkakatseinen draamakomedia, joka koostuu kolmesta toisiinsa kietoutuneesta tarinasta." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D2A3F0236AE6A6CDE28865158D45F809/Father_Mother_Sister_Brother", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D2A3F0236AE6A6CDE28865158D45F809/Father_Mother_Sister_Brother", "en": "http://www.malmitalo.fi/en/events/event/D2A3F0236AE6A6CDE28865158D45F809/Father_Mother_Sister_Brother" }, "description": { "fi": "<p>Father Mother Sister Brother on Jim Jarmuschin ohjaama tarkkakatseinen draamakomedia, joka koostuu kolmesta toisiinsa kietoutuneesta tarinasta.</p><p>Elokuva voitti arvostetun Kultaisen leijonan Venetsian elokuvajuhlilla.</p><p>Father Mother Sister Brother kuvaa aikuisten lasten ja heidän vanhempiensa välisiä monimutkaisia suhteita. Tarinat sijoittuvat nykyaikaan ja kolmeen eri paikkaan; Yhdysvaltain koillisosiin, Dubliniin ja Pariisiin.</p><p>Father: Sisarukset Jeff (Adam Driver) ja Emily (Mayim Bialik) vierailevat eristäytyneen ja mahdollisesti varattoman isänsä (Tom Waits) luona. Vierailun aikana he alkavat epäillä isänsä teeskentelevän kurjuuttaan ja huomaavat tämän ranteessa arvokkaan Rolex-kellon.</p><p>Mother: Sisarukset Timothea (Cate Blanchett) ja Lilith (Vicky Krieps) vierailevat kirjailijaäitinsä (Charlotte Rampling) luona iltapäiväteellä. Tarina keskittyy pinnan alla kyteviin jännitteisiin ja siihen, mitä jätetään sanomatta perinteisten rituaalien äärellä.</p><p>Sister Brother: Kaksoset Skye (Indya Moore) ja Billy (Luka Sabbat) siivoavat edesmenneiden vanhempiensa asuntoa. He käyvät läpi muistoja ja tavaroita, löytäen uusia puolia vanhemmistaan ja perheensä historiasta.</p><p>Elokuva piirtää inhimillisen kuvan perheestä, läheisyydestä ja etäisyydestä lempeällä huumorilla, johon sekoittuu melankolian sävyjä.</p><p>Ikäraja: 7<br>Kesto: 110 min<br>Ensi-ilta: 29.04.2026<br>Kieli: englanti, ranska, italia<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67411/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67410", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-michael-malmitalo-21536790/", "sv": "https://www.lippu.fi/event/kino-helios-michael-malmitalo-21536790/", "en": "https://www.lippu.fi/event/kino-helios-michael-malmitalo-21536790/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1805373, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T08:13:41.014302Z", "last_modified_time": "2026-04-09T08:13:41.014319Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781107.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805373/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T08:13:40.895694Z", "last_modified_time": "2026-04-09T08:13:41.163094Z", "date_published": null, "start_time": "2026-04-25T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Michael – Kino Helios", "sv": "Michael – Kino Helios", "en": "Michael – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Michael on elokuva yhden kaikkien aikojen merkittävimmän artistin elämästä ja perinnöstä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/81B1DAF415351E62707C57CBADD0E6F2/Michael", "sv": "http://www.malmitalo.fi/sv/evenemang/event/81B1DAF415351E62707C57CBADD0E6F2/Michael", "en": "http://www.malmitalo.fi/en/events/event/81B1DAF415351E62707C57CBADD0E6F2/Michael" }, "description": { "fi": "<p>Michael on elokuva yhden kaikkien aikojen merkittävimmän artistin elämästä ja perinnöstä.</p><p>Elokuva kertoo Michael Jacksonin tarinan seuraten hänen matkaansa The Jackson 5:n uskomattoman lahjakkaasta, nuoresta keulahahmosta aina visionääriseksi artistiksi, jonka kunnianhimoinen tavoite oli tulla maailman suurimmaksi tähdeksi.<br> <br>Tarina keskittyy Michaelin elämään konserttilavojen ulkopuolella ja soolouran alkuaikojen kuuluisimpiin esiintymisiin. Katsoja pääsee seuraamaan Michael Jacksonin elämää eturivistä ennennäkemättömällä tavalla. Tästä hänen tarinansa alkaa.<br> <br>Michaelin pääosissa nähdään Jaafar Jackson hänen ensimmäisessä pääroolissaan, Nia Long (Empire, The Best Man -elokuvasarja) ja Laura Harrier (BlacKkKlansman, Spider-Man: Homecoming). Mukana ovat myös Miles Teller (Top Gun: Maverick, Whiplash) ja kahdesti Oscar®-ehdokkaana ollut Colman Domingo (Sing Sing, Rustin).<br> <br>Elokuvan on ohjannut Antoine Fuqua, joka tunnetaan elokuvista Training Day ja Olympos on valloitettu sekä Equalizer-elokuvasarjasta. Käsikirjoituksen on laatinut kolmesti Oscar®-ehdokkaana ollut John Logan (Gladiator, Lentäjä). Elokuvan ovat tuottaneet Oscar®-voittaja Graham King (The Departed, Bohemian Rhapsody), John Branca (vastaava tuottaja: This Is It, Thriller 40) ja John McClain (vastaava tuottaja: This Is It, Michael Jackson Live at Wembley July 16, 1988).</p><p>Ikäraja: 12<br>Kesto: 127 min<br>Ensi-ilta: 22.04.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67410/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67408", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-michael-malmitalo-21536789/", "sv": "https://www.lippu.fi/event/kino-helios-michael-malmitalo-21536789/", "en": "https://www.lippu.fi/event/kino-helios-michael-malmitalo-21536789/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1805372, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T08:13:39.757377Z", "last_modified_time": "2026-04-09T08:13:39.757392Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781104.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805372/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T08:13:39.621610Z", "last_modified_time": "2026-04-09T08:13:39.920971Z", "date_published": null, "start_time": "2026-04-24T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Michael – Kino Helios", "sv": "Michael – Kino Helios", "en": "Michael – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Michael on elokuva yhden kaikkien aikojen merkittävimmän artistin elämästä ja perinnöstä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F15AD4E3ED3FCBE3547EAF698FBFF7BF/Michael", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F15AD4E3ED3FCBE3547EAF698FBFF7BF/Michael", "en": "http://www.malmitalo.fi/en/events/event/F15AD4E3ED3FCBE3547EAF698FBFF7BF/Michael" }, "description": { "fi": "<p>Michael on elokuva yhden kaikkien aikojen merkittävimmän artistin elämästä ja perinnöstä.</p><p>Elokuva kertoo Michael Jacksonin tarinan seuraten hänen matkaansa The Jackson 5:n uskomattoman lahjakkaasta, nuoresta keulahahmosta aina visionääriseksi artistiksi, jonka kunnianhimoinen tavoite oli tulla maailman suurimmaksi tähdeksi.<br> <br>Tarina keskittyy Michaelin elämään konserttilavojen ulkopuolella ja soolouran alkuaikojen kuuluisimpiin esiintymisiin. Katsoja pääsee seuraamaan Michael Jacksonin elämää eturivistä ennennäkemättömällä tavalla. Tästä hänen tarinansa alkaa.<br> <br>Michaelin pääosissa nähdään Jaafar Jackson hänen ensimmäisessä pääroolissaan, Nia Long (Empire, The Best Man -elokuvasarja) ja Laura Harrier (BlacKkKlansman, Spider-Man: Homecoming). Mukana ovat myös Miles Teller (Top Gun: Maverick, Whiplash) ja kahdesti Oscar®-ehdokkaana ollut Colman Domingo (Sing Sing, Rustin).<br> <br>Elokuvan on ohjannut Antoine Fuqua, joka tunnetaan elokuvista Training Day ja Olympos on valloitettu sekä Equalizer-elokuvasarjasta. Käsikirjoituksen on laatinut kolmesti Oscar®-ehdokkaana ollut John Logan (Gladiator, Lentäjä). Elokuvan ovat tuottaneet Oscar®-voittaja Graham King (The Departed, Bohemian Rhapsody), John Branca (vastaava tuottaja: This Is It, Thriller 40) ja John McClain (vastaava tuottaja: This Is It, Michael Jackson Live at Wembley July 16, 1988).</p><p>Ikäraja: 12<br>Kesto: 127 min<br>Ensi-ilta: 22.04.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67408/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67407", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-primavera-malmitalo-21536787/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-primavera-malmitalo-21536787/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-primavera-malmitalo-21536787/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1805283, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T07:14:09.595716Z", "last_modified_time": "2026-04-09T07:14:09.595733Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781103.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805283/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T07:14:09.448200Z", "last_modified_time": "2026-04-09T08:13:39.370668Z", "date_published": null, "start_time": "2026-04-24T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Primavera – Kino Helios", "sv": "Primavera – Kino Helios", "en": "Primavera – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Venetsia 1700-luvun alussa. Pietan orpokodissa kasvatetaan hylätyistä tytöistä muusikoita." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8292DDCAE7E1162B312CB29814A857D3/Primavera_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8292DDCAE7E1162B312CB29814A857D3/Primavera_", "en": "http://www.malmitalo.fi/en/events/event/8292DDCAE7E1162B312CB29814A857D3/Primavera_" }, "description": { "fi": "<p>Venetsia 1700-luvun alussa. Pietan orpokodissa kasvatetaan hylätyistä tytöistä muusikoita.</p><p>Pietan orkesteri on kuulu kautta Euroopan, onhan orpokoti kouluttanut muusikoita jo satoja vuosia. Orpotytöt soittavat kirkon parvella ristikon takana, jotta äveriäs seurapiiriyleisö voi paremmin keskittyä musiikkiin.</p><p>Pietan johtokunta pestaa säveltäjän uransa kanssa kamppailevan Antonio Vivaldin (Michele Rondino) orkesterin opettajaksi. Poikkeuksellisen lahjakas Cecilia (Primaveran pääosassa hehkuva Tecla Insolia) nousee ykkösviulistiksi. Euroopan aateliset ja kruunupäät matkustavat Venetsiaan kuullakseen Vivaldin sävellyksiä ja Pietan orkesteria - mutta musiikki ei avaa orpokodin lukittuja portteja. Cecilia haluaa maailmalle, eikä anna vastoinkäymisten lannistaa vapaudenkaipuutaan.<br> <br>Oopperaohjaajana tunnetun Damiano Michieletton esikoiselokuva Primavera elää ja hengittää Venetsian kevään, kanavien ja musiikin ehdoilla. Michieletton oopperaohjauksia on juhlittu Milanon La Scalassa sekä Lontoon, Pariisin ja Berliinin oopperataloissa. Ludovica Rampoldin käsikirjoitus pohjaa vapaasti Tiziano Scarpan romaaniin Stabat mater.<br> <br>Venetsialainen Antonio Vivaldi (1678–1741) sävelsi kymmeniä oopperoita, kuoro- ja kamariteoksia sekä lukuisia sonaatteja. Konserttoja syntyi vähintään satoja. Vivaldi opetti Pietan orpokodissa 40 vuoden ajan. Hänen tunnetuin teoksensa Neljä vuodenaikaa syntyi noina vuosina.</p><p>Ikäraja: 12<br>Kesto: 110 min<br>Ensi-ilta: 17.04.2026<br>Kieli: italia<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67407/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67406", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-primavera-malmitalo-21536786/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-primavera-malmitalo-21536786/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-primavera-malmitalo-21536786/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1805282, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T07:14:08.012441Z", "last_modified_time": "2026-04-09T07:14:08.012465Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781101.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805282/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T07:14:07.776294Z", "last_modified_time": "2026-04-09T08:13:38.278662Z", "date_published": null, "start_time": "2026-04-22T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Primavera – Kino Helios", "sv": "Primavera – Kino Helios", "en": "Primavera – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Venetsia 1700-luvun alussa. Pietan orpokodissa kasvatetaan hylätyistä tytöistä muusikoita." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4BBEDAC000CE9F3B6CE17C5331D0B33F/Primavera_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4BBEDAC000CE9F3B6CE17C5331D0B33F/Primavera_", "en": "http://www.malmitalo.fi/en/events/event/4BBEDAC000CE9F3B6CE17C5331D0B33F/Primavera_" }, "description": { "fi": "<p>Venetsia 1700-luvun alussa. Pietan orpokodissa kasvatetaan hylätyistä tytöistä muusikoita.</p><p>Pietan orkesteri on kuulu kautta Euroopan, onhan orpokoti kouluttanut muusikoita jo satoja vuosia. Orpotytöt soittavat kirkon parvella ristikon takana, jotta äveriäs seurapiiriyleisö voi paremmin keskittyä musiikkiin.</p><p>Pietan johtokunta pestaa säveltäjän uransa kanssa kamppailevan Antonio Vivaldin (Michele Rondino) orkesterin opettajaksi. Poikkeuksellisen lahjakas Cecilia (Primaveran pääosassa hehkuva Tecla Insolia) nousee ykkösviulistiksi. Euroopan aateliset ja kruunupäät matkustavat Venetsiaan kuullakseen Vivaldin sävellyksiä ja Pietan orkesteria - mutta musiikki ei avaa orpokodin lukittuja portteja. Cecilia haluaa maailmalle, eikä anna vastoinkäymisten lannistaa vapaudenkaipuutaan.<br> <br>Oopperaohjaajana tunnetun Damiano Michieletton esikoiselokuva Primavera elää ja hengittää Venetsian kevään, kanavien ja musiikin ehdoilla. Michieletton oopperaohjauksia on juhlittu Milanon La Scalassa sekä Lontoon, Pariisin ja Berliinin oopperataloissa. Ludovica Rampoldin käsikirjoitus pohjaa vapaasti Tiziano Scarpan romaaniin Stabat mater.<br> <br>Venetsialainen Antonio Vivaldi (1678–1741) sävelsi kymmeniä oopperoita, kuoro- ja kamariteoksia sekä lukuisia sonaatteja. Konserttoja syntyi vähintään satoja. Vivaldi opetti Pietan orpokodissa 40 vuoden ajan. Hänen tunnetuin teoksensa Neljä vuodenaikaa syntyi noina vuosina.</p><p>Ikäraja: 12<br>Kesto: 110 min<br>Ensi-ilta: 17.04.2026<br>Kieli: italia<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67406/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtcsa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtadq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtaue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtbdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtbsq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtccm/?format=api" } ], "images": [ { "id": 1824122, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-09T06:40:08.877128Z", "last_modified_time": "2026-04-14T07:20:57.326053Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5d3ef072-ce1a-48d5-9490-a0ebed07be1f.png", "name": "Kirjastokaveri: SOMALI", "cropping": "200,0,1000,800", "photographer_name": "Taru Mäkelä", "alt_text": "Eri-ikäisiä ja kulttuuritaustaisia piirroshahmoja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T06:40:25.716657Z", "last_modified_time": "2026-04-09T06:41:08.467146Z", "date_published": null, "start_time": "2026-04-28T13:00:00Z", "end_time": "2026-05-26T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": " Kirjastokaveri: SOMALI", "en": "Library buddy: SOMALI" }, "location_extra_info": { "fi": "Aula", "en": "Lobby" }, "provider": null, "short_description": { "fi": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!", "en": "Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language. " }, "info_url": null, "description": { "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon lainaamaan kirjoja, pelaamaan ja harrastamaan, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p><br></p>\nSOMALINKIELINEN KIRJASTOKAVERI TAVATTAVISSA:<p><br></p><p>Joka tiistai klo 16–18:</p><ul><li>tiistaisin 28.4.2026–26.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#kirjastokaveri</p><p>#kirjasto #kaveri</p><p>#somali #somalia</p>", "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library to loan books, play games and attend hobbies but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language!</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p><br></p>\nMEET A SOMALI SPEAKING LIBRARY BUDDY:<p><br></p><p>Every Tuesday at 16–18:</p><ul><li>Tuesday 28.4.2026–26.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#librarybuddy #library #buddy</p><p>#somali #somalia</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtcsa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtdae", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824123, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T06:17:04.762788Z", "last_modified_time": "2026-04-09T06:17:04.762829Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/23cd5611-1fe8-4b8a-8bd9-65f979489456.png", "name": "", "cropping": "117,0,683,566", "photographer_name": "Sanna Korkelainen", "alt_text": "keraamisia kukkia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824123/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-20T12:54:53.806177Z", "last_modified_time": "2026-04-09T06:17:12.722155Z", "date_published": null, "start_time": "2026-03-19T06:00:00Z", "end_time": "2026-04-29T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Keramiikkanäyttely: Kukat jotka jäivät / Sanna Korkelainen", "sv": "keramikutställning: Blommor som blev kvar / Sanna Korkelainen", "en": "Ceramics exhibition: The flowers that stayed / Sanna Korkelainen" }, "location_extra_info": { "fi": "Vitriini", "sv": "vitrinskåp", "en": "display cabinet" }, "provider": { "fi": "Sanna Korkelainen", "sv": "Sanna Korkelainen", "en": "Sanna Korkelainen" }, "short_description": { "fi": "Tervetuloa katsomaan näyttelyä Tapiolan kirjastoon.", "sv": "Välkommen att besöka utställning i Hagalund biblioteken.", "en": "Welcome to an art exhibition in Tapiola Library." }, "info_url": null, "description": { "fi": "<p>Kukat jotka jäivät -keramiikkanäyttely on keramiikan harrastaja Sanna Korkelaisen hehkuva oodi kukkien runsaudelle. Hänen teoksissaan yhdistyvät rakkaus väreihin ja kukkaloistoon tavalla, joka tuo eloa ja väriä myös vuoden harmaimpiin hetkiin.</p><p>Keramiikan kautta kukkien kauneudesta voi nauttia silloinkin, kun puutarha vielä odottaa heräämistään kevään aurinkoon.</p><p>Yhteydenotot: sanna.korkelainen @ gmail.com</p>", "sv": "<p>Välkommen att besöka utställning i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Welcome to an art exhibition in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtdae/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnh2zthsu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2ztfam/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2ztfq4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2ztf7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2ztgmy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2ztg3a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2zthhm/?format=api" } ], "images": [ { "id": 152115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-15T06:47:28.191606Z", "last_modified_time": "2024-08-15T06:47:28.191622Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/book-1283865_1920.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Avoin kirja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-13T12:30:04.908952Z", "last_modified_time": "2026-04-08T14:00:31.974659Z", "date_published": null, "start_time": "2026-01-07T15:30:00Z", "end_time": "2026-05-27T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "location_extra_info": { "fi": "Apaja", "sv": "Apaja", "en": "Apaja" }, "provider": null, "short_description": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "info_url": null, "description": { "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu Kevätkauden 2026 seuraavina keskiviikkoina klo 17:30-19:00 / Apaja-tilassa</p><p>7.1. Minna Maijalan \"Katri Vala: kulkuri & näkijä\"</p><p>4.2.<a href=\"https://helmet.finna.fi/Record/helmet.2015918?sid=5233842913\"> Antonio Muñoz Molinan \"Kuun tuuli\"</a></p><p>4.3. <a href=\"https://helmet.finna.fi/Record/helmet.2209693?sid=5233842283\">René Nyberg: Viimeinen juna Moskovaan</a></p><p>1.4. <a href=\"https://helmet.finna.fi/Record/helmet.2006299?sid=5261957995\">Tuomas Anhava: Kevään kukat, syksyn kuu</a></p><p>29.4. <a href=\"https://helmet.finna.fi/Record/helmet.2507863?sid=5280548197\">Johan Bargum: Ikämiehiä</a></p><p>27.5. <a href=\"https://helmet.finna.fi/Record/helmet.1445605?sid=5310605409\">Orhan Pamuk: Uusi elämä</a></p>", "sv": "<p>Kalajärvi biblioteks läsecirkel på finska</p>", "en": "<p>Kalajärvi Library Reading Circle in Finnish</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2zthsu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67236", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494308, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T10:14:00.359534Z", "last_modified_time": "2025-12-23T10:14:00.359556Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780051.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494308/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-23T10:14:00.217149Z", "last_modified_time": "2026-04-08T13:13:34.534781Z", "date_published": null, "start_time": "2026-04-11T07:00:00Z", "end_time": "2026-04-11T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Barnfesten 2026 – yhdessä aikaa", "sv": "Barnfesten 2026 – tid tillsammans", "en": "Barnfesten 2026 – time together" }, "location_extra_info": null, "provider": null, "short_description": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8A27A7320A6612F11267195FC92FF2FF/Barnfesten_2026", "sv": "http://www.annantalo.fi/sv/evenemang/event/8A27A7320A6612F11267195FC92FF2FF/Barnfesten_2026", "en": "http://www.annantalo.fi/en/events/event/8A27A7320A6612F11267195FC92FF2FF/Barnfesten_2026" }, "description": { "fi": "<p>Luckan Barnkultur järjestää jälleen Barnfest-tapahtumapäivän Annantalolla lauantaina 11. huhtikuuta klo 10–15. Tapahtuma toteutetaan yhteistyössä yli 15 muun organisaation kanssa. Barnfesten painottaa moninaisuutta ja saavutettavuutta. Tapahtuma on maksuton ja kannustaa kaikenikäisiä lapsia taiteen ja kulttuurin pariin. Barnfesten on yhteisöllisyyden ja ilon juhla, jossa jokainen lapsi voi löytää jotain itselleen hauskaa ja kiinnostavaa. Ohjelma on pääosin ruotsinkielinen.</p><p>Vuoden 2026 Barnfestenissä voit tanssia 90-luvun rytmeihin Babydiscossa, riimitellä ja liikkua lastenrunojen tahdissa Rimjamissa, luoda värikkäitä askarteluja ja uppoutua satujen lumoon. Voit kuunnella sukupolvien ajan eläviä kansansävelmiä tai laulaa TeckenSandran kanssa. Värikkäät poi-esitykset ja UngaTeaternin puvustoon tutustuminen tuovat vielä lisää elämyksiä päivän ohjelmaan.</p><p>Helmetin ja Celian pop-up-kirjastossa on tarjolla kirjoja kaikenikäisille lapsille, ja Förlaget järjestää ääneenlukua Sanna Sofia Vuoren johdolla. Sanaton näytelmä BullyBully tekee maailmanpolitiikasta helposti ymmärrettävää, ja Teatteri Taimine korvaa tyhjät sanat ja diplomatian laululla, tanssilla ja hauskalla tarinankerronnalla. Lisäksi päivän aikana voit tavata opaskoiraa ja kokeilla pistekirjoitusta sekä suurennuslasia Synförbundetin kanssa.</p><p>Kaikki lapset ovat lämpimästi tervetulleita nauttimaan iloisesta lastenkulttuuripäivästä yhdessä läheistensä kanssa. Osa ohjelmasta on käynnissä koko päivän, mutta tietyt ohjelmat alkavat tiettyinä kellonaikoina ja niihin on rajoitettu osallistujamäärä. Paikkaliput jaetaan Annantalon sisäänkäynnin yhteydessä tapahtumapäivänä klo 10 alkaen. Rajoitettu määrä lippuja on myös saatavilla 7.–10.4. Luckan Helsingistä (Yrjönkatu 27) klo 11–17.</p><p>Lisätietoa Barnfesten 2026 tapahtumasta löydät osoitteesta: <br>https://barnkultur.luckan.fi/barnfesten/</p>", "sv": "<p>Luckan Barnkultur organiserar, tillsammans med över 15 organisationer, årets Barnfest på Annegården lördagen den 11 april kl. 10–15. Evenemanget är tillgängligt och kostnadsfritt, och arrangörerna vill uppmuntra till kulturdelaktighet. Barnfesten är en fest för gemenskap och glädje. Här finns mångsidiga och roliga aktiviteter för alla barn som teater, musik, pyssel och sagor.</p><p>På Barnfesten 2026 kan du skaka loss till 90-talsmusik på Babydisco eller ramsa och dansa i takt med barnpoesi på Rimjam. Lyssna till gamla folksånger som levt vidare genom generationer, eller sjunga med tecken som stöd tillsammans med TeckenSandra. Du kan njuta av färgsprakande poi-uppträdanden eller dyka ner i UngaTeaterns garderob. Eller vill du bli bekant med en ledarhund och utforska punktskrift och förstoringsglas med Synförbundet?</p><p>I Helmet och Celias pop-up-bibliotek finns böcker av olika slag, och Förlaget ordnar högläsning med Sanna Sofia Vuori. Global politik görs barnsligt enkel i den ordlösa pjäsen BullyBully. Teater Taimine ersätter tomma ord och diplomati med sång, dans och härligt löjliga tvister. Dessutom erbjuds flera kreativa pysselverkstäder.</p><p>Alla barn är varmt välkomna att ta del av den festliga barnkulturdagen tillsammans med nära och kära. Vissa program pågår kontinuerligt, medan andra startar vid bestämda tider och har ett begränsat antal platser. Under Barnfesten finns platsbiljetter att hämta i Annegårdens entré från kl. 10. Ett begränsat antal biljetter kan även hämtas på Luckan i Helsingfors, Georgsgatan 27, mellan den 7 och 10 april kl. 11-17.</p><p>Läs mer om Barnfesten 2026:<br>https://barnkultur.luckan.fi/barnfesten/</p>", "en": "<p>Luckan Barnkultur is organizing this year’s Barnfest at Annegården on Saturday, April 11, from 10–15 o’clock, together with over 15 other organizations. Barnfesten takes diversity and accessibility into account. The event is free of charge and aims to encourage participation in culture. Barnfesten celebrates quality time together while offering a wide variety of fun activities for children, ranging from theater and music to arts and crafts and storytelling. The program is mainly in Swedish.</p><p>At Barnfesten 2026, you can move and groove to ‘90s hits at Babydisco, or rhyme along with children’s poetry at Rimjam. Listen to traditional folk songs that have been passed down through generations or sing and sign with TeckenSandra. Enjoy vibrant poi performances, explore UngaTeatern's wardrobe, or meet a guide dog while discovering braille and magnifying glasses with the Synförbundet.</p><p>In Helmet and Celia’s pop-up library, you’ll find children's books of all kinds, and Förlaget will host a reading session with Sanna Sofia Vuori. Global politics is made childishly simple in the non-verbal play BullyBully, Teater Taimine replaces empty words and diplomacy with song, dance, and delightfully silly disputes.</p><p>All children are welcome to enjoy a festive day of children's culture together with their loved ones. Some activities will run throughout the day, while others start at specific times and have a limited number of spots. Tickets for these activities will be available at Annegården’s entrance starting at 10 AM. A limited number of tickets can also be collected in advance between April 7 and 10 from Luckan Helsingfors (Georgsgatan 27) 11–17 o’clock.</p><p>More information about Barnfesten 2026 can be found at:<br>https://barnkultur.luckan.fi/barnfesten/</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67236/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhteay", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824105, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-08T11:55:53.919804Z", "last_modified_time": "2026-04-08T11:55:53.919818Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c121f46-0ab2-4083-998e-c3a931097bb9.png", "name": "", "cropping": "965,0,2885,1920", "photographer_name": "Espoon kaupungin kuvituskuva", "alt_text": "Piirroskuva Ihmisiä luennolla / valmennuksessa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824105/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-08T11:56:03.025466Z", "last_modified_time": "2026-04-08T11:56:03.025491Z", "date_published": null, "start_time": "2026-04-08T13:00:00Z", "end_time": "2026-04-08T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Keski-Espoo-seuran luentosarja" }, "location_extra_info": { "fi": "Sininen huone" }, "provider": { "fi": "Keski-Espoo-seuran luentosarja" }, "short_description": { "fi": "Keski-Espoo-seura järjestää luentosarjan Entressen kirjastolla keskiviikkoisin iltapäivällä. " }, "info_url": null, "description": { "fi": "Keski-Espoo-seuran luentosarja<p>Keski-Espoo-seura järjestää luentosarjan Entressen kirjaston Sinisessä huoneessa Siltakatu 11, 02770 Espoo. Luennot pidetään keskiviikkoisin iltapäivällä.</p><p><strong>Huomio luentojen vaihtelevat ajankohdat!</strong></p><p> </p><p><strong>8.4.2026 klo 16–17, Mitä uutta Espoon koulu- ja sote-palveluissa?</strong></p><p>Mia Laiho, kansanedustaja, Espoon kasvun ja oppimisen lautakunnan pj ja Länsi-Uudenmaan aluehallituksen pj. </p><p><strong>15.4. klo 16–17, Espoon kaupunkirata: </strong></p><p>Hankkeen tavoitteet ja rakentamisen tilanne keväällä 2026. Tommi Rosenvall, projektipäällikkö. Väylävirasto. </p><p><strong>22.4. 2025 klo 15.45. – 16.45, Espoon keskuksen kehityskuvia, </strong></p><p>Mikko Kivinen, Espoon keskuksen kehittämisprojektin projektijohtaja, Tekninen ja ympäristötoimi, Espoon kaupunki.</p><p><strong>29.4.2026 klo 14.30–15.30, 72 tuntia - varautuminen ja kotivara. </strong> </p><p>Hanna Sayilir, Suomen Pelastusalan Keskusjärjestö (SPEK) kouluttama varautumisen asiantuntija.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhteay/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66998", "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:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3971894", "sv": "https://www.lippu.fi/eventseries/name-3971894", "en": "https://www.lippu.fi/eventseries/name-3971894" }, "description": null, "price": { "fi": "29,90 / 33.90 €", "sv": "29,90 / 33.90 €", "en": "29,90 / 33.90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490701, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-09T09:14:27.775714Z", "last_modified_time": "2025-09-09T09:14:27.775732Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777414.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490701/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-09T09:14:27.639670Z", "last_modified_time": "2026-04-08T11:13:41.712706Z", "date_published": null, "start_time": "2026-04-23T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Levi.Sct", "sv": "Levi.Sct", "en": "Levi.Sct" }, "location_extra_info": null, "provider": { "fi": "Live Nation Finland Oy", "sv": "Live Nation Finland Oy", "en": "Live Nation Finland Oy" }, "short_description": { "fi": "Klassisen musiikin ja hiphopin yhdistävä pianistitähti Levi.Sct keväällä Helsinkiin", "sv": "Stjärnpianisten Levi.Sct, som kombinerar klassisk musik och hiphop, kommer till Helsingfors i vår", "en": "Levi.Sct, a star pianist combining classical music and hip hop, to perform in Helsinki in spring" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/97927E539CB06E6D5F7F5D9D284D598E/Levi_Sct", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/97927E539CB06E6D5F7F5D9D284D598E/Levi_Sct", "en": "http://www.savoyteatteri.fi/en/events/event/97927E539CB06E6D5F7F5D9D284D598E/Levi_Sct" }, "description": { "fi": "<p>Klassisen musiikin ja hiphopin yhdistävä pianistitähti Levi.Sct keväällä Helsinkiin</p><p>Runsaasti huomiota sosiaalisessa mediassa herättänyt ja yli miljoona Instagram-seuraajaa kartuttanut pianistilahjakkuus <b>Levi.Sct</b> konsertoi Helsingin Savoy-teatterissa torstaina 23.4.2026!.</p><p>Levi.Sct (Levi Schechtmann, syntynyt 1999) on genrerajoja rikkova saksalainen pianisti, joka yhdistelee ennakkoluulottomasti musiikkityylejä ja uudistaa samalla klassisen musiikin konserttikokemusta. Hän yhdistää Bachin ja Chopinin luomat musiikilliset maailmat nykyaikaisiin vaikutteisiin, kuten hiphopin ja housen rytmeihin. Tuloksena on rohkea, elokuvallinen ja mukaansatempaava äänimaisema.</p><p>Sukupolvensa seuratuimpien pianistilahjakkuuksien joukkoon noussut Levi.Sct on herättänyt huomiota sosiaalisessa mediassa ja kerännyt lyhyessä ajassa Instagramissa yli 1,2 miljoonaa seuraajaa. Vasta uransa ensiaskelia ottava artisti on jo ehtinyt esiintyä Hampurin Elbphilharmonien ja Brysselin Flageyn kaltaisissa maineikkaissa konserttisaleissa. Artisti on saanut kiitosta esiintymisistään, joiden intensiivisyys ja immersiivisyys tuo klassiseen musiikkiin uudenlaista energiaa.</p><p>Ovet aukeavat klo 18.</p><p>LIPUT:<br>Myynnissä perjantaina 12.9.2025 klo 11 osoitteessa lippu.fi<br>Hinta alkaen 29,90 € sisältäen palvelumaksun, tilauskulut alk. 1,50 € + 0,65 % tilauksesta</p><p><i>Mastercardin kortinhaltijoilla on pääsy tapahtuman ennakkomyyntiin Suomessa ke 10.9. klo 10:00 – pe 12.9. klo 10:00 välisenä aikana. Lue lisää osoitteessa https://www.priceless.com/music </i></p>", "sv": "<p>Stjärnpianisten Levi.Sct, som kombinerar klassisk musik och hiphop, kommer till Helsingfors i vår</p><p>Den begåvade pianisten Levi.Sct, som har väckt stor uppmärksamhet på sociala medier och har över en miljon följare på Instagram, ger en konsert på Savoy-teatern i Helsingfors torsdagen den 23 april 2026!</p><p>Levi.Sct (Levi Schechtmann, född 1999) är en genreöverskridande tysk pianist som kombinerar olika musikstilar på ett fördomsfritt sätt och samtidigt förnyar konsertupplevelsen inom klassisk musik. Han kombinerar de musikaliska världar som Bach och Chopin skapat med samtida influenser som hiphop- och houserytmer. Resultatet är ett djärvt, filmiskt och medryckande ljudlandskap.</p><p>Levi.Sct har blivit en av de mest följda pianotalangerna i sin generation och har väckt uppmärksamhet på sociala medier med över 1,2 miljoner följare på Instagram på kort tid. Artisten, som ännu bara tagit de första stegen i sin karriär, har redan uppträtt i prestigefyllda konsertsalar som Elbphilharmonie i Hamburg och Flagey i Bryssel. Artisten har hyllats för sina framträdanden, vars intensitet och immersivitet ger klassisk musik en ny slags energi.</p><p>Dörrarna öppnas kl. 18.</p>", "en": "<p>Levi.Sct, a star pianist combining classical music and hip hop, to perform in Helsinki in spring</p><p>The talented pianist Levi.Sct, who has attracted a lot of attention on social media and has amassed over a million Instagram followers, will give a concert at the Savoy Theatre in Helsinki on Thursday 23 April 2026.</p><p>Levi.Sct (Levi Schechtmann, b. 1999) is a genre-bending German pianist who combines musical styles in an open-minded way while reforming experiences of classical music concerts. He combines the musical worlds created by Bach and Chopin with contemporary influences, such as hip hop and house rhythms. The result is a bold, cinematic and immersive soundscape.</p><p>Levi.Sct, who has become one of the most followed piano talents of his generation, has attracted attention on social media, amassing over 1.2 million followers on Instagram in a short period of time. The artist, who is just taking the first steps in his career, has already performed in prestigious concert halls such as the Elbphilharmonie in Hamburg and the Flagey in Brussels. The artist has been praised for his performances, which bring a new energy to classical music through their intense and immersive nature.</p><p>Doors open at 18:00.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66998/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68385", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1803579, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-08T11:13:40.109872Z", "last_modified_time": "2026-04-08T11:13:40.109890Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787930.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1803579/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-08T11:13:39.964951Z", "last_modified_time": "2026-04-08T11:13:40.299884Z", "date_published": null, "start_time": "2026-04-21T14:00:00Z", "end_time": "2026-04-21T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Helsingin Pyöräpajan mobiilipaja – Vuotalon Ekoviikko", "sv": "Helsingin Pyöräpajan mobiilipaja – Vuotalon Ekoviikko", "en": "Helsingin Pyöräpajan mobiilipaja – Vuotalon Ekoviikko" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule opettelemaan pyöränkorjausta ja huoltamaan polkupyöräsi maksuttomassa tee se itse työpajassa." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DAED8C0AAC8B1071C684CF2570B729CC/Helsingin_Pyorapajan_mobiilipaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/DAED8C0AAC8B1071C684CF2570B729CC/Helsingin_Pyorapajan_mobiilipaja", "en": "http://www.vuotalo.fi/en/events/event/DAED8C0AAC8B1071C684CF2570B729CC/Helsingin_Pyorapajan_mobiilipaja" }, "description": { "fi": "<p>Tule opettelemaan pyöränkorjausta ja huoltamaan polkupyöräsi maksuttomassa tee se itse työpajassa.</p><p>Tule opettelemaan pyöränkorjausta ja huoltamaan polkupyöräsi Helsingin pyöräpajan järjestämässä maksuttomassa tee se itse työpajassa.</p><p>Mobiilipaja tuo paikalle pyöränhuollossa yleisimmin tarvittavat työkalut, aineet ja osat.</p><p>Vapaaehtoisemme opastavat ja auttavat tarvittaessa.</p><p>Paikka: Vuotalon piha</p><p>Kieli: suomi, englanti</p><p>Vapaa pääsy</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68385/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68357", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1791990, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T10:12:54.836565Z", "last_modified_time": "2026-04-02T10:12:54.836581Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787786.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1791990/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-02T10:12:54.575454Z", "last_modified_time": "2026-04-08T10:13:39.491871Z", "date_published": null, "start_time": "2026-04-20T05:00:00Z", "end_time": "2026-04-25T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Vuotalon Ekoviikko" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Rakenna linnunpönttö, tee löytöjä kulttuurikirppiksessä tai osallistu muihin Vuotalon Ekoviikon työpajoihin ja tapahtumiin!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7AFF5B936612D61141DB97449A18399D/Vuotalon_Ekoviikko" }, "description": { "fi": "<p>Rakenna linnunpönttö, tee löytöjä kulttuurikirppiksessä tai osallistu muihin Vuotalon Ekoviikon työpajoihin ja tapahtumiin!</p><p>Vuotalon Ekoviikolla voit osallistua linturetkelle, huoltaa polkupyöräsi sekä tutustua Helsingin jätteiden historiaan. Maanantaista lauantaihin jatkuva Ekoviikko tarjoilee monenlaisia työpajoja ja tapahtumia lapsille, nuorille ja aikuisille ympäri kulttuurikeskusta. Lisätietoja yksittäisistä tapahtumista löydät Vuotalo.fi-tapahtumakalenterista hakusanalla Vuotalon Ekoviikko. Kaikki tapahtumat ovat maksuttomia pois lukien Mimmit & Luonnonsuojelun supersankarit -konsertit.</p><p>EKOVIIKON TAPAHTUMAT</p><p>Ma 20.4. klo 16–18 Nuorten suunnittelema ekoaiheinen Kierrätyskeskuksesta hankittujen ruukkujen koristelutyöpaja (Vuotalon aula)</p><p>Ma 20.4. klo 18–20 Linturetki Broändan purolaaksoon <br>Keväisellä retkellä bongataan lintuja ja kuullaan alueen historiallisista muinaisjäännöksistä, kuten vanhasta rajakivestä sekä Vartioharjun linnavuoresta. Lähtö ja paluu Kallvikintien ja Broändan puron risteyksestä. Ei ennakkoilmoittautumista.</p><p>Ti 21.4. klo 15–18.15 Kierrätä pitsejä (Vuotalon aula)<br>Työpajassa pohditaan käyttöä kierrätyspitseille kirjoen ja askarrellen. Tule kokeilemaan mahdollisuuksia ja ideoimaan käyttökohteita. Ei ennakkoilmoittautumista.</p><p>ti 21.4. klo 16–20 ja ke 22.4. klo 16–20 Ympäristöviikon linnunpönttöpajat (Vuotalon K-kerroksen puupaja)<br>Tule auttamaan lintuja ja rakentamaan linnunpönttö oman lapsen tai nuoren, kaverin kersan tai vaikka lapsenlapsen kanssa!</p><p>Ti 21.4. klo 17–20 Helsingin Pyöräpajan mobiilipaja <br>Tule opettelemaan pyöränkorjausta ja huoltamaan polkupyöräsi Helsingin pyöräpajan järjestämässä maksuttomassa tee se itse työpajassa.</p><p>Ke 22.4. klo 15–16 Ekoteemainen koululaiskeskiviikko, kirjaston lastenalue</p><p>Ke 22.4. klo 15–19 Neuvontaa ja vinkkejä ympäristöystävällisempään arkeen (Vuosaaren kirjaston aula)</p><p>Ke 22.4. klo 16–16.45 Opastus Roskaa! -näyttelyyn sekä uusittuihin kirjastotiloihin <br>Yleisöopastuksella tutustutaan yhdessä oppaan johdolla Roskaa! -näyttelyyn. Näyttelyopastuksen jälkeen teemme kierroksen kirjaston uusituissa tiloissa.</p><p>Ke 22.4. klo 17–18 Luento: Kuopat, kummut ja roskispalot – Helsingin jätteiden historiaa (Vuosaaren kirjaston stage)<br>Miten Helsingin kaupungissa käsiteltiin ja käsitellään jätettä ennen ja nyt? Aiheesta puhuu Helsingin kaupunginmuseon Roskaa!-näyttelyn tuottaja, museolehtori Magnus Rask.</p><p>Pe 24.4. klo 10–11.30 Kirjaston pienten aamu luontoteemalla</p><p>La 25.4. klo 10–16 Vuotalon Ekolauantai (Vuotalon aula ja yläpiha)</p><p>klo 10–13.30 Kulttuurikirpputori <br>klo 10–15 Vuosaaren yhteiset roskatalkoot <br>klo 10–13.30 Nuorten suunnittelemat työpajat (taimien istutus ja ympäristöaiheinen visa)<br>klo 10 – 13:30 Mainiot materiaalit: askartelumassaa hedelmänkuorista <br>klo 10–13 MLL Vuosaaren yhdistyksen Kierrätysonnenpyörä ja vohvelien paistamista (Vuotalon yläpiha)<br>klo 15–16 Mimmit & Luonnonsuojelun supersankarit LOPPUUNMYYTY ja klo 17–18 Mimmit på svenska -konsertit Vuosalissa <br> <br>Näiden Ekoviikon tapahtumien lisäksi voit koko viikon ajan tutustua kirjastossa ekoaiheiseen kirjanäyttelyyn. Vuotalon aulassa Roskaa! – mitä jätämme jälkeemme Helsingin kaupunginmuseon kierrätysaiheinen näyttely 23.5.2026 asti.</p><p>Tapahtuma on osa Week17 / Viikko17 ekoviikkoa. Viikko17 on kansainvälinen kirjastojen teemaviikko, jonka aikana nostetaan esille YK:n kestävän kehityksen 17 globaalia tavoitetta.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68357/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67972", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4054707", "sv": "https://www.lippu.fi/eventseries/name-4054707", "en": "https://www.lippu.fi/eventseries/name-4054707" }, "description": null, "price": { "fi": "15 €", "sv": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494662, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-28T13:13:15.525082Z", "last_modified_time": "2026-01-28T13:13:15.525095Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777529.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494662/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-28T13:13:15.351825Z", "last_modified_time": "2026-04-08T09:13:46.349008Z", "date_published": null, "start_time": "2026-04-11T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Hilja Grönfors Trio – Klubi-ilta", "sv": "Hilja Grönfors Trio – Klubi-ilta", "en": "Hilja Grönfors Trio – Klubi-ilta" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Hilja Grönfors on nimi, johon nykypäivänä henkilöityy Suomen romanimusiikki.", "sv": "Hilja Grönfors är ett namn som i dag personifierar den romska musiken i Finland.", "en": "Hilja Grönfors is a name synonymous with contemporary Finnish Roma music." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D4852ABC264EA1D278E1DF3951F859B5/Hilja_Gronfors_Trio", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D4852ABC264EA1D278E1DF3951F859B5/Hilja_Gronfors_Trio", "en": "http://www.vuotalo.fi/en/events/event/D4852ABC264EA1D278E1DF3951F859B5/Hilja_Gronfors_Trio" }, "description": { "fi": "<p>Hilja Grönfors on nimi, johon nykypäivänä henkilöityy Suomen romanimusiikki.</p><p>Hän on maamme kansanmusiikin kentällä ainutlaatuinen laulujen aarreaitta, joka asiantuntijana tuntee tarkkaan esittämänsä lauluston tyylipiirteet ja kulttuuriset taustat. Hän on elänyt ja hengittänyt yhteisönsä musiikkia lapsesta saakka aikana, jolloin romanikulttuuriin kuului jatkuva liikkuminen kärryillä, ja laulut kuuluivat elämäntapaan erottamattomasti.<br> <br>Hilja Grönfors syntyi vuonna 1952 Pohjois-Karjalan Juuassa perinteiseen romaniperheeseen, joka 60-luvulle asti hankki elantonsa kiertelemällä talosta taloon kausitöiden ja hevostalouden taitajina. Perhe arvosti koulutusta, ja Hilja kävi kansakoulunsa isovanhempiensa kotoa käsin alusta loppuun. 70-luvulla koko perhe muutti Ruotsiin, jossa Hilja asui 15 vuotta.<br> <br>Suomeen palattuaan Hilja perusti ensimmäisen oman yhtyeensä 90-luvun lopussa ja levytti esikoisalbuminsa ” Phurano Mirits ” Maailman musiikin keskuksen tuottamana. Hänen toinen levynsä ” Kai tu Dzaha? ” palkittiin Etno-Emmalla. Kaikkiaan kolme pitkäsoittoa julkaissut Hilja esittää nykyään perinteistä romanimusiikkia niin suomalaisilla kuin kansainvälisilläkin maailmanmusiikin festivaaleilla.<br> <br>Kotimaan lisäksi hän on esiintynyt Ruotsissa, Alankomaissa, Ranskassa, Saksassa, Tsekissä, Unkarissa ja Yhdysvalloissa.<br> Pohjois-Karjalaan, Savoon, Pohjanmaalle ja Keski-Suomeen tekemillään perinteenkeruumatkoilla Hilja on tallettanut runsaat kolmesataa romanilaulua. Hänen sitkeä työnsä jo miltei katoamassa olleen perinteen elvyttämiseksi on palkittu valtion Suomi-palkinnolla 2014.<br> <br>Hilja Grönforsin pyyteetön työ sai Suomessa korkeimman akateemisen tunnustuksen vuonna 2024 kun hänet vihittiin kunniatohtoriksi, ja hän sai samana vuonna akateemikon arvonimen. Kansainvälisestikin harvinainen tunnustus on saajalleen ansaittu, ja merkittävä koko suomalaiselle romaniyhteisölle ja -kulttuurille!<br>Kesto: 2 t sis. väliajan.</p><p>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa.</p>", "sv": "<p>Hilja Grönfors är ett namn som i dag personifierar den romska musiken i Finland.</p><p>Hon är en unik skattkammare av sånger från folkmusikfältet i vårt land, och i egenskap av expert känner hon till stildragen och de kulturella bakgrunderna hos de sånger hon framför. Hon har levt och andats musiken i sin gemenskap sedan barndomen under en tid när det hörde till den romska kulturen att ständigt vara i rörelse i vagnar, och sångerna var en oskiljbar del av livsstilen.<br> <br>Hilja Grönfors föddes 1952 i Juga i Norra Karelen i en traditionell romsk familj, som fram till 60-talet försörjde sig genom att resa runt från gård till gård och arbeta med säsongsarbete och hästskötsel. Familjen värdesatte utbildning, och Hilja kunde gå hela folkskolan genom att bo hos släktingar. På 70-talet flyttade hela familjen till Sverige, där Hilja bodde i 15 år.<br> <br>Efter återkomsten till Finland grundade Hilja i slutet av 90-talet sitt första band och spelade in sitt första album Phurano Mirits, som producerades av Maailman musiikin keskus. Hennes andra skiva, Kai tu Dzaha, belönades med en Etno-Emma. Hilja har numera gett ut sammanlagt tre album och uppträder med traditionell romsk musik på både finländska och internationella festivaler för världsmusik.<br> <br>Förutom i Finland har hon uppträtt i Sverige, Nederländerna, Frankrike, Tyskland, Tjeckien, Ungern och USA. Hilja har också rest runt i Norra Karelen, Savolax, Österbotten och Mellersta Finland för att samla in traditioner, och har spelat in drygt trehundra romska sånger. För sitt ihärdiga arbete för att återuppliva en nästan utdöd tradition belönades hon med statens Finlandspris 2014.<br> <br>Hilja Grönfors uppoffrande arbete fick det högsta akademiska erkännandet i Finland år 2024, då hon utsågs till hedersdoktor, och samma år fick hon hederstiteln akademiker. Detta erkännande, som är sällsynt även internationellt, var mycket välförtjänt och betydande för hela den romska gemenskapen och kulturen i Finland.<br>Längd: 2 h inklusive paus</p>", "en": "<p>Hilja Grönfors is a name synonymous with contemporary Finnish Roma music.</p><p>She draws on her unique treasure trove of songs in the Finnish folk music genre and is well-versed in the stylistic characteristics and cultural background of the songs that she performs. She has been living and breathing the music of her community since she was born in a time when the Roma culture was associated with transient lifestyles, and songs were an inseparable part of life.<br> <br>Hilja Grönfors was born in 1952 in Juuka in North Karelia to a traditional Roma family, who made their living in the traditional way by moving from house to house doing seasonal and horse and stable management work until the 1960s. The family valued education, and Hilja completed primary school while living with her grandparents. In the 1970s, the family moved to Sweden, where Hilja lived for 15 years.<br> <br>After returning to Finland, Hilja started her first band in the late 90s and recorded her debut album Phurano Mirits produced by the Global Music Centre. Her second album Kai tu Dzaha? won the Etno-Emma award. Hilja, who has published three long play albums, now performs traditional Roma music at both Finnish and international world music festivals.<br> <br>In addition to Finland, she has performed in Sweden, the Netherlands, France, Germany, the Czech Republic, Hungary and the United States. During her folklore collection trips in North Karelia, Savonia, Ostrobothnia and Central Finland, Hilja has recorded some 300 Roma songs. Her tenacious work to revive the nearly extinct tradition was recognised by the Ministry of Education and Culture with the Finland Prize in 2014.<br> <br>Hilja Grönfors’s selfless work was given the most distinguished academic honour in Finland in 2024 when she was made honorary doctor and when she was given the honorary title of Academician of Arts that same year. This well-deserved honour is exceptional even on a global scale, and it is very significant in terms of the Roma community and culture in Finland at large!<br>Duration: 2 h, incl. intermission</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67972/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhteua", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15355/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824125, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-07T08:57:30.806715Z", "last_modified_time": "2026-04-07T08:57:30.806730Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e0c54a3c-617e-4caf-9757-3b674c962a4c.jpg", "name": "", "cropping": "236,0,844,608", "photographer_name": "Laura H.", "alt_text": "Välkky kirjastoauto sisältä, kuvassa aurinko paistaa kirjoihin, jotka on laitettu esille seinätelineisiin.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824125/?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-04-07T08:59:29.072489Z", "last_modified_time": "2026-04-08T09:06:40.896789Z", "date_published": "2026-04-07T08:46:00Z", "start_time": "2026-04-12T07:00:00Z", "end_time": "2026-04-12T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Välkky Kilonpuiston aprilliriehassa", "sv": "Välkky på Kilonpuiston aprillirieha", "en": "Välkky at Kilonpuiston aprillirieha" }, "location_extra_info": null, "provider": { "fi": "Kilonpuiston koulu", "sv": "Kilonpuiston koulu", "en": "Kilonpuiston koulu" }, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": null, "description": { "fi": "<p>Espoon kirjasto- ja kulttuuriauto Välkky on mukana Kilonpuiston Aprilliriehassa!</p><p>Tervetuloa lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p>", "sv": "<p>Välkommen att låna och återlämna böcker, eller bara läsa, eller utforska ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och återlämna böcker till vilket Helmet-bibliotek som helst. Om du inte har ett bibliotekskort än, så gör vi ett åt dig. Ta med din legitimation.</p>", "en": "<p>Welcome to borrow and return books, or just read, or explore a slightly different library!</p><p>You can borrow materials with your Helmet library card and return books to any Helmet library. If you don't have a library card yet, we will make one for you. Bring your ID.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhteua/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnzrjj6bm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@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": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj3a4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj3vy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj4im/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj43e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj5oq/?format=api" } ], "images": [ { "id": 1490099, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T12:13:56.085264Z", "last_modified_time": "2025-08-13T12:42:13.026623Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg", "name": "", "cropping": "315,0,1125,810", "photographer_name": "Joni Luumi", "alt_text": "Kirjastoauto Välkky ilta-auringossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-01-07T12:23:07.300657Z", "last_modified_time": "2026-04-08T09:01:56.080395Z", "date_published": null, "start_time": "2026-01-09T11:00:00Z", "end_time": "2026-05-15T11:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Välkky Karakallion asukaspuistossa", "sv": "Välkky på Karakallios invånarpark", "en": "Välkky at Karakallio residents' park" }, "location_extra_info": { "fi": "Välkky", "sv": "Välkky", "en": "Välkky" }, "provider": null, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "http://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" }, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13 - 14:15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>", "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.00 - 14.15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>", "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:00 - 14:15.</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj6bm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnzrjj2oi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@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": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjxh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjx7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjysi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjzh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjz24/?format=api" } ], "images": [ { "id": 1490099, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T12:13:56.085264Z", "last_modified_time": "2025-08-13T12:42:13.026623Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg", "name": "", "cropping": "315,0,1125,810", "photographer_name": "Joni Luumi", "alt_text": "Kirjastoauto Välkky ilta-auringossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-01-07T12:25:42.568663Z", "last_modified_time": "2026-04-08T09:00:53.416159Z", "date_published": null, "start_time": "2026-01-12T11:00:00Z", "end_time": "2026-05-11T11:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Välkky Hiirisuon asukaspuistossa", "sv": "Välkky på Mössenkärrs invånarpark", "en": "Välkky at Hiirisuo residents' park" }, "location_extra_info": { "fi": "Välkky", "sv": "Välkky", "en": "Välkky" }, "provider": null, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "http://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" }, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle viitenä maanantaina klo 13:00 - 14:15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>", "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.00 - 14.15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>", "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:00 - 14:15.</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj2oi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }