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/?division=malmi&format=api&page=5
{ "meta": { "count": 1627, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=6", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=4" }, "data": [ { "id": "kulke:67385", "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-the-secret-agent-malmitalo-21375693/", "sv": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375693/", "en": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375693/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1509762, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T13:13:51.803988Z", "last_modified_time": "2026-03-03T13:13:51.804005Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781070.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509762/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T13:13:51.670515Z", "last_modified_time": "2026-03-20T01:13:45.048605Z", "date_published": null, "start_time": "2026-03-25T13: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, "short_description": { "fi": "Neljän Oscarin ehdokas The Secret Agent on omaperäinen ja mustan komedian sävyttämä trilleri." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/763D9427758D7B158B46A054DF1FC566/The_Secret_Agent_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/763D9427758D7B158B46A054DF1FC566/The_Secret_Agent_16_", "en": "http://www.malmitalo.fi/en/events/event/763D9427758D7B158B46A054DF1FC566/The_Secret_Agent_16_" }, "description": { "fi": "<p>Neljän Oscarin ehdokas The Secret Agent on omaperäinen ja mustan komedian sävyttämä trilleri.</p><p>The Secret Agent palkittiin 2026 Golden Globes -gaalassa parhaan vieraskielisen elokuvan palkinnolla ja pääosanesittäjä Wagner Moura parhaan miesnäyttelijän palkinnolla.</p><p>Vuoden 2025 Cannesin elokuvajuhlilla parhaasta ohjauksesta (Kleber Mendonça Filho) ja miespääosasta (Wagner Moura) palkittu The Secret Agent on omaperäinen poliittinen trilleri. Eletään riehakasta karnevaaliviikkoa vuonna 1977 Brasiliassa.</p><p>Salaperäistä menneisyyttään pakeneva teknologia-asiantuntija Marcelo (Moura) palaa kotikaupunkiinsa etsimään rauhaa, samalla toivoen tapaavansa jälleen poikansa.</p><p>Hän löytää suojapaikan vastarintaliikkeen kommuunista, mutta huomaa pian, että kaupunki on yhtä eläväinen kuin väkivaltainenkin. Marcelo ajautuu tahtomattaan keskelle poliittista kuohuntaa.</p><p>Oivaltavasti eri lajityyppejä yhdistelevä, auringon paahtama elokuva on ohjaaja Filhon kunnianosoitus elokuvataiteelle ja Brasilialle. Elokuva on Brasilian virallinen ehdokas Oscar-kisaan.</p><p>Ikäraja: 16<br>Kesto: 161 min<br>Ensi-ilta: 20.2.2026<br>Tekstitys: suomi, ruotsi</p><p>Kino Helioksessa vietetään Oscar-viikkoa 18.–20.3.</p><p>Tuomme valkokankaalle neljä hienoa Oscar ehdokkuuksia kahminutta elokuvaa, joille ennustamme myös palkintoja.</p><p>Keskiviikkona 18.3. on nähtävissä 8 Oscar ehdokkuutta saanut Hamnet klo 15, 4 ehdokkuutta saanut The Secret Agent klo 18 ja perjantaina 20.3. nähdään molemmat 9 Oscar ehdokkuutta saaneet Sentimental Value klo 15 ja Marty Supreme klo 18.</p>" }, "name": { "fi": "The Secret Agent (16) – Kino Helios", "sv": "The Secret Agent (16) – Kino Helios", "en": "The Secret Agent (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67385/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67579", "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:33/?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:p6529/?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-4032393", "sv": "https://www.lippu.fi/eventseries/name-4032393", "en": "https://www.lippu.fi/eventseries/name-4032393" }, "description": null, "price": { "fi": "20,80€/22,80€", "sv": "20,80€/22,80€", "en": "20,80€/22,80€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494085, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T13:13:00.514264Z", "last_modified_time": "2025-12-04T13:13:00.514280Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781964.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494085/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T13:13:00.440401Z", "last_modified_time": "2026-03-20T01:13:44.372492Z", "date_published": null, "start_time": "2026-03-24T17: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, "short_description": { "fi": "Kahden ystäväpariskunnan lupaavasti alkava ilta saa uusia käänteitä kahden yllätysvieraan myötä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C8D1EC2AE6E167E5CEF0E4889960D1DF/Malmin_Tyovaennayttamo_Yllatysvieraita", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C8D1EC2AE6E167E5CEF0E4889960D1DF/Malmin_Tyovaennayttamo_Yllatysvieraita", "en": "http://www.malmitalo.fi/en/events/event/C8D1EC2AE6E167E5CEF0E4889960D1DF/Malmin_Tyovaennayttamo_Yllatysvieraita" }, "description": { "fi": "<p>Kahden ystäväpariskunnan lupaavasti alkava ilta saa uusia käänteitä kahden yllätysvieraan myötä.</p><p>Mies on kutsunut nuoruudenaikaisen kaverinsa, jolla menee lujaa rapakon toisella puolella. Vaimo kutsunut parhaan työkaverinsa, Tatjanan, joka on osaava monella saralla.<br>Yllätysvieraat saa lisämausteen, kun paikalle ilmaantuu putkimies Turunen, joka taas katselee ja kuuntelee elämää ihan omanlaisellaan virityksellä.</p><p>Yllätysvieraat on komedia, jota värjäävät niin ennakkoluulot kuin väärinymmärryksetkin. Sen loppu ei liene kenenkään arvattavissa, joten kannattaa tulla katsomaan!</p><p>Kesto: 1 t 50 min, sis 20 min väliajan</p>" }, "name": { "fi": "Malmin Työväennäyttämö: Yllätysvieraita", "sv": "Malmin Työväennäyttämö: Yllätysvieraita", "en": "Malmin Työväennäyttämö: Yllätysvieraita" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67579/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67491", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/artist/ladies-first-big-band/ladies-first-big-band-elokuvissa-4016398/", "sv": "https://www.lippu.fi/artist/ladies-first-big-band/ladies-first-big-band-elokuvissa-4016398/", "en": "https://www.lippu.fi/artist/ladies-first-big-band/ladies-first-big-band-elokuvissa-4016398/" }, "description": null, "price": { "fi": "16,80€-31,90€", "sv": "16,80€-31,90€", "en": "16,80€-31,90€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494067, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:53.821069Z", "last_modified_time": "2025-12-04T12:12:53.821084Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781550.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494067/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:53.753151Z", "last_modified_time": "2026-03-20T01:13:43.041940Z", "date_published": null, "start_time": "2026-03-21T17: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, "short_description": { "fi": "Ladies First Big Band johdattelee yleisön elokuvista tuttujen kappaleiden siivin tunnelmasta ja vuosikymmenestä toiseen.", "sv": "Ladies First Big Band leder publiken genom olika stämningar och årtionden med hjälp av bekanta låtar.", "en": "The Ladies First Big Band takes the audience on a journey through different atmospheres and decades with classic movie songs." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/231A04B286864EE2633A3C89F909DFF2/Ladies_First_Big_band_Elokuvissa_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/231A04B286864EE2633A3C89F909DFF2/Ladies_First_Big_band_Elokuvissa_", "en": "http://www.malmitalo.fi/en/events/event/231A04B286864EE2633A3C89F909DFF2/Ladies_First_Big_Band_Elokuvissa_In_the_movies_" }, "description": { "fi": "<p>Ladies First Big Band johdattelee yleisön elokuvista tuttujen kappaleiden siivin tunnelmasta ja vuosikymmenestä toiseen.</p><p>Juonnetussa konsertissa kuullaan niin instrumentaaleja kuin laulusolistien tulkintoja elokuvamusiikin helmistä, tietenkin höystettynä glitterillä ja glamourilla.</p><p>Kesto: 2 t, sis. väliajan 30 min</p>", "sv": "<p>Ladies First Big Band leder publiken genom olika stämningar och årtionden med hjälp av bekanta låtar.</p><p>I den programledda konserten hör man både instrumentella och sångsolisternas tolkningar av filmmusikens pärlor, naturligtvis kryddade med glitter och glamour.</p><p>Längd: 2 h, inkl. en paus på 30 min.</p>", "en": "<p>The Ladies First Big Band takes the audience on a journey through different atmospheres and decades with classic movie songs.</p><p>The hosted concert will feature both instrumental and vocal soloists' interpretations of some of the shiniest gems of film music, seasoned with a touch of glitz and glamour, of course!</p><p>Duration: 2 hours, incl. 30 min intermission.</p>" }, "name": { "fi": "Ladies First Big band: Elokuvissa!", "sv": "Ladies First Big band: Elokuvissa!", "en": "Ladies First Big Band: Elokuvissa! – In the movies!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67491/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67384", "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-kaunis-rietas-onnellinen-malmitalo-21375682/", "sv": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21375682/", "en": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21375682/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1506904, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T07:14:29.479412Z", "last_modified_time": "2026-03-03T07:14:29.479428Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781068.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1506904/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T07:14:29.390153Z", "last_modified_time": "2026-03-20T01:13:42.925418Z", "date_published": null, "start_time": "2026-03-21T16: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, "short_description": { "fi": "Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2D3C629E6BA71DA4DE41CB8CB1B59670/Kaunis_rietas_onnellinen_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2D3C629E6BA71DA4DE41CB8CB1B59670/Kaunis_rietas_onnellinen_12_", "en": "http://www.malmitalo.fi/en/events/event/2D3C629E6BA71DA4DE41CB8CB1B59670/Kaunis_rietas_onnellinen_12_" }, "description": { "fi": "<p>Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi.</p><p>Elokuva on voimakas tarina yhdestä Suomen suurimmista artisteista, jonka musiikki on lohduttanut ja voimaannuttanut jo sukupolvien ajan.</p><p>Pianistipuoliso Markku näkee hänen lahjansa kirkkaammin kuin kukaan muu.</p><p>Menestys ei tule kuitenkaan ilman sisäistä taistelua. Isän menetyksen mukanaan tuoma suru pysäyttää Kaijan ja saa hänet luopumaan hetkellisesti unelmistaan.</p><p>Kun yllättävä jättisuosio nostaa Kaijan supertähdeksi, hänen on kohdattava paitsi menestyksen varjot, myös löydettävä oma äänensä – jotta hänen on mahdollista nousta lavalle vapaampana kuin koskaan.</p><p>Solar Filmsin tuottaman elokuvan on ohjannut Selma Vilhunen ja sen pääosissa nähdään Oona Airola ja Jari Virman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 18.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kaunis rietas onnellinen (12) – Kino Helios", "sv": "Kaunis rietas onnellinen (12) – Kino Helios", "en": "Kaunis rietas onnellinen (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67384/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67383", "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-operaatio-majava-malmitalo-21375690/", "sv": "https://www.lippu.fi/event/kino-helios-operaatio-majava-malmitalo-21375690/", "en": "https://www.lippu.fi/event/kino-helios-operaatio-majava-malmitalo-21375690/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1509284, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T12:13:12.292191Z", "last_modified_time": "2026-03-03T12:13:12.292204Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781067.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509284/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T12:13:12.170470Z", "last_modified_time": "2026-03-20T01:13:42.197679Z", "date_published": null, "start_time": "2026-03-21T13: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, "short_description": { "fi": "Uudessa Disneyn ja Pixarin animaatiokomediassa Operaatio Majava tutustutaan eläinrakkaaseen tyttöön nimeltä Mabel (Piper Curda), joka tarttuu uuden tekniikan suomaan tilaisuuteen hyppäyttää itsensä aivan aidonoloiseen robottimajavan hahmoon ja jutella suoraan eläinten kanssa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B4841722811ED0FE31593135BE7D7BE2/Operaatio_Majava_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B4841722811ED0FE31593135BE7D7BE2/Operaatio_Majava_7_", "en": "http://www.malmitalo.fi/en/events/event/B4841722811ED0FE31593135BE7D7BE2/Operaatio_Majava_7_" }, "description": { "fi": "<p>Uudessa Disneyn ja Pixarin animaatiokomediassa Operaatio Majava tutustutaan eläinrakkaaseen tyttöön nimeltä Mabel (Piper Curda), joka tarttuu uuden tekniikan suomaan tilaisuuteen hyppäyttää itsensä aivan aidonoloiseen robottimajavan hahmoon ja jutella suoraan eläinten kanssa.</p><p>Mullistavan teknologian avulla Mabel saa selville eläinmaailman arvoituksia, joita ei olisi voinut kuvitellakaan.</p><p>Majavalan pormestarinvaaleissa uudelleenvalintaa tavoitteleva poliitikko Jerryn moitteettomasti muotoillun kuontalon alla on yhtä sliipatulla julkikuvalla varustettu persoona, jolta palaa hermo, kun vastaan asettuu ainoa asia, joka ei ole hänen hallittavissaan: Mabel.</p><p>Elokuvan on ohjannut Daniel Chong (We Bare Bears), tuottanut Nicole Paradis Grindle (Ihmeperhe 2) ja musiikista vastaa elokuvasäveltäjä Mark Mothersbaugh (Thor: Ragnarök).</p><p>Ikäraja: 7<br>Kesto: 104 min<br>Ensi-ilta: 6.3.2026<br>Elokuva on puhuttu suomeksi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Operaatio Majava (7) – Kino Helios", "sv": "Operaatio Majava (7) – Kino Helios", "en": "Operaatio Majava (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67383/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67490", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/event/puhelinlangat-laulaa-musiikkinaeytelmae-malmitalo-20915292/", "sv": "https://www.lippu.fi/event/puhelinlangat-laulaa-musiikkinaeytelmae-malmitalo-20915292/", "en": "https://www.lippu.fi/event/puhelinlangat-laulaa-musiikkinaeytelmae-malmitalo-20915292/" }, "description": null, "price": { "fi": "40,90€/38,90€", "sv": "40,90€/38,90€", "en": "40,90€/38,90€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494065, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:53.282659Z", "last_modified_time": "2025-12-04T12:12:53.282678Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781548.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494065/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:53.212795Z", "last_modified_time": "2026-03-20T01:13:41.500133Z", "date_published": null, "start_time": "2026-03-20T16: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, "short_description": { "fi": "Eräänä päivänä itse Katri Helena on tulossa synnyinpitäjäänsä Tohmajärvelle.", "sv": "En dag är självaste Katri Helena på väg till sin födelseort Tohmajärvi.", "en": "One day, Katri Helena herself is on her way to her birthplace, Tohmajärvi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B4DA26127EE595CBAB6F539F55B42112/Puhelinlangat_laulaa_Musiikkinaytelma", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B4DA26127EE595CBAB6F539F55B42112/Puhelinlangat_laulaa-musikal", "en": "http://www.malmitalo.fi/en/events/event/B4DA26127EE595CBAB6F539F55B42112/Puhelinlangat_laulaa_Musical_play" }, "description": { "fi": "<p>Eräänä päivänä itse Katri Helena on tulossa synnyinpitäjäänsä Tohmajärvelle.</p><p>Katri Helenalle on päätetty nimetä katu hänen elämäntyönsä kunniaksi. Matkalla Katri Helena poikkeaa pikaisesti paikallisessa Unionin huoltamossa. Alkaa tapahtumasarja, jossa Katri Helenan ikivihreät suosikkilaulut ja elämänsä koskettavimmat kohdat siivittävät juonenkäänteitä. Samaan aikaan paikallisen huoltamon tapahtumat hämmentävät soppaa niin, että syntyy nauruhermoja kutkuttava<br>ikimuistoinen nenäliinatkin esiin kutsuva farssikomediallinen tanssi, josta riittää muisteltavaa vielä pitkään!</p><p>Musiikkinäytelmässä saamme nauttia upeista Katri-Helenan levyttämistä lauluista muun muassa Kesän lapsi, Kai laulaa saan, Mun sydämeni tänne<br>jää, Katson autiota hiekkarantaa, Anna mulle tähtitaivas, Minne tuuli kuljettaa ym.</p><p>ROOLEISSA: Susanna Heikki, Teijo Lindström, Kalle Jussila, Katja Karisukki<br>MUSIIKISSA: Quattro-orkesteri<br>KÄSIKIRJOITUS: Katja Karisukki<br>OHJAUS: Tuomo Salmela<br>TUOTANTO: Viihdeohjelmat</p><p>Kesto: 2 t, sis. 30 min väliajan</p>", "sv": "<p>En dag är självaste Katri Helena på väg till sin födelseort Tohmajärvi.</p><p>Det har beslutats att en gata ska namnges efter Katri Helena för att hedra hennes livsverk. På vägen sticker sig Katri Helena snabbt in till den lokala Union-servicestationen. En händelseserie börjar, där Katri Helenas evergreena favoritsånger och de mest berörande skedena i hennes liv sätter sprätt på intrigen. Samtidigt förvirrar händelserna på den lokala servicestationen det hela så att det uppstår en farskomisk dans som retar skrattnerverna och <br>som även kallar fram näsdukarna, och som man kommer ihåg ännu länge!</p><p>I musikalen får vi njuta av fantastiska sånger som Katri Helena spelat in , bland annat Kesän lapsi, Kai laulaa saan, Mun sydämeni tänne <br>jää, Katson autiota hiekkarantaa, Anna mulle tähtitaivas, Minne tuuli kuljettaa etc.</p><p>I ROLLERNA: Susanna Heikki, Teijo Lindström, Kalle Jussila, Katja Karisukki <br>MUSIK: Orkestern Quattro <br>MANUS: Katja Karisukki <br>REGI: Tuomo Salmela <br>PRODUKTION: Viihdeohjelmat Oy</p><p>Längd: 2 h, inklusive en paus på 30 min.</p>", "en": "<p>One day, Katri Helena herself is on her way to her birthplace, Tohmajärvi.</p><p>The town has decided to name a street after Katri Helena in honour of her life's work. On her way, Katri Helena makes a quick stop at the local Union service station. This kickstarts a series of events where most popular evergreen hits by Katri Helena and the most touching moments of her life spice up the storylines. Meanwhile, the events at the local service station put their own interesting twist in the situation, leading to a hilarious <br>and unforgettable farcical comedy dance that will make you pull out your handkerchief and will stay with you for a long time!</p><p>The musical play lets the audience enjoy some wonderful songs recorded by Katri-Helena, including Kesän lapsi, Kai laulaa saan, Mun sydämeni tänne <br>jää, Katson autiota hiekkarantaa, Anna mulle tähtitaivas, Minne tuuli kuljettaa, and many more.</p><p>STARRING: Susanna Heikki, Teijo Lindström, Kalle Jussila, Katja Karisukki <br>MUSIC BY: Quattro orchestra <br>SCRIPT: Katja Karisukki <br>DIRECTED BY: Tuomo Salmela <br>PRODUCTION: Viihdeohjelmat</p><p>Duration: 2 h, incl. a 30-min intermission</p>" }, "name": { "fi": "Puhelinlangat laulaa – Musiikkinäytelmä", "sv": "Puhelinlangat laulaa-musikal", "en": "Puhelinlangat laulaa – Musical play" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67490/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67382", "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-marty-supreme-unelmoi-isosti-malmitalo-21375685/", "sv": "https://www.lippu.fi/event/kino-helios-marty-supreme-unelmoi-isosti-malmitalo-21375685/", "en": "https://www.lippu.fi/event/kino-helios-marty-supreme-unelmoi-isosti-malmitalo-21375685/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1507858, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T09:15:52.187300Z", "last_modified_time": "2026-03-03T09:15:52.187318Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781065.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1507858/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T09:15:52.094950Z", "last_modified_time": "2026-03-20T01:13:41.169985Z", "date_published": null, "start_time": "2026-03-20T16: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, "short_description": { "fi": "Nuori Marty Mauser lähtee tavoittelemaan unelmaa, johon kukaan muu ei usko. Hän on valmis menemään läpi helvetin todistaakseen kaikille – myös itselleen – epäilyt vääriksi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/675189DC1F07AA53FFEBFF72926273BC/Marty_Supreme_unelmoi_isosti_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/675189DC1F07AA53FFEBFF72926273BC/Marty_Supreme_unelmoi_isosti_12_", "en": "http://www.malmitalo.fi/en/events/event/675189DC1F07AA53FFEBFF72926273BC/Marty_Supreme_unelmoi_isosti_12_" }, "description": { "fi": "<p>Nuori Marty Mauser lähtee tavoittelemaan unelmaa, johon kukaan muu ei usko. Hän on valmis menemään läpi helvetin todistaakseen kaikille – myös itselleen – epäilyt vääriksi.</p><p>Josh Safdien ohjaama MARTY SUPREME – UNELMOI ISOSTI elokuvateattereissa 23.1.2026. Pääosissa Timothée Chalamet, Gwyneth Paltrow, Kevin O'Leary, Odessa A’Zion, Abel Ferrara ja Tyler Okonma.</p><p>Ikäraja: 12<br>Kesto: 149 min<br>Ensi-ilta: 23.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p><p>Kino Helioksessa vietetään Oscar-viikkoa 18.–20.3.</p><p>Tuomme valkokankaalle neljä hienoa Oscar ehdokkuuksia kahminutta elokuvaa, joille ennustamme myös palkintoja.</p><p>Keskiviikkona 18.3. on nähtävissä 8 Oscar ehdokkuutta saanut Hamnet klo 15, 4 ehdokkuutta saanut The Secret Agent klo 18 ja perjantaina 20.3. nähdään molemmat 9 Oscar ehdokkuutta saaneet Sentimental Value klo 15 ja Marty Supreme klo 18.</p>" }, "name": { "fi": "Marty Supreme – unelmoi isosti (12) – Kino Helios", "sv": "Marty Supreme – unelmoi isosti (12) – Kino Helios", "en": "Marty Supreme – unelmoi isosti (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67382/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67381", "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-sentimental-value-malmitalo-21375695/", "sv": "https://www.lippu.fi/event/kino-helios-sentimental-value-malmitalo-21375695/", "en": "https://www.lippu.fi/event/kino-helios-sentimental-value-malmitalo-21375695/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1509761, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T13:13:50.282406Z", "last_modified_time": "2026-03-03T13:13:50.282422Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781064.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509761/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T13:13:50.160055Z", "last_modified_time": "2026-03-20T01:13:40.854188Z", "date_published": null, "start_time": "2026-03-20T13: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, "short_description": { "fi": "Siskokset Nora ja Agnes tapaavat pitkän tauon jälkeen isänsä Gustavin, karismaattisen mutta etäisen entisen elokuvaohjaajan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5B4501740D73AF1173964D73996333A8/Sentimental_Value_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5B4501740D73AF1173964D73996333A8/Sentimental_Value_12_", "en": "http://www.malmitalo.fi/en/events/event/5B4501740D73AF1173964D73996333A8/Sentimental_Value_12_" }, "description": { "fi": "<p>Siskokset Nora ja Agnes tapaavat pitkän tauon jälkeen isänsä Gustavin, karismaattisen mutta etäisen entisen elokuvaohjaajan.</p><p>Gustav tarjoaa Noralle, teatterinäyttelijälle, roolin elokuvasta, jonka hän toivoo palauttavan hänen uransa kukoistukseen.</p><p>Kun Nora kieltäytyy, hän saa tietää, että rooli on annettu nuorelle ja innokkaalle Hollywood-tähdelle. Pian sisarusten täytyy selvittää vaikeaa suhdettaan isäänsä ja tulla toimeen amerikkalaisen tähden kanssa, joka sotkeutuu heidän monimutkaisiin perhekuvioihinsa.</p><p>Cannes Grand Prix voittaja Sentimental value -elokuvan on ohjannut Joachim Trier. Pääsosissa Renate Reinsve, Inga Ibsdotter Lilleaas, Stellan Skarsgård ja Elle Fanning.</p><p>Elokuva on saavuttanut huikeat yhdeksän Oscar-ehdokkuutta, mukaan lukien parhaan elokuvan, ohjauksen (Joachim Trier), naispääosan (Renate Reinsve) ja miessivuosan (Stellan Skarsgård) kategorioissa.</p><p>Ikäraja: 12<br>Kesto: 135 min<br>Ensi-ilta: 17.10.2025<br>Tekstitys: suomi, ruotsi</p><p>Kino Helioksessa vietetään Oscar-viikkoa 18.–20.3.</p><p>Tuomme valkokankaalle neljä hienoa Oscar ehdokkuuksia kahminutta elokuvaa, joille ennustamme myös palkintoja.</p><p>Keskiviikkona 18.3. on nähtävissä 8 Oscar ehdokkuutta saanut Hamnet klo 15, 4 ehdokkuutta saanut The Secret Agent klo 18 ja perjantaina 20.3. nähdään molemmat 9 Oscar ehdokkuutta saaneet Sentimental Value klo 15 ja Marty Supreme klo 18.</p>" }, "name": { "fi": "Sentimental Value (12) – Kino Helios", "sv": "Sentimental Value (12) – Kino Helios", "en": "Sentimental Value (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67381/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67703", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:613/?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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494066, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:53.518695Z", "last_modified_time": "2025-12-04T12:12:53.518711Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782448.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494066/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:53.442111Z", "last_modified_time": "2026-03-20T01:13:40.446126Z", "date_published": null, "start_time": "2026-03-19T16: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, "short_description": { "fi": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4987F49CEDA1F10B4F84AF1B34A94F72/Yleison_suosikit_Kesakirja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4987F49CEDA1F10B4F84AF1B34A94F72/Publikens_favoriter_Sommarboken_S_", "en": "http://www.malmitalo.fi/en/events/event/4987F49CEDA1F10B4F84AF1B34A94F72/Audience_Favourites_Summer_Book" }, "description": { "fi": "<p>Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.</p><p>Tove Janssonin rakastettuun Kesäkirja-teokseen perustuva elokuva kertoo maagisen ja elämää kohottavan tarinan Sophia-tytön (Emily Matthews) kesästä isoäidin (Glenn Close) kanssa pikkuisella saarella Suomenlahdella. Sophian isän (Anders Danielsen Lie) surressa puolisonsa kuolemaa meren aallot silittävät kalliota, aurinko paistaa ja puut kasvavat.<br>Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa. Elokuvassa Suomen kesä ja saaristoluonto ovat aidoimmillaan ja kauneimmillaan.<br>Kesto: 95 min<br>Ikäraja: S<br>Kieli: englanti, tekstitetty suomeksi<br>Vapaa pääsy!</p>", "sv": "<p>Filmen som baserar sig på Tove Janssons älskade verk Sommarboken berättar en magisk och livsstigande historia om flickan Sophias (Emily Matthews) sommar tillsammans med mormor (Glenn Close) på en liten ö i Finska viken. När Sophias far (Anders Danielsen Lie) sörjer sin makas död smeker sjövågorna klippan, solen skiner och träden växer.</p><p>Sommarboken är en beskrivning av en liten flickas och en gammal kvinnas vänskap omgiven av en finländsk sommardröm, nära varandra och nära naturen. I filmen är Finlands sommar och skärgårdsnaturen som mest genuin och vacker.<br> <br>Åldersgräns: Tillåten<br>Längd: 95 min.</p><p>Baserar sig på Tove Janssons Sommarboken.</p>", "en": "<p>Based on Tove Jansson's beloved novel The Summer Book, the film tells a magical and life-enhancing story of a girl named Sophia (Emily Matthews) spending the summer with her grandmother (Glenn Close) on a tiny island in the Gulf of Finland. While Sophia's father (Anders Danielsen Lie) mourns the loss of his spouse, the waves gently caress the rocks, the sun shines and the trees grow.</p><p>The Summer Book is a depiction of the friendship between a little girl and an old woman surrounded by the Finnish summer dream, close to each other and nature. The film captures the Finnish summer and archipelago nature at their most authentic and beautiful.<br> <br>Age limit: Suitable for all ages<br>Length: 95 min</p><p>Based on Tove Jansson's Summer Book.</p>" }, "name": { "fi": "Yleisön suosikit: Kesäkirja", "sv": "Publikens favoriter: Sommarboken (S)", "en": "Audience Favourites: Summer Book" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67703/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67562", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/name-21076982", "sv": "https://www.lippu.fi/event/name-21076982", "en": "https://www.lippu.fi/event/name-21076982" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494307, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T10:13:56.964590Z", "last_modified_time": "2025-12-23T10:13:56.964605Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781729.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494307/?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:13:56.821784Z", "last_modified_time": "2026-03-20T01:13:40.288723Z", "date_published": null, "start_time": "2026-03-19T15:30:00Z", "end_time": "2026-03-19T16:15: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, "short_description": { "fi": "Tanssi, miimi ja akrobatia kietoutuvat esityksessä, joka kertoo unelmista, muistoista ja vaihtoehtoisista todellisuuksista!", "sv": "Dans, mim och akrobatik möts i en föreställning om drömmar, minnen och parallella verkligheter!", "en": "Dance, mime and acrobatics intertwine in a performance about dreams, memories and parallel realities!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0B3FCE3CDC9DF01953B70BEEBB163531/Claire_Parsons_Co_Dust_Ruotsi_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0B3FCE3CDC9DF01953B70BEEBB163531/Claire_Parsons_Co_Dust_Ruotsi_", "en": "http://www.malmitalo.fi/en/events/event/0B3FCE3CDC9DF01953B70BEEBB163531/Claire_Parsons_Co_Dust_Ruotsi_" }, "description": { "fi": "<p>Tanssi, miimi ja akrobatia kietoutuvat esityksessä, joka kertoo unelmista, muistoista ja vaihtoehtoisista todellisuuksista!</p><p>Onko huonekaluilla tunteita? Voiko pölyn nähdä?</p><p>Dust (suomeksi pöly) on fiktiivinen tarina, joka yhdistää leikkisästi muistoja, maagista realismia, pehmeää sirkusta ja akrobatiaa. Näyttämö on toisinaan aivan ylösalaisin kun kolme esiintyjää matkustaa läpi maailman, jossa jotakin erikoista on tapahtunut; esineet liikkuvat omillaan ja musiikki tanssii. Seikkailu etenee ihastuttavan oudoilla ja ihmeellisillä tavoilla.</p><p>Koreografia ja näyttämöllepano: Claire Parsons ja ensemble<br>Esiintyjät 2024/2025: Mira Björkman, Viktor Gyllenberg, Simon Wiborn, Marula Bröckerhoff, Linn Ragnarsson, Matthes Speidel</p><p>Skenografia: Anna Nyberg<br>Pukusuunnittelu ja ompelu: Matilda Hyttsten<br>Ompelu: Pia Gyll, Bitte Palm<br>Valosuunnittelu: Christian Farcher<br>Musiikki ja äänisuunnittelu: Mikael Svanevik<br>Hiukset, peruukit, naamiointi: Angelica Ekeberg, Theresia Frisk<br>Tuottaja: Lena Yngvesson<br>Valokuvaus: Linda Himsel<br>Video: Marc Davin</p><p>Kesto: n. 45 min<br>Ikäsuositus: 6+<br>Kieli: sanaton</p>", "sv": "<p>Dans, mim och akrobatik möts i en föreställning om drömmar, minnen och parallella verkligheter!</p><p>Puder är sammanhang, minnen, förnimmelser och påminnelser. Magisk realism möter sång, dans, kropp och påståenden. PUDER är en utflykt till en plats där rummet rör sig och rörelsen sjunger. Det oväntade får huvudrollen.</p><p>Puder undersöker parallella verkligheter i en lekpark där dans, mim, akrobatik och det däremellan möts. En föreställning inspirerad av den franske filosofen Gaston Bachelards idéer om drömmar och rumslighet.<br> <br>En scenkonstupplevelse för alla från 6 år.</p><p>Premiär 23 november 2023 på Lokstallarna i Karlshamn, i samarbete med Regionteatern Blekinge Kronoberg.<br>Ordlös</p><p>För alla från 6 år.</p>", "en": "<p>Dance, mime and acrobatics intertwine in a performance about dreams, memories and parallel realities!</p><p>Does furniture have feelings? Can you see the dust? Dust is a fictional tale in a playful mix of memory and tactility, magical realism, soft circus and acrobatics, in an upside and sometimes sideways viewed space. Three performers travel through a world where something has happened; objects move and music dances in an adventure that transfers in delightfully strange and wondrous ways.</p><p>A performance that challenges the fictional with a poetic truth or two, to see if this space is a true place, if furniture has feelings and if you can see the dust.</p><p>Premiere: 23 November 2023 at Lokstallarna, Karlshamn, in collaboration with Regionteatern Blekinge Kronoberg</p><p>Non-verbal<br>For everyone aged 6 and above!</p><p>Choreography & staging: Claire Parsons with ensemble<br>Performers 2024/2025: Mira Björkman, Viktor Gyllenberg, Simon Wiborn, Marula Bröckerhoff, Linn Ragnarsson, Matthes Speidel<br>Scenography: Anna Nyberg<br>Costumes and tailoring: Matilda Hyttsten<br>Tailoring: Pia Gyll, Bitte Palm<br>Lighting design: Christian Farcher<br>Music and sound design: Mikael Svanevik<br>Hair, wigs and makeup: Angelica Ekeberg, Theresia Frisk<br>Producer: Lena Yngvesson<br>Photo: Linda Himsel<br>Video: Marc Davin</p>" }, "name": { "fi": "Claire Parsons Co: Dust (Ruotsi) – Bravo!-festivaali", "sv": "Claire Parsons Co: Dust (Ruotsi) – Bravo!-festival", "en": "Claire Parsons Co: Dust (Ruotsi) – Bravo!-festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67562/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68210", "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: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:732/?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:p39924/?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": 1600642, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-12T13:13:55.968123Z", "last_modified_time": "2026-03-12T13:13:55.968138Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786237.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1600642/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-12T13:13:55.832220Z", "last_modified_time": "2026-03-20T01:13:40.160967Z", "date_published": null, "start_time": "2026-03-19T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5B124D93D00587C0AE2AA330692621A4/Art_Thinking_Workshop", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5B124D93D00587C0AE2AA330692621A4/Art_Thinking_Workshop", "en": "http://www.malmitalo.fi/en/events/event/5B124D93D00587C0AE2AA330692621A4/_Art_Thinking_Workshop" }, "description": { "fi": "<p>Welcome to an art & thinking workshop where we will explore Alex Markwith’s exhibition “Intersections” at Malmitalo Gallery. The evening will start with a conversation about one of the artworks, facilitated by philosophical practitioner Elizaveta Bomash. The dialogue continues in a form of a Q&A with the artist, Alex Markwith. During the session, we’ll think together about art and the themes it evokes in us by asking questions, examining answers, and interpreting like a group of art detectives.</p><p>What to expect:<br>- Guided discussion using Socratic questioning method<br>- Fun way to sharpen your thinking skills<br>- New way of interacting with art and your own thoughts</p><p>No experience needed, just curiosity and an open mind.</p><p>The gallery is open until 20.00 and after the workshop, you can continue exploring other pieces in the exhibition.</p><p>The workshop takes about one and a half hours, from 17:30 to 19:00.</p><p>Free admission. Please RSVP by e-mail: lisabomash (at) gmail.com Welcome!</p>", "en": "<p>Welcome to an art & thinking workshop where we will explore Alex Markwith’s exhibition “Intersections” at Malmitalo Gallery. The evening will start with a conversation about one of the artworks, facilitated by philosophical practitioner Elizaveta Bomash. The dialogue continues in a form of a Q&A with the artist, Alex Markwith. During the session, we’ll think together about art and the themes it evokes in us by asking questions, examining answers, and interpreting like a group of art detectives.</p><p>What to expect:<br>- Guided discussion using Socratic questioning method<br>- Fun way to sharpen your thinking skills<br>- New way of interacting with art and your own thoughts</p><p>No experience needed, just curiosity and an open mind.</p><p>The gallery is open until 20.00 and after the workshop, you can continue exploring other pieces in the exhibition.</p><p>The workshop takes about one and a half hours, from 17:30 to 19:00.</p><p>Free admission. Please RSVP by e-mail: lisabomash (at) gmail.com Welcome!</p>" }, "name": { "fi": "Art & Thinking Workshop", "sv": "Art & Thinking Workshop", "en": "Art & Thinking Workshop" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68210/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67702", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-kalevala-kullervon-tarina-4074272/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-kalevala-kullervon-tarina-4074272/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-kalevala-kullervon-tarina-4074272/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494573, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T14:14:07.339550Z", "last_modified_time": "2026-01-20T14:14:07.339607Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782446.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494573/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2026-01-20T14:14:07.202475Z", "last_modified_time": "2026-03-20T01:13:39.768399Z", "date_published": null, "start_time": "2026-03-19T11: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, "short_description": { "fi": "Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.", "sv": "I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden.", "en": "Designed for seniors, HopeaCine’s programme features new Finnish films once a month." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F0DBDC03EFE37E29544CE1AFC84999FD/HopeaCine_Kalevala_Kullervon_tarina_tekijavieras_nayttelija_Elias_Salonen", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F0DBDC03EFE37E29544CE1AFC84999FD/HopeaCine_Kalevala_Kullervon_tarina_gastande_filmskapare_skadespelare_Elias_Salonen", "en": "http://www.malmitalo.fi/en/events/event/F0DBDC03EFE37E29544CE1AFC84999FD/HopeaCine_Kalevala_The_story_of_Kullervo_author_guest_actor_Elias_Salonen" }, "description": { "fi": "<p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.</p><p>Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi. HopeaCine näytökset löydät myös Cinema Orionista ja Vuotalolta.</p><p>Antti J. Jokisen ja Jorma Tommilan käsikirjoittama historiallinen ja toiminnallinen draamaelokuva on saanut inspiraationsa Kalevalasta.</p><p>Kullervon tarinan pääosassa nähdään Elias Salonen ja toista pääroolia Untamoa näyttelee Jussi-palkittu Eero Aho. Muissa rooleissa ovat muun muassa Ilkka Koivula (Wäinö), Olli Rahkonen (Ilmarinen), Krista Kosonen (Kerttu), Johannes Holopainen (Kalervo), Oona Airola (Marjatta) ja Ronja Orasta (Aino).</p><p>Elokuva käsittelee armoa, merkityksellisen elämän kaipuuta ja itsensä löytämistä sekä koston, mutta myös oman perheen rakastamisen teemoja. Sen selkärangan muodostavat suomalainen luonto, vanhanajan heimosota, muinaiset myytit ja kalevalainen mytologia.</p><p>Ikäraja: 16<br>Kesto: 143 min<br>Ensi-ilta: 16.01.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>", "sv": "<p>I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden.</p><p>Till varje föreställning bjuds filmskapare eller filmexperter in som gäster, som efter föreställningen berättar om processen för att göra filmen och erbjuder nytt att tänka på för att fördjupa filmvisningen. HopeaCine-föreställningarna finns även på Cinema Orion och Nordhuset.</p><p>Manuskriptet till den historiska och actionfyllda dramafilmen är skriven av Antti J. Jokinen och Jorma Tommila och är inspirerad av Kalevala.</p><p>I Kullervon tarina spelar Elias Salonen huvudrollen och den andra huvudrollen, Untamo, spelas av Eero Aho, som tidigare prisbelönts med Jussi-priset. Övriga roller spelas av Ilkka Koivula (Wäinö), Olli Rahkonen (Ilmarinen), Krista Kosonen (Kerttu), Johannes Holopainen (Kalervo), Oona Airola (Marjatta) och Ronja Orasta (Aino).</p><p>Filmen behandlar teman som barmhärtighet, längtan efter ett meningsfullt liv och självupptäckt, samt hämnd, men också kärleken till den egna familjen. Dess grund består av den finska naturen, forntida stamkrig, gamla myter och Kalevala-mytologin.</p><p>Längd: 143 min<br>Åldersgräns: 16</p>", "en": "<p>Designed for seniors, HopeaCine’s programme features new Finnish films once a month.</p><p>Each screening invites filmmakers or film experts as guests, who will discuss the filmmaking process and offer fresh insights to deepen the viewing experience after the film. HopeaCine screenings are also shown at Cinema Orion and Vuotalo.</p><p>Written by Antti J. Jokinen and Jorma Tommila, the historical and action drama film is inspired by the Kalevala.</p><p>The Story of Kullervo stars Elias Salonen in the lead role and Jussi award-winner Eero Aho in the second lead role of Untamo. Other roles feature Ilkka Koivula (Wäinö), Olli Rahkonen (Ilmarinen), Krista Kosonen (Kerttu), Johannes Holopainen (Kalervo), Oona Airola (Marjatta) and Ronja Orasta (Aino).</p><p>The film deals with the themes of mercy, a longing for a meaningful life, self-discovery and revenge, but also loving your own family. The story is built upon Finnish nature, ancient tribal warfare, ancient myths and Kalevala mythology.</p><p>Duration: 143 min<br>Age limit: 16</p>" }, "name": { "fi": "HopeaCine: Kalevala: Kullervon tarina + tekijävieras näyttelijä Elias Salonen", "sv": "HopeaCine: Kalevala: Kullervon tarina + gästande filmskapare skådespelare Elias Salonen", "en": "HopeaCine: Kalevala: The story of Kullervo + author guest actor Elias Salonen" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67702/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67489", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/artist/alvin-youngblood/alvin-youngblood-harts-muscle-theory-usa-4030127/", "sv": "https://www.lippu.fi/artist/alvin-youngblood/alvin-youngblood-harts-muscle-theory-usa-4030127/", "en": "https://www.lippu.fi/artist/alvin-youngblood/alvin-youngblood-harts-muscle-theory-usa-4030127/" }, "description": null, "price": { "fi": "29,90€-42,90€", "sv": "29,90€-42,90€", "en": "29,90€-42,90€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494064, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:53.047655Z", "last_modified_time": "2025-12-04T12:12:53.047670Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781546.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494064/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:52.959656Z", "last_modified_time": "2026-03-20T01:13:38.900624Z", "date_published": null, "start_time": "2026-03-18T17: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, "short_description": { "fi": "Grammy-voittaja Alvin Youngblood Hart on yhdysvaltalainen bluesin ja roots-musiikin mestari, jota arvostetaan “muusikoiden muusikkona”.", "sv": "Grammy-vinnaren Alvin Youngblood Hart är en amerikansk mästare inom blues- och rootsmusik, värdesatt som ”musikernas musiker\".", "en": "Grammy winner Alvin Youngblood Hart is a master of blues and roots music from the United States, revered as a ‘musician's musician’." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1A6E0A75BD0D9E6C3A98D21FFB44D2C1/Alvin_Youngblood_Hart_s_Muscle_Theory_USA_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1A6E0A75BD0D9E6C3A98D21FFB44D2C1/Alvin_Youngblood_Hart_s_Muscle_Theory_USA_", "en": "http://www.malmitalo.fi/en/events/event/1A6E0A75BD0D9E6C3A98D21FFB44D2C1/Alvin_Youngblood_Hart_s_Muscle_Theory_USA_" }, "description": { "fi": "<p>Grammy-voittaja Alvin Youngblood Hart on yhdysvaltalainen bluesin ja roots-musiikin mestari, jota arvostetaan “muusikoiden muusikkona”.</p><p>Hän yhdistelee Mississippi-bluesin juuria, 70-luvun rockia ja amerikkalaisen kansanmusiikin vivahteita ainutlaatuisella tavalla. Hartin soitossa kuuluu sekä perinteiden kunnioitus että peloton halu kokeilla uutta — hän on artisti, joka saa sekä akustisen että sähköisen musiikin elämään raakana ja aidon sielukkaana.</p><p>Malmitalolla hän esiintyy trionsa Muscle Theoryn kanssa. Luvassa on kovan luokan musiikkielämys!</p><p>Taj Mahal on sanonut hänestä: <br>“The boy has got thunder in his hands.”</p><p>Kesto: 1 t 30min</p>", "sv": "<p>Grammy-vinnaren Alvin Youngblood Hart är en amerikansk mästare inom blues- och rootsmusik, värdesatt som ”musikernas musiker\".</p><p>Han kombinerar sina Mississippi-bluesrötter, 70-tals rock och nyanser av amerikansk folkmusik på ett unikt sätt. Harts spelning omfattar både respekt för traditioner och en orädd vilja att pröva nytt – han är en artist som får både den akustiska och elektroniska musiken att leva som grym och genuint själfull.</p><p>Han uppträder tillsammans med sin trio Muscle Theory på Malms kulturhus. En tuff musikalisk upplevelse utlovas!</p><p>Taj Mahal har sagt följande om honom: <br>“The boy has got thunder in his hands.”</p><p>Längd: 1 h 30 min</p>", "en": "<p>Grammy winner Alvin Youngblood Hart is a master of blues and roots music from the United States, revered as a ‘musician's musician’.</p><p>He combines the roots of Mississippi blues, 70s rock and American folk music in a unique way. Hart's playing features both a respect for tradition and a fearless willingness to try something new – he is an artist who brings both acoustic and electronic music to life with a raw and genuine soul.</p><p>At Malmitalo, he will perform with his trio Muscle Theory. The night will bring an amazing musical experience!</p><p>In the words of American musician Taj Mahal: <br>“The boy has got thunder in his hands.”</p><p>Duration: 1 hour 30 min</p>" }, "name": { "fi": "Alvin Youngblood Hart's Muscle Theory (USA)", "sv": "Alvin Youngblood Hart's Muscle Theory (USA)", "en": "Alvin Youngblood Hart's Muscle Theory (USA)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67489/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67380", "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-the-secret-agent-malmitalo-21375692/", "sv": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375692/", "en": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375692/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1509760, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T13:13:49.154062Z", "last_modified_time": "2026-03-03T13:13:49.154080Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781062.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509760/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T13:13:48.949450Z", "last_modified_time": "2026-03-20T01:13:38.243024Z", "date_published": null, "start_time": "2026-03-18T16: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, "short_description": { "fi": "Neljän Oscarin ehdokas The Secret Agent on omaperäinen ja mustan komedian sävyttämä trilleri." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D9906D9351FCA0186ADCEACA2D12061E/The_Secret_Agent_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D9906D9351FCA0186ADCEACA2D12061E/The_Secret_Agent_16_", "en": "http://www.malmitalo.fi/en/events/event/D9906D9351FCA0186ADCEACA2D12061E/The_Secret_Agent_16_" }, "description": { "fi": "<p>Neljän Oscarin ehdokas The Secret Agent on omaperäinen ja mustan komedian sävyttämä trilleri.</p><p>The Secret Agent palkittiin 2026 Golden Globes -gaalassa parhaan vieraskielisen elokuvan palkinnolla ja pääosanesittäjä Wagner Moura parhaan miesnäyttelijän palkinnolla.</p><p>Vuoden 2025 Cannesin elokuvajuhlilla parhaasta ohjauksesta (Kleber Mendonça Filho) ja miespääosasta (Wagner Moura) palkittu The Secret Agent on omaperäinen poliittinen trilleri. Eletään riehakasta karnevaaliviikkoa vuonna 1977 Brasiliassa.</p><p>Salaperäistä menneisyyttään pakeneva teknologia-asiantuntija Marcelo (Moura) palaa kotikaupunkiinsa etsimään rauhaa, samalla toivoen tapaavansa jälleen poikansa.</p><p>Hän löytää suojapaikan vastarintaliikkeen kommuunista, mutta huomaa pian, että kaupunki on yhtä eläväinen kuin väkivaltainenkin. Marcelo ajautuu tahtomattaan keskelle poliittista kuohuntaa.</p><p>Oivaltavasti eri lajityyppejä yhdistelevä, auringon paahtama elokuva on ohjaaja Filhon kunnianosoitus elokuvataiteelle ja Brasilialle. Elokuva on Brasilian virallinen ehdokas Oscar-kisaan.</p><p>Ikäraja: 16<br>Kesto: 161 min<br>Ensi-ilta: 20.2.2026<br>Tekstitys: suomi, ruotsi</p><p>Kino Helioksessa vietetään Oscar-viikkoa 18.–20.3.</p><p>Tuomme valkokankaalle neljä hienoa Oscar ehdokkuuksia kahminutta elokuvaa, joille ennustamme myös palkintoja.</p><p>Keskiviikkona 18.3. on nähtävissä 8 Oscar ehdokkuutta saanut Hamnet klo 15, 4 ehdokkuutta saanut The Secret Agent klo 18 ja perjantaina 20.3. nähdään molemmat 9 Oscar ehdokkuutta saaneet Sentimental Value klo 15 ja Marty Supreme klo 18.</p>" }, "name": { "fi": "The Secret Agent (16) – Kino Helios", "sv": "The Secret Agent (16) – Kino Helios", "en": "The Secret Agent (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67380/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67379", "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/artist/kino-helios/kino-helios-hamnet-4102130/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-hamnet-4102130/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-hamnet-4102130/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1507856, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T09:15:40.020268Z", "last_modified_time": "2026-03-03T09:15:40.020285Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781061.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1507856/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T09:15:39.877075Z", "last_modified_time": "2026-03-20T01:13:38.101775Z", "date_published": null, "start_time": "2026-03-18T13: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, "short_description": { "fi": "Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0C5C583BB51AFDEA998866EC1BA150DA/Hamnet_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0C5C583BB51AFDEA998866EC1BA150DA/Hamnet_12_", "en": "http://www.malmitalo.fi/en/events/event/0C5C583BB51AFDEA998866EC1BA150DA/Hamnet_12_" }, "description": { "fi": "<p>Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä.</p><p>Elokuva palkittiin kahdella Golden Globe -palkinnolla: paras elokuva ja paras naispääosa (Jessie Buckley).</p><p>Ikäraja: 12<br>Kesto: 126 min<br>Ensi-ilta: 30.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p><p>Kino Helioksessa vietetään Oscar-viikkoa 18.–20.3.2026.</p><p>Tuomme valkokankaalle neljä hienoa Oscar ehdokkuuksia kahminutta elokuvaa, joille ennustamme myös palkintoja.</p><p>Keskiviikkona 18.3. on nähtävissä 8 Oscar ehdokkuutta saanut Hamnet klo 15, 4 ehdokkuutta saanut The Secret Agent klo 18 ja perjantaina 20.3. nähdään molemmat 9 Oscar ehdokkuutta saaneet Sentimental Value klo 15 ja Marty Supreme klo 18.</p>" }, "name": { "fi": "Hamnet (12) – Kino Helios", "sv": "Hamnet (12) – Kino Helios", "en": "Hamnet (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67379/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67960", "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:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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/derek-mitchell-double-dutch-two-malmitalo-21344083/", "sv": "https://www.lippu.fi/event/derek-mitchell-double-dutch-two-malmitalo-21344083/", "en": "https://www.lippu.fi/event/derek-mitchell-double-dutch-two-malmitalo-21344083/" }, "description": null, "price": { "fi": "35,90 € / 24,80 €", "sv": "35,90 € / 24,80 €", "en": "35,90 € / 24,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494463, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-13T11:13:17.624110Z", "last_modified_time": "2026-01-13T11:13:17.624126Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783793.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494463/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-13T11:13:17.513606Z", "last_modified_time": "2026-03-20T01:13:37.533046Z", "date_published": null, "start_time": "2026-03-17T17:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Suosittua @letsdoubledutch-tiliä pitävän koomikon Derek Mitchellin upouusi esitys.", "sv": "Den splitternya liveshowen av Derek Mitchell, komiker och viral kreatör av @letsdoubledutch.", "en": "The brand-new live show from Derek Mitchell, comedian and viral creator behind @letsdoubledutch." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E302DD18AD5329B4878668377DE43CFD/Double_Dutch_Two", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E302DD18AD5329B4878668377DE43CFD/Double_Dutch_Two", "en": "http://www.malmitalo.fi/en/events/event/E302DD18AD5329B4878668377DE43CFD/Double_Dutch_Two" }, "description": { "fi": "<p>Suosittua @letsdoubledutch-tiliä pitävän koomikon Derek Mitchellin upouusi esitys.</p><p>Derek esitti ensimmäistä Double Dutch: Live -esitystään sadoissa loppuunmyydyissä saleissa kymmenilletuhansille ihmisille ympäri maailmaa – ja nyt hän palaa lavoille jatko-osassa, joka on entistä syvällisempi ja entistä hauskempi.</p><p>Derekin verkkosisällöillä on miltei miljoona seuraajaa ja yli puoli miljardia katselukertaa, ja hänen terävillä hahmoillaan ja satiirisilla näkemyksillään hollantilaisesta, brittiläisestä ja pohjoisamerikkalaisesta kulttuurista onkin maailmanlaajuinen fanikunta. Double Dutch: Two on kuitenkin jotakin hieman erilaista. Tällä kertaa mennään henkilökohtaisuuksiin.</p><p>Esitys käsittelee kulttuurienvälistä elämää, hollantilaiseen kulttuuriin naimista ja merkityksen löytämistä nykyelämän kaaoksesta. Se käsittelee yksinäisyyttä ja yhteyttä. Ja onhan se myös tosi hauska.</p><p>Double Dutch: Two sisältää hahmoja, tarinoita ja stand-up-komiikkaa ja tarjoilee yleisölle iloisen illan, joka yhdistää ihmisiä paremmin kuin yksikään some-syöte.</p><p>Ikärajasuositus: 16 vuotta<br>Kieli: englanti<br>Kesto: 1 t 30 min, sisältäen 15 min väliajan</p>", "sv": "<p>Den splitternya liveshowen av Derek Mitchell, komiker och viral kreatör av @letsdoubledutch.</p><p>Efter hundratals utsålda föreställningar av succédebuten Double Dutch: Live – som setts av tiotusentals människor över hela världen – återvänder Derek med en uppföljare som går djupare och är fylld med ännu mer skratt.</p><p>Med nästan en miljon följare och över en halv miljard visningar på nätet har Derek byggt upp en global fanbase med sina knivskarpa karaktärer och satiriska betraktelser av holländsk, brittisk och nordamerikansk kultur. Men Double Dutch: Two är annorlunda. Den här gången är det personligt.</p><p>Det är en show om livet mellan kulturer, att gifta sig in i holländskhet och att hitta mening i det moderna livets röra. Det handlar om ensamhet och samhörighet. Och ja, det är också väldigt roligt.</p><p>Med karaktärer, berättelser och standup är Double Dutch: Two en glädjefylld kväll som för samman människor på ett sätt som inget socialt flöde någonsin kunde.</p><p>Rekommenderad åldersgräns: 16 år</p><p>Evenemangets längd: 1 timme och 30 minuter, inklusive 15 minuters paus</p>", "en": "<p>The brand-new live show from Derek Mitchell, comedian and viral creator behind @letsdoubledutch.</p><p>After hundreds of sold-out performances of his hit debut Double Dutch: Live – seen by tens of thousands around the world – Derek returns with a follow-up that goes deeper and is packed with even more laughs.</p><p>With nearly a million followers and over half a billion views online, Derek has built a global fanbase through his whip-smart characters and satirical takes on Dutch, British and North American cultures. But Double Dutch: Two is something different. This time, it’s personal.</p><p>It’s a show about life between cultures, marrying into Dutchness, and finding meaning in the mess of modern life. It’s about loneliness and connection. And yes, it’s also very funny.</p><p>Featuring characters, stories and stand-up, Double Dutch: Two is a joyful night that brings people together in a way no social feed ever could.</p><p>Age limit recommendation: 16 years</p><p>Duration of event: 1h 30min, including 15min intermission</p>" }, "name": { "fi": "Double Dutch: Two", "sv": "Double Dutch: Two", "en": "Double Dutch: Two" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67960/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67378", "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-kaunis-rietas-onnellinen-malmitalo-21375681/", "sv": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21375681/", "en": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21375681/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1506903, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T07:14:16.161974Z", "last_modified_time": "2026-03-03T07:14:16.161989Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781059.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1506903/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T07:14:16.058642Z", "last_modified_time": "2026-03-20T01:13:35.783358Z", "date_published": null, "start_time": "2026-03-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DD2FA9C2E53C7F08A14A91405D98E675/Kaunis_rietas_onnellinen_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/DD2FA9C2E53C7F08A14A91405D98E675/Kaunis_rietas_onnellinen_12_", "en": "http://www.malmitalo.fi/en/events/event/DD2FA9C2E53C7F08A14A91405D98E675/Kaunis_rietas_onnellinen_12_" }, "description": { "fi": "<p>Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi.</p><p>Elokuva on voimakas tarina yhdestä Suomen suurimmista artisteista, jonka musiikki on lohduttanut ja voimaannuttanut jo sukupolvien ajan.</p><p>Pianistipuoliso Markku näkee hänen lahjansa kirkkaammin kuin kukaan muu.</p><p>Menestys ei tule kuitenkaan ilman sisäistä taistelua. Isän menetyksen mukanaan tuoma suru pysäyttää Kaijan ja saa hänet luopumaan hetkellisesti unelmistaan.</p><p>Kun yllättävä jättisuosio nostaa Kaijan supertähdeksi, hänen on kohdattava paitsi menestyksen varjot, myös löydettävä oma äänensä – jotta hänen on mahdollista nousta lavalle vapaampana kuin koskaan.</p><p>Solar Filmsin tuottaman elokuvan on ohjannut Selma Vilhunen ja sen pääosissa nähdään Oona Airola ja Jari Virman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 18.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kaunis rietas onnellinen (12) – Kino Helios", "sv": "Kaunis rietas onnellinen (12) – Kino Helios", "en": "Kaunis rietas onnellinen (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67378/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67377", "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-operaatio-majava-malmitalo-21375689/", "sv": "https://www.lippu.fi/event/kino-helios-operaatio-majava-malmitalo-21375689/", "en": "https://www.lippu.fi/event/kino-helios-operaatio-majava-malmitalo-21375689/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1508810, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T11:13:26.359310Z", "last_modified_time": "2026-03-03T11:13:26.359328Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781058.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1508810/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T11:13:26.227549Z", "last_modified_time": "2026-03-20T01:13:35.347438Z", "date_published": null, "start_time": "2026-03-14T13: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, "short_description": { "fi": "Uudessa Disneyn ja Pixarin animaatiokomediassa Operaatio Majava tutustutaan eläinrakkaaseen tyttöön nimeltä Mabel (Piper Curda), joka tarttuu uuden tekniikan suomaan tilaisuuteen hyppäyttää itsensä aivan aidonoloiseen robottimajavan hahmoon ja jutella suoraan eläinten kanssa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0848E2FE49C99907F5ACE00C62E01333/Operaatio_Majava_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0848E2FE49C99907F5ACE00C62E01333/Operaatio_Majava_7_", "en": "http://www.malmitalo.fi/en/events/event/0848E2FE49C99907F5ACE00C62E01333/Operaatio_Majava_7_" }, "description": { "fi": "<p>Uudessa Disneyn ja Pixarin animaatiokomediassa Operaatio Majava tutustutaan eläinrakkaaseen tyttöön nimeltä Mabel (Piper Curda), joka tarttuu uuden tekniikan suomaan tilaisuuteen hyppäyttää itsensä aivan aidonoloiseen robottimajavan hahmoon ja jutella suoraan eläinten kanssa.</p><p>Mullistavan teknologian avulla Mabel saa selville eläinmaailman arvoituksia, joita ei olisi voinut kuvitellakaan.</p><p>Majavalan pormestarinvaaleissa uudelleenvalintaa tavoitteleva poliitikko Jerryn moitteettomasti muotoillun kuontalon alla on yhtä sliipatulla julkikuvalla varustettu persoona, jolta palaa hermo, kun vastaan asettuu ainoa asia, joka ei ole hänen hallittavissaan: Mabel.</p><p>Elokuvan on ohjannut Daniel Chong (We Bare Bears), tuottanut Nicole Paradis Grindle (Ihmeperhe 2) ja musiikista vastaa elokuvasäveltäjä Mark Mothersbaugh (Thor: Ragnarök).</p><p>Ikäraja: 7<br>Kesto: 104 min<br>Ensi-ilta: 6.3.2026<br>Elokuva on puhuttu suomeksi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Operaatio Majava (7) – Kino Helios", "sv": "Operaatio Majava (7) – Kino Helios", "en": "Operaatio Majava (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67377/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67561", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/name-21076663", "sv": "https://www.lippu.fi/event/name-21076663", "en": "https://www.lippu.fi/event/name-21076663" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494306, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T10:13:55.786625Z", "last_modified_time": "2025-12-23T10:13:55.786641Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781727.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494306/?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:13:55.649846Z", "last_modified_time": "2026-03-20T01:13:34.898698Z", "date_published": null, "start_time": "2026-03-14T13: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, "short_description": { "fi": "Ilmassa on suuren urheilujuhlan tuntua! Tässä teatteri- ja tanssiesityksessä lapset pääsevät mukaan leikkimieliseen kisailuun.", "sv": "Stämningen är som på ett stort idrottsevenemang! I denna teater- och dansföreställning kan barnen delta i en lekfull tävling.", "en": "A sense of a great sporting event is in the air! This theatre and dance performance allows children to join a playful competition." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/08B8A1D39DC9DC106CD21B7490C6F943/No_Shoes_Theatre_Which_one_Liettua_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/08B8A1D39DC9DC106CD21B7490C6F943/No_Shoes_Theatre_Which_one_Litauen_", "en": "http://www.malmitalo.fi/en/events/event/08B8A1D39DC9DC106CD21B7490C6F943/No_Shoes_Theatre_Which_one_Lithuania_" }, "description": { "fi": "<p>Ilmassa on suuren urheilujuhlan tuntua! Tässä teatteri- ja tanssiesityksessä lapset pääsevät mukaan leikkimieliseen kisailuun.</p><p>Kuka on fani, kuka tuomari, kuka osallistuu kisaan? Urheilun ja tanssin maailmaa yhdistävä hauska esitys pohtii keskinäistä kilpailua, tappion hyväksymistä, ystävyyttä ja toivon ylläpitämistä lempeillä tavoilla. Hulvaton livemusiikki takaa, että tunnelma on katossa.<br> <br>Liettualainen No Shoes Theatre on perustettu 2020 ja tunnettu interaktiivisista, moniaistisista liiketeatteriesityksistään. Teatterin esityksissä yleisö on valokeilassa ja kutsuttu mukaan toimintaan.</p><p>Ohjaaja: Ieva Jackevičiūtė<br>Esiintyjät: Raimondas Klezys, Sebastiano Geronimo<br>Musiikki: Matas Saladžius<br>Musiikot / orkesteri: Kedrostuburas<br>Skenografia, puvustus: Indrė Pačėsaitė</p><p>Kesto: n. 45 min<br>Ikäsuositus: 6–12 v. perheineen<br>Kieli: sanaton</p><p>Bravo! -festivaali<br>Bravo! Kansainvälinen esittävän taiteen festivaali lapsille ja nuorille valloittaa pääkaupunkiseudun kulttuurikeskukset 14.-22.3.2026. Esityksiä nähdään myös muussa kaupunkitilassa. Vuoden 2026 festivaalilla on Nordic-Baltic Focus ja kaikki esitykset, työpajat ja muu ohjelmisto juhlistavat Pohjois- ja Baltian maiden esittävää taidetta lapsille ja nuorille.</p>", "sv": "<p>Stämningen är som på ett stort idrottsevenemang! I denna teater- och dansföreställning kan barnen delta i en lekfull tävling.</p><p>Vem är åskådare, vem är domare, vem deltar i tävlingen? Denna roliga föreställning, som kombinerar sport och dans, utforskar tävlande, acceptans av förlust, vänskap och att upprätthålla hoppet på skonsamma sätt. Fantastisk livemusik garanterar att stämningen är på topp.</p><p>Litauiska No Shoes Theatre, som grundades 2020, är känd för sina interaktiva och multisensoriska rörelseteaterföreställningar. I teaterföreställningarna står publiken i ljuskäglan och bjuds in att delta i verksamheten.</p><p>Regi: Ieva Jackevičiūtė<br>På scenen: Raimondas Klezys, Sebastiano Geronimo<br>Musik: Matas Saladžius<br>Musiker/orkester: Kedrostuburas<br>Scenografi, kostymering: Indrė Pačėsaitė</p><p>Längd: cirka 45 min.<br>Åldersrekommendation: 6–12 år med familj<br>Språk: ordlös</p><p>Bravo!-festivalen<br>Bravo! En internationell scenkonstfestival för barn och unga intar huvudstadsregionens kulturcenter 14–22.3.2026. Föreställningar kommer också att visas på andra platser i stadsrummet. År 2026 har festivalen Nordic-Baltic Focus och alla föreställningar, verkstäder och andra programpunkter uppmärksammar scenkonst för barn och unga från de nordiska och baltiska länderna.</p>", "en": "<p>A sense of a great sporting event is in the air! This theatre and dance performance allows children to join a playful competition.</p><p>Who is the fan, who is the judge and who is taking part in the competition? Combining the worlds of sport and dance, this fun show applies gentle methods in exploring the themes of competitiveness, accepting defeat, building friendships and maintaining hope. The great live music ensures that the atmosphere is through the roof.</p><p>Founded in 2020, the Lithuanian No Shoes Theatre is known for its interactive, multi-sensory theatre performances that also incorporate movement. The audience has the spotlight in the performances of this theatre group and it is invited to participate.</p><p>Director: Ieva Jackevičiūtė<br>Performers: Raimondas Klezys, Sebastiano Geronimo<br>Music: Matas Saladžius<br>Musicians / orchestra: Kedrostuburas<br>Scenography, costume design: Indrė Pačėsaitė</p><p>Duration: approx. 45 min<br>Recommended ages: 6–12 year-olds and their families<br>Language: non-verbal</p><p>Bravo! festival<br>Bravo! An international performing arts festival for children and young people will take over the cultural centres of the Helsinki Metropolitan Area from 14 to 22 March 2026. Performances will also take place in other urban spaces. The 2026 festival will have a Nordic-Baltic focus and all performances, workshops and other elements of the programme will celebrate the performing arts for children and young people from the Nordic and Baltic countries.</p>" }, "name": { "fi": "No Shoes Theatre: Which one? (Liettua) – Bravo! -festivaali", "sv": "No Shoes Theatre: Which one? (Litauen) – Bravo!-festivalen", "en": "No Shoes Theatre: Which one?(Lithuania) – Bravo! festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67561/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67488", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/artist/honey-b-t-bones/honey-b-t-bones-4022914/", "sv": "https://www.lippu.fi/artist/honey-b-t-bones/honey-b-t-bones-4022914/", "en": "https://www.lippu.fi/artist/honey-b-t-bones/honey-b-t-bones-4022914/" }, "description": null, "price": { "fi": "29€/24€", "sv": "29€/24€", "en": "29€/24€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494050, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T10:12:42.829663Z", "last_modified_time": "2025-12-04T10:12:42.829680Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781544.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494050/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T10:12:42.742283Z", "last_modified_time": "2026-03-20T01:13:33.748008Z", "date_published": null, "start_time": "2026-03-13T17: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, "short_description": { "fi": "Honey B & T-Bones on suomalaisen rytmimusiikin klassikko, joka yllättää joka kerta!", "sv": "Honey B & T-Bones är en finsk rytmmusikklassiker som överraskar varje gång!", "en": "Honey B & T-Bones is a classic of Finnish rhythm music that still manages to surprise its audiences every time!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EB9AF5886284760F4037889527EADC71/Honey_B_T-Bones", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EB9AF5886284760F4037889527EADC71/Honey_B_T-Bones", "en": "http://www.malmitalo.fi/en/events/event/EB9AF5886284760F4037889527EADC71/Honey_B_T-Bones" }, "description": { "fi": "<p>Honey B & T-Bones on suomalaisen rytmimusiikin klassikko, joka yllättää joka kerta!</p><p>Yhtye tekee keväällä 2026 ”ihmiskokeen” ja julkaisee Honey B & T-Bones -musiikkia suomeksi.</p><p>\"Honey B & T-Bones on nyt ehdottomasti parhaassa vedossaan\", kirjoittaa Keskisuomalaisen Pentti Ronkanen live-arviossaan. \"Intensiteetti on huikea, komppi ryskää energisenä ja Aija Puurtisen persoonallisen laulun rinnalla kulkee Esa Kuloniemen kitarataituruus sekä mieletön soundivalikoima. Rakkaudella vaalittu perheyhtye on tyylien hurmaavana sekoituksena ainutlaatuinen maailmassa.”</p><p>Honey B & T-Bones esiintyy kokoonpanolla<br>Aija ”Honey B” Puurtinen: laulu, kosketinsoittimet ja basso<br>Esa Kuloniemi: kitarat, laulu<br>Pekka Rajamäki: basso, kakkoskitara ja laulu<br>Mooses Kuloniemi: rummut, laulu</p><p>Kesto: 1 t 40 min, sis. 20 min väliajan</p>", "sv": "<p>Honey B & T-Bones är en finsk rytmmusikklassiker som överraskar varje gång!</p><p>Våren 2026 kommer bandet att utföra ett ”mänskligt experiment\" och släppa Honey B & T-Bones-musik på finska.</p><p>”Honey B & T-Bones är definitivt bäst just nu”, skriver Pentti Ronkanen från Keskisuomalainen i sin liverecension. ”Intensiteten är enorm, kompet ljuder energiskt och Aija Puurtinens personliga sång ackompanjeras av Esa Kuloniemis gitarrspel och ett otroligt soundurval. Detta kärleksfullt omhuldade familjeband är unikt i världen för sin förtjusande blandning av stilar.”</p><p>Honey B & T-Bones uppträder med följande sammansättning<br>Aija ”Honey B” Puurtinen: sång, keyboard och bas<br>Esa Kuloniemi: gitarr, sång<br>Pekka Rajamäki: bas, gitarr nr. 2 och sång<br>Mooses Kuloniemi: trummor, sång</p><p>Längd: 1 h 40 min., inklusive en paus på 20 min.</p>", "en": "<p>Honey B & T-Bones is a classic of Finnish rhythm music that still manages to surprise its audiences every time!</p><p>In spring 2026, the band will perform a ‘human experiment’ by releasing Honey B & T-Bones music in Finnish.</p><p>“Honey B & T-Bones are the best they have ever been,” writes Pentti Ronkanen of newspaper Keskisuomalainen in his review about the band’s live show. “The intensity is insane, the comping is bursting with energy and Aija Puurtinen's personal vocals are accompanied by Esa Kuloniemi's virtuosic guitar work and an incredible range of sounds. This lovingly nurtured family band and its charming blend of styles is unique globally.”</p><p>Honey B & T-Bones’ line-up:<br>Aija ‘Honey B’ Puurtinen: vocals, keyboards and bass<br>Esa Kuloniemi: guitars, vocals<br>Pekka Rajamäki: bass, second guitar and vocals<br>Mooses Kuloniemi: drums, vocals</p><p>Duration: 1 hour 40 min, incl. a 20-min intermission</p>" }, "name": { "fi": "Honey B & T-Bones", "sv": "Honey B & T-Bones", "en": "Honey B & T-Bones" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67488/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }