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=51
{ "meta": { "count": 1627, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=52", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=50" }, "data": [ { "id": "kulke:63101", "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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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": 10970, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-20T14:14:26.932246Z", "last_modified_time": "2024-02-20T14:14:26.932267Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744464.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10970/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-20T14:14:26.901696Z", "last_modified_time": "2024-04-05T17:14:02.295903Z", "date_published": null, "start_time": "2024-04-11T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "HILMA perustuu Hilma af Klintin (1862-1944) arvoitukselliseen elämään.", "sv": "HILMA är den storslagna berättelsen om svenska konstnären Hilma af Klint (1862–1944).", "en": "HILMA is based on the mysterious life of Hilma af Klint (1862–1944)." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1B0AB012724FE1072729ADA14249CCB9/Hilma_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1B0AB012724FE1072729ADA14249CCB9/Hilma_12_", "en": "http://www.malmitalo.fi/en/events/event/1B0AB012724FE1072729ADA14249CCB9/Hilma_12_" }, "description": { "fi": "<p>HILMA perustuu Hilma af Klintin (1862-1944) arvoitukselliseen elämään.</p><p>Hänestä tuli vallankumouksellisen taiteensa kautta yksi lännen ensimmäisistä abstrakteista taiteilijoista ja feministinen esikuva.</p><p>Tekstin lähde: Scanbox Entertainment</p><p>Ohjaus: Lasse Hallström, 2022<br>Kesto 120 min<br>Ikäsuositus 12+<br>Kieli: englanti<br>Tekstitys: suomi</p><p>Näytös järjestetään yhteistyössä Walhallan kanssa.</p><p>Vapaa pääsy</p><p><b>Malmin oma elokuvateatteri uudistui!</b><br>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan. Näe elokuvat edullisesti ja mukavasti Malmitalossa!</p>", "sv": "<p>HILMA är den storslagna berättelsen om svenska konstnären Hilma af Klint (1862–1944).</p><p>Hon var en svensk pionjär inom abstrakt konst, en feministisk ikon i en tid då män skapade alla regler och öppen för den spirituella världen som blev hennes kall. <br>Källa: Scanbox Entertainment</p><p>Regi: Lasse Hallström, 2022</p><p>Längd 120 min.</p><p>Åldersrekommendation 12+</p><p>Språk: engelska</p><p>Textning: finska</p><p>Föreställningen ordnas i samarbete med Walhalla.</p><p>Fritt inträde!</p>", "en": "<p>HILMA is based on the mysterious life of Hilma af Klint (1862–1944).</p><p>Through her revolutionary art, she became one of the first abstract artists in the west and a feminist icon. <br>Source: Scanbox Entertainment</p><p>Director: Lasse Hallström, 2022<br>Duration: 120 mins.<br>Age recommendation 12+<br>Language: English<br>Subtitles: Finnish</p><p>The screening is held in cooperation with Walhalla.</p><p>Admission is free!</p>" }, "name": { "fi": "Hilma (12) – Kuukauden pohjoismainen elokuva", "sv": "Hilma (12) – Månadens nordiska film", "en": "Hilma (12)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63101/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63229", "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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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/malmitalo/kino-helios-alma-life-must-be-beautiful-3610327/", "en": "https://www.lippu.fi/artist/malmitalo/kino-helios-alma-life-must-be-beautiful-3610327/" }, "description": null, "price": { "fi": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12823, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T12:14:09.403706Z", "last_modified_time": "2024-03-15T12:14:09.403724Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745646.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12823/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-15T12:14:09.378479Z", "last_modified_time": "2024-04-05T17:14:02.017057Z", "date_published": null, "start_time": "2024-04-10T15: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": "Alma – Life Must Be Beautiful kertoo 28-vuotiaan Alma-Sofia Miettisen tarinan. Dokumentti seuraa Alman poikkeuksellista elämää, uraa ja persoonaa.", "en": "Alma - Life Must Be Beautiful tells the story of 28-year-old Alma-Sofia Miettinen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F528B23DED897C92E646839868048FE0/Alma_Life_Must_Be_Beautiful_", "en": "http://www.malmitalo.fi/en/events/event/F528B23DED897C92E646839868048FE0/Alma_Life_Must_Be_Beautiful_" }, "description": { "fi": "<p>Alma – Life Must Be Beautiful kertoo 28-vuotiaan Alma-Sofia Miettisen tarinan. Dokumentti seuraa Alman poikkeuksellista elämää, uraa ja persoonaa.</p><p>Elokuva tuo päivänvaloon sen Alman, joka löytyy julkisuudessa esitellyn persoonan takaa. Lapsuudesta saakka kuvattu arkistomateriaali ja lukuisat keikkakiertueilla kuvatut tallenteet valottavat Alman tarinaa alusta alkaen, päästäen katsojan sisälle Alman, tämän perheen ja ystäväporukan intiimeihin hetkiin – unohtamatta menestyksen monia puolia.</p><p>Ikäraja 7</p><p>Kesto 99 min</p><p>Ohjaus Pamela Tola</p><p>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>", "en": "<p>Alma - Life Must Be Beautiful tells the story of 28-year-old Alma-Sofia Miettinen.</p>" }, "name": { "fi": "Alma – Life Must Be Beautiful – Kino Helios", "en": "Alma – Life Must Be Beautiful – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63229/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63184", "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/yso:p16327/?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/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12447, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-14T15:14:10.367507Z", "last_modified_time": "2024-03-14T15:14:10.367525Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745592.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12447/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-14T15:14:10.340051Z", "last_modified_time": "2024-04-05T17:14:01.855188Z", "date_published": null, "start_time": "2024-04-10T12: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": "Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3F00F32343ED6FB1213DBD53A2F96777/Myrskyluodon_Maija_12_" }, "description": { "fi": "<p>Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella.</p><p>Elokuva perustuu Anni Blomqvistin samannimiseen romaaniin ja sijoittuu 1800-luvun Suomen rannikkoseudulle. Nuori 17-vuotias Maija avioituu vasten tahtoaan kalastajamies Jannen kanssa. Hänen elämänsä Myrskyluodolla on täynnä haasteita ja vastoinkäymisiä: kalastajan vaimona hän joutuu selviytymään miehensä pitkistä poissaoloista merellä ja huolehtimaan perheestään yksin.</p><p>Maijasta on kuitenkin kasvanut lujatahtoinen ja itsenäinen nainen, joka ei pelkää tarttua toimeen karussa saaristossa. Maijalla ja Jannella on vahva yhteys, sekä ajan myötä syventynyt rakkaus. Janne tukee vaimonsa pyrkimyksiä ja ymmärtää, että perheen vahvuus syntyy yhteisistä ponnisteluista.</p><p>Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.</p><p>Ikäsuositus: 12<br>Kesto: 163 min<br>Elokuva on tekstitetty Suomeksi<br>Ensi-ilta: 19.1.2024</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "name": { "fi": "Myrskyluodon Maija (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63184/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:62987", "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" } ], "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/helsinki-jazz-ryn-50-vuotisjuhlakonsertti-malmitalo-18095218/", "sv": "https://www.lippu.fi/event/helsinki-jazz-ryn-50-vuotisjuhlakonsertti-malmitalo-18095218/", "en": "https://www.lippu.fi/event/helsinki-jazz-ryn-50-vuotisjuhlakonsertti-malmitalo-18095218/" }, "description": null, "price": { "fi": "24 € / 20 € / 15 €", "sv": "24 € / 20 € / 15 €", "en": "24 € / 20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10410, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-06T13:23:32.939294Z", "last_modified_time": "2024-02-06T13:23:32.939320Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744306.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-06T13:23:32.914723Z", "last_modified_time": "2024-04-05T17:14:01.593269Z", "date_published": null, "start_time": "2024-04-09T16: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": "Tule juhlimaan Helsinki Jazz ry:n 50-vuotista taivalta juhlakonserttiin Malmitaloon!", "sv": "Kom och fira Helsinki Jazz rf:s 50-åriga bana med en jubileumskonsert i Malms kulturhus!", "en": "Celebrate 50 years of the Helsinki Jazz Association at Malmitalo!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/862894DD3CC5AC5030D822265C8E04FF/Helsinki_Jazz_ry_n_50-vuotisjuhlakonsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/862894DD3CC5AC5030D822265C8E04FF/Helsinki_Jazz_rf_s_50-ars_jubileumskonsert", "en": "http://www.malmitalo.fi/en/events/event/862894DD3CC5AC5030D822265C8E04FF/Helsinki_Jazz_Association_s_50-year_anniversary_concert" }, "description": { "fi": "<p>Tule juhlimaan Helsinki Jazz ry:n 50-vuotista taivalta juhlakonserttiin Malmitaloon!</p><p>Helsinki Jazz ry perustettiin virallisesti huhtikuussa 1974. Yhdistyksen juuret ovat Helsingin Yliopiston jazzkerhossa, ja vuosien varrella yhdistys on järjestänyt lukuisia jazzin ja improvisoidun musiikin konsertteja useissa eri kulttuurillisesti merkittävissä paikoissa. Yhdistys tekee yhteistyötä eri toimijoiden kanssa ja on eri yhteisöjen taloudellisesti tukema.</p><p>Yhdistyksen nykyisen jaZZanti-konserttisarjan ensimmäinen konsertti pidettiin 30.3.2010, jolloin esiintyivät PLOP-yhtye ja Seppo Kantonen. Sarjasta on tähän mennessä pidetty jo yli 200 konserttia.</p><p>Juhlakonsertissa esiintyy PLOP (Mikko Innanen: puhaltimet, Ville Herrala: kontrabasso ja Joonas Riippa: rummut) yhdessä suomalaisen jazzin yhden kantavan voiman, Juhani ”Junnu” Aaltosen (huilu), kanssa. Myös Juhani Aaltosen trio esiintyy. Konsertin alussa kerrotaan lyhyesti yhdistyksen menneistä vuosista ja moninaisesta historiasta. Yhdistyksen tavoitteena on myös tuoda esille lähimaiden jazzmuusikoita sekä yhtyeitä. Tällä kertaa ulkomaisena artistina on erinomainen virolainen pianisti Kirke Karja, joka on jo tuttu monelle suomalaiselle kuulijalle.</p><p>Ohjelmamuutokset ovat mahdollisia.</p><p>PLOP:<br>Mikko Innanen: puhaltimet<br>Ville Herrala: kontrabasso<br>Joonas Riippa: rummut<br> <br>Juhani ”Junnu” Aaltosen Trio:<br>Juhani Aaltonen: huilu<br>Uffe Krokfors: kontrabasso<br>Reiska Laine: rummut<br> <br>Kirke Karja (EE): piano</p><p>Konsertin kesto n. 2 tuntia, sis. väliajan</p>", "sv": "<p>Kom och fira Helsinki Jazz rf:s 50-åriga bana med en jubileumskonsert i Malms kulturhus!</p><p>Helsinki Jazz rf grundades officiellt i april 1974. Föreningen har sina rötter i en jazzklubb vid Helsingfors universitet, och under årens lopp har föreningen ordnat talrika konserter med jazz och improviserad musik på många olika kulturellt betydande platser. Föreningen samarbetar med olika aktörer och stöds ekonomiskt av olika samfund.</p><p>De första konserten i föreningens nuvarande konsertserie jaZZanti ordnadnes 30.3.2010, då bandet PLOP och Seppo Kantonen framträdde. Fram tills i dag har över 200 konserter ordnats inom ramen för konsertserien.</p><p>Vid jubileumskonserten framträder PLOP (Mikko Innanen: blåsinstrument, Ville Herrala: kontrabas och Joonas Riippa: trummor) tillsammans med en av de bärande krafterna i finländsk jazz, Juhani ”Junnu” Aaltonen (flöjt). Även Juhani Aaltonens trio framträder. I början av konserten berättar vi kort om föreningens gångna år och mångfacetterade historia. Föreningen har också som mål att lyfta fram jazzmusiker och band från de närliggande länderna. Denna gång framträder den lysande estniska pianisten Kirke Karja, som redan är bekant för många finländska åhörare.</p><p>Ändringar av programmet är möjliga.</p><p>PLOP:<br>Mikko Innanen: blåsinstrument<br>Ville Herrala: kontrabas<br>Joonas Riippa: trummor<br> <br>Juhani ”Junnu” Aaltonens Trio:<br>Juhani Aaltonen: flöjt<br>Uffe Krokfors: kontrabas<br>Reiska Laine: trummor<br> <br>Kirke Karja (EST): piano<br>Konserten varar cirka 2 timmar, inklusive en paus.</p>", "en": "<p>Celebrate 50 years of the Helsinki Jazz Association at Malmitalo!</p><p>The Helsinki Jazz Association was officially founded in April 1974. Its roots are in the University of Helsinki jazz club, and over the years, the association has organised various jazz and improvised music concerts in a variety of culturally significant venues. The association works with various operations and receives support from various communities.</p><p>Its current jaZZanti series of concerts was held on 30 March 2010, where the performers were the PLOP ensemble and Seppo Kantonen. Over 200 concerts have been held in the series since.</p><p>This anniversary concert will feature PLOP (Mikko Innanen: wind instruments; Ville Herrala: double bass; and Joonas Riippa: drums) together with the grand old man of Finnish jazz, Juhani ‘Junnu’ Aaltonen (flute). Juhani Aaltonen’s own trio will also be performing at the concert. There will be a short presentation on the association’s past and its storied history. The association aims to also showcase jazz musicians and bands from neighbouring countries. The foreign feature this time will be fantastic pianist Kirke Karja, from Estonia, who many Finnish listeners should already be familiar with.</p><p>Changes in the programme are possible.</p><p>PLOP:<br>Mikko Innanen: wind instruments<br>Ville Herrala: double bass<br>Joonas Riippa: drums<br> <br>Juhani ”Junnu” Aaltonen Trio:<br>Juhani Aaltonen: flute<br>Uffe Krokfors: double bass<br>Reiska Laine: drums<br> <br>Kirke Karja (EE): piano<br>Concert duration: about 2 hours, including an intermission.</p>" }, "name": { "fi": "Helsinki Jazz ry:n 50-vuotisjuhlakonsertti", "sv": "Helsinki Jazz rf:s 50-års jubileumskonsert", "en": "Helsinki Jazz Association's 50-year anniversary concert" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:62987/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63265", "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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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": 30716, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-26T09:12:39.661702Z", "last_modified_time": "2024-03-26T09:12:39.661715Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746317.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/30716/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-26T09:12:39.619282Z", "last_modified_time": "2024-04-05T17:14:01.316735Z", "date_published": null, "start_time": "2024-04-09T08:00:00Z", "end_time": "2024-04-09T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Mietityttääkö oma tai läheisen kuulon heikentyminen ja miten se vaikuttaa elämään? Entä miten kuulemista voidaan helpottaa?" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9190ACBFF248EB16F5C671397C68A427/Kuulotapahtuma_-_Tietoa_kuulosta_ja_paremmin_kuulemisesta" }, "description": { "fi": "<p>Mietityttääkö oma tai läheisen kuulon heikentyminen ja miten se vaikuttaa elämään? Entä miten kuulemista voidaan helpottaa?</p><p>Tule mukaan kuulotapahtumaan ja saat alan asiantuntijoilta kattavaa tietoa kuulosta ja paremmin kuulemisesta.</p><p>Luennon jälkeen on varattu aikaa vapaalle keskustelulle. Tällöin voit halutessasi kysyä asiantuntijoiltamme juuri sinua askarruttavista asioista.</p><p>Vapaa pääsy</p>" }, "name": { "fi": "Kuulotapahtuma - Tietoa kuulosta ja paremmin kuulemisesta" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63265/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63182", "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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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-dyyni-3601646/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-dyyni-3601646/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-dyyni-3601646/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-14T15:14:09.485942Z", "last_modified_time": "2024-03-14T15:14:09.485975Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745588.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-14T15:14:09.462180Z", "last_modified_time": "2024-04-05T17:14:00.875662Z", "date_published": null, "start_time": "2024-04-06T15: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": "Dyyni: Osa kaksi seuraa Paul Atreidesin myyttistä matkaa hänen liittoutuessaan Chanin ja fremenien kanssa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/37F049E458E252143D9F0DB927654849/Dyyni_II_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/37F049E458E252143D9F0DB927654849/Dyyni_II_12_", "en": "http://www.malmitalo.fi/en/events/event/37F049E458E252143D9F0DB927654849/_Dyyni_II_12_" }, "description": { "fi": "<p>Dyyni: Osa kaksi seuraa Paul Atreidesin myyttistä matkaa hänen liittoutuessaan Chanin ja fremenien kanssa.</p><p>Tästä alkaa kostoretki salaliittolaisia vastaan, jotka tuhosivat hänen perheensä.</p><p>Kohdatessaan valinnan elämänsä rakkauden ja tunnetun universumin kohtalon välillä hän ponnistelee ehkäistäkseen hirvittävän tulevaisuuden, jonka vain hän voi nähdä ennalta.</p><p>Saaga jatkuu palkitun elokuvantekijä Denis Villeneuven aloittaessa seuraavan luvun Frank Herbertin maineikkaasta romaanista Dyyni, tähtiluokan kansainvälisen näyttelijäkaartin kanssa. Warner Bros. Picturesin ja Legendary Picturesin Dyyni: Osa kaksi on kovasti odotettu jatko-osa vuoden 2021 kuusi Oscaria voittaneelle Dyynille.</p><p>Ikäraja: 12</p><p>Pituus 166 min</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Ensi-ilta 28.2.2024</p><p><b>Malmin oma elokuvateatteri Kino Helios uudistui!</b></p><p>Malmitalossa sijaitseva Kino Helios tarjoaa ensi-iltaleffoja edullisesti aikuisille ja lapsiperheille. 92-paikkainen elokuvateatteri tuo Malmille uusimpien elokuvien lisäksi leffafestareiden suosikkeja sekä eriteemaisia elokuvasarjoja.</p><p>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe ensi-iltaelokuvat edullisesti ja mukavasti Kino Helioksessa!</p>" }, "name": { "fi": "Dyyni II (12) – Kino Helios", "sv": "Dyyni II (12) – Kino Helios", "en": "Dyyni II (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63182/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63180", "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/yso:p16327/?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-suuri-leluseikkailu-3" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12121, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T12:13:59.472459Z", "last_modified_time": "2024-03-13T12:13:59.472478Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745579.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12121/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-13T12:13:59.442342Z", "last_modified_time": "2024-04-05T17:14:00.715055Z", "date_published": null, "start_time": "2024-04-06T12: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": "Suuri leluseikkailu vie katsojan mielikuvitukselliseen seikkailuun New Yorkin Keskuspuistoon." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4FCA1D61C9CB5952FE45F4CCB2B11433/Suuri_leluseikkailu_7_" }, "description": { "fi": "<p>Suuri leluseikkailu vie katsojan mielikuvitukselliseen seikkailuun New Yorkin Keskuspuistoon.</p><p>Kekseliäs nukke Don on kyllästynyt näyttelemään hölmöä nukketeatterissa. Ennen kaikkea hän haluaisi olla sankari – ja mieluiten tosielämässä. Hän pakenee teatterista ja lähtee Keskuspuistoon etsimään sankarillisia tehtäviä, päätyen tekemään yhteistyötä räppäävän pehmokoira DJ Veli Haun kanssa.</p><p>Kun Don saa tietää, että hänen nukkekaverinsa teatterissa ovat vaarassa, ystävykset Don ja DJ Veli Hau päättävät rientää apuun. Yhdessä he aloittavat suurimman seikkailunsa New Yorkin sydämessä.<br> <br>Suuri seikkailu on Toy Storyn käsikirjoittajien luoma, sydämellinen tarina epätodennäköisestä ystävyydestä.</p><p>Ikäraja 7</p><p>Kesto 88 min</p><p>Ensi-ilta 1.3.2024</p><p><b>Malmin oma elokuvateatteri Kino Helios uudistui!</b></p><p>Malmitalossa sijaitseva Kino Helios tarjoaa ensi-iltaleffoja edullisesti aikuisille ja lapsiperheille. 92-paikkainen elokuvateatteri tuo Malmille uusimpien elokuvien lisäksi leffafestareiden suosikkeja sekä eriteemaisia elokuvasarjoja.</p><p>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe ensi-iltaelokuvat edullisesti ja mukavasti Kino Helioksessa!</p>" }, "name": { "fi": "Suuri leluseikkailu (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63180/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61835", "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:104/?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: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" } ], "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/willman-dance-company/", "sv": "https://www.lippu.fi/artist/willman-dance-company/", "en": "https://www.lippu.fi/artist/willman-dance-company/" }, "description": null, "price": { "fi": "10 € / 8 €", "sv": "10 € / 8 €", "en": "10 € / 8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6962, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-03T11:14:33.464731Z", "last_modified_time": "2024-02-06T13:23:31.792118Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739506.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6962/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-03T11:14:33.428824Z", "last_modified_time": "2024-04-05T17:14:00.596920Z", "date_published": null, "start_time": "2024-04-06T12:00:00Z", "end_time": "2024-04-06T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Voimaeläin on vuorovaikutuksellinen ja lapsia osallistava tanssiteatteriesitys.", "sv": "Voimaeläin (Kraftdjur) är en interaktiv dansteaterföreställning som delaktiggör barnen.", "en": "Voimaeläin (Spirit Animal) is an interactive dance theatre performance that invites children to join." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E677695769D3C81D065E26CB04B00608/Willman_Dance_company_Voimaelain", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E677695769D3C81D065E26CB04B00608/Willman_Dance_company_Voimaelain", "en": "http://www.malmitalo.fi/en/events/event/E677695769D3C81D065E26CB04B00608/Willman_Dance_company_Voimaelain" }, "description": { "fi": "<p>Voimaeläin on vuorovaikutuksellinen ja lapsia osallistava tanssiteatteriesitys.</p><p>Esityksessä seikkailevat hahmot, Kaisla, Kiira ja Tuisku, lukevat faabeleita toisilleen. Faabeli on hyvin vanha kerrontamuoto, yleensä eläinsadun muotoon puettu ja moraalisen opetuksen sisältävä kertomus. Kaisla, Kiira ja Tuisku alkavat faabelien innoittamina etsiä omia voimaeläimiään. Voimaeläimiä etsitään Pohjolan eläimistä ja yleisö pääsee osallistumaan mukaan etsintään!</p><p>Esitys herättää ajatuksia eläimen ja ihmisen arvosta. Mitä eläimen tulisi saada ihmiseltä? Mitä ihminen voi saada eläimeltä? Voimaeläin vahvistaa lapsen itsetuntoa ja toimijuutta yksilönä. Lapsi voi miettiä omia kykyjään ja voimiaan eläinten ominaisuuksien kautta.</p><p>Esityksessä mukana olevat Pohjolan Voimaeläinkortit tuovat eläinuskomukset ja niihin liittyvät myytit sekä<br>eläinten piilevät kyvyt tietoisuuteemme. Pohjolan Voimaeläinkortit ovat luoneet Maaretta Tukiainen ja<br>Markus Frey ja ne on kustantanut Tuuma-kustannus.<br>Esityksessä on mukana faabeleita Aisopokselta ja Phaedrukselta.</p><p>Willman Dance Company on helsinkiläinen tanssiryhmä, joka koostuu taiteilijoista, joita yhdistää intohimo tanssiin ja näyttämötaiteeseen. Ryhmä valmistaa esityksiä niin aikuis- kuin lapsiyleisölle luoden tanssiteatteri- ja nykytanssiteoksia, joissa liike ja tanssijoiden kehollinen kyky ilmaista ovat esityksen ydin.</p><p>Koreografia, ohjaus Marjaterttu Willman</p><p>Pukusuunnittelu Aapo Siikala</p><p>Esiintyjät Jonna Aaltonen, Kaisa Niemi, Tanja Illukka</p><p>Kesto 45 min</p><p>Ikäsuositus 6 +</p>", "sv": "<p>Voimaeläin (Kraftdjur) är en interaktiv dansteaterföreställning som delaktiggör barnen.</p><p>Föreställningens gestalter, Kaisla, Kiira och Tuisku, läser fabler för varandra. Fabeln är en mycket gammal berättarform, som vanligtvis förmedlar moraliska lärdomar via djursagor.</p>", "en": "<p>Voimaeläin (Spirit Animal) is an interactive dance theatre performance that invites children to join.</p><p>The characters Kaisla, Kiira and Tuisku read fables to each other. The fable is a very old form of narrative, typically with animals as the characters and conveying a moral.</p>" }, "name": { "fi": "Willman Dance company: Voimaeläin", "sv": "Willman Dance company: Voimaeläin", "en": "Willman Dance company: Voimaeläin" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61835/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63228", "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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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/malmitalo/kino-helios-alma-life-must-be-beautiful-3610327/", "en": "https://www.lippu.fi/artist/malmitalo/kino-helios-alma-life-must-be-beautiful-3610327/" }, "description": null, "price": { "fi": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12822, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T12:14:07.721838Z", "last_modified_time": "2024-03-15T12:14:07.721855Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745642.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12822/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-15T12:14:07.679678Z", "last_modified_time": "2024-04-05T17:14:00.253587Z", "date_published": null, "start_time": "2024-04-05T15: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": "Alma – Life Must Be Beautiful kertoo 28-vuotiaan Alma-Sofia Miettisen tarinan. Dokumentti seuraa Alman poikkeuksellista elämää, uraa ja persoonaa.", "en": "Alma - Life Must Be Beautiful tells the story of 28-year-old Alma-Sofia Miettinen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F637FB5DD761B67CC33797EF630DD5E4/Alma_Life_Must_Be_Beautiful_", "en": "http://www.malmitalo.fi/en/events/event/F637FB5DD761B67CC33797EF630DD5E4/Alma_Life_Must_Be_Beautiful_" }, "description": { "fi": "<p>Alma – Life Must Be Beautiful kertoo 28-vuotiaan Alma-Sofia Miettisen tarinan. Dokumentti seuraa Alman poikkeuksellista elämää, uraa ja persoonaa.</p><p>Elokuva tuo päivänvaloon sen Alman, joka löytyy julkisuudessa esitellyn persoonan takaa. Lapsuudesta saakka kuvattu arkistomateriaali ja lukuisat keikkakiertueilla kuvatut tallenteet valottavat Alman tarinaa alusta alkaen, päästäen katsojan sisälle Alman, tämän perheen ja ystäväporukan intiimeihin hetkiin – unohtamatta menestyksen monia puolia.</p><p>Ikäraja 7</p><p>Kesto 99 min</p><p>Ohjaus Pamela Tola</p><p>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>", "en": "<p>Alma - Life Must Be Beautiful tells the story of 28-year-old Alma-Sofia Miettinen.</p>" }, "name": { "fi": "Alma – Life Must Be Beautiful – Kino Helios", "en": "Alma – Life Must Be Beautiful – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63228/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63178", "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/yso:p16327/?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-ohjus-3585920/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12445, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-14T15:14:08.734506Z", "last_modified_time": "2024-03-14T15:14:08.734542Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745569.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12445/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-14T15:14:08.704782Z", "last_modified_time": "2024-04-05T17:14:00.200218Z", "date_published": null, "start_time": "2024-04-05T12: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": "Ohjus on elokuva rajoista ja rajattomuudesta, missä poliittinen satiiri kohtaa lämpimän huumorin." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EE92AF397BF4162B089FF48DC095C168/Ohjus_12_" }, "description": { "fi": "<p>Ohjus on elokuva rajoista ja rajattomuudesta, missä poliittinen satiiri kohtaa lämpimän huumorin.</p><p>Joulukuussa 1984 Inarijärveen syöksyi neuvostoliittolainen ohjus, ja kansainvälinen selkkaus oli valmis. Draamakomedia kertoo yksinhuoltaja Niinasta, joka saa uuden alun elämälleen paikallisen sanomalehden toimittajana - ja eteensä mahdollisen jymyjutun kylässä, jossa ei koskaan tapahdu mitään. Niina uppoaa syvälle kansainväliseen ohjuskriisiin. Lappi ja pieni kirkonkylä menevät sekaisin, ja ulkomaisia toimittajia lappaa paikalliseen hotelliin. Tutkimusten keskellä Niina tapaa hävittäjälentäjä Kain, ja samaan aikaan ex-mies Tapio on vapautumassa vankilasta. Niinan on löydettävä rajansa, jotta myös totuus ohjuksesta näkisi päivänvalon.</p><p>Kesto 115 min</p><p>Ikäraja 12</p><p>Ensi-ilta 2.2.2024</p><p>Elokuva on tekstitetty Suomeksi.</p>" }, "name": { "fi": "Ohjus (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63178/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63235", "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/yso:p16327/?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/malmitalo/mama-events-halkara-postimies-3612030/" }, "description": null, "price": { "fi": "10 € / 12,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 14285, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-18T12:14:50.290969Z", "last_modified_time": "2024-03-18T12:14:50.290992Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746202.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/14285/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-18T12:14:50.257396Z", "last_modified_time": "2024-04-05T17:13:59.973218Z", "date_published": null, "start_time": "2024-04-04T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Työtön kyläjuoppo pestautuu postimieheksi ja ryhtyy kiertämään Nepalin syrjäisiä kyliä. Matkoillaan hänen täytyy kantaa uuden työnsä vastuita ja kohdata menneisyytensä demoneita." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B1FB72EE4FE5733F54AF65F1AEBCFDB9/Halkara_-_postimies_12_" }, "description": { "fi": "<p>Työtön kyläjuoppo pestautuu postimieheksi ja ryhtyy kiertämään Nepalin syrjäisiä kyliä. Matkoillaan hänen täytyy kantaa uuden työnsä vastuita ja kohdata menneisyytensä demoneita.</p><p>Elokuvan tarina valaisee myös Lähi-idässä työskentelevien nepalilaisten siirtotyöntekijöiden kovaa arkea, ja kertoo millaisia sydäntä kouraisevia päätöksiä heidän on työnsä takia tehtävä ja millaisia vaikutuksia niillä on heidän läheisilleen.</p><p>Elokuvasta esitetään suomeksi tekstitetty versio.</p><p>Kesto 1h 50 min</p><p>Halkara on voittanut seuraavat palkinnot:<br>Platinum Remi Winner: WorldFest Houston International Film Festival 2022<br>Best Actor: Mahesh Tripathi – WorldFest Houston International Film Festival USA 2022<br>Best Cinematographer: Chintan Rajbhandari – WorldFest Houston International Film Festival 2022<br>Best Long Narrative NAIFF 2022<br>Semi-Finalist: Flickers’ Rhode Island International Film Festival 2022<br>Official Selection: Carmarthen Bay Film Festival</p>" }, "name": { "fi": "Halkara - postimies (12) – Mama Eventsin näytös" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Mama Events Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63235/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63238", "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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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/search/?affiliate=ADV&searchterm=mama+events+dhorpatan", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=mama+events+dhorpatan" }, "description": null, "price": { "fi": "8,5 €", "en": "8,5 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 14284, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-18T12:14:50.096524Z", "last_modified_time": "2024-03-18T12:14:50.096542Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746203.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/14284/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-18T12:14:50.070660Z", "last_modified_time": "2024-04-05T17:13:59.819111Z", "date_published": null, "start_time": "2024-04-04T14:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Dhorpatan on syrjäinen, mutta kaunis Himalajan alue, joka sijaitsee Nepalin länsiosassa. Salpa Films, dokumentin tuottajatiimi, viipyi Dhorpatanissa useita kuukausia ja koki useita ponnisteluita vangitakseen elokuvan ja tuodakseen sen nähtäville.", "en": "Dhorpatan is a remote yet beautiful himalayan region located in the western part of Nepal. Salpa Films, the producer team of the documentary stayed in Dhorpatan for multiple months to capture the film and many more efforts since then to bring the movie among us." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B25205C2DB65E6703BD9449EA92E9B1C/Dhorpatan_-_No_Winter_Holidays_-dokumenttielokuva", "en": "http://www.malmitalo.fi/en/events/event/B25205C2DB65E6703BD9449EA92E9B1C/Dhorpatan_-_No_Winter_Holidays_documentary_film" }, "description": { "fi": "<p>Dhorpatan on syrjäinen, mutta kaunis Himalajan alue, joka sijaitsee Nepalin länsiosassa. Salpa Films, dokumentin tuottajatiimi, viipyi Dhorpatanissa useita kuukausia ja koki useita ponnisteluita vangitakseen elokuvan ja tuodakseen sen nähtäville.</p><p>Elinikäiset kilpailijat, Ratima ja Kalima, on määrätty huolehtimaan tyhjentyneestä kylästä. Naiset, jotka ovat olleet naimisissa saman miehen kanssa, joutuvat uudessa tilanteessa unohtamaan menneisyytensä ja yhdistämään voimansa, jotta selviävät talven yli tyhjässä lumisessa kylässä.</p><p>Ohjaus: Rajan Kathet, Sunir Pandey</p><p>Kesto 79 min<br>Ikäraja Sallittu<br>Elokuva on tekstitetty suomeksi</p><p>Liput tulossa myyntiin lippu.fi</p>", "en": "<p>Dhorpatan is a remote yet beautiful himalayan region located in the western part of Nepal. Salpa Films, the producer team of the documentary stayed in Dhorpatan for multiple months to capture the film and many more efforts since then to bring the movie among us.</p>" }, "name": { "fi": "Dhorpatan - No Winter Holidays -dokumenttielokuva – Mama Eventsin näytös", "en": "Dhorpatan - No Winter Holidays documentary film – Mama Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63238/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63068", "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:288/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?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": 10969, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-20T14:14:24.878260Z", "last_modified_time": "2024-02-20T14:14:24.878294Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744743.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10969/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-20T14:14:24.841079Z", "last_modified_time": "2024-04-05T17:13:59.705063Z", "date_published": null, "start_time": "2024-04-04", "end_time": "2024-04-27", "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": "Rintasyöpäyhdistys Europa Donna Finland ry:n jäseniä osallistui kuvausprojektiin, jossa kuvattiin heidän alastonta keskivartaloaan. Kaikki kuvatut ovat rintasyövän sairastaneita.", "sv": "Medlemmar av bröstcancerföreningen Europa Donna Finland rf deltog i ett fotografiprojekt, där man fotograferade deras nakna bål. Alla de som fotograferades har haft bröstcancer.", "en": "Members of the breast cancer association Europa Donna Finland ry took part in a project in which their naked torsos were photographed. Every subject had dealt with breast cancer." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EEE303DEE32510D79DE8B38EFB1017B2/Sari_Nieminen_Tassa_hetkessa_mina_elan_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EEE303DEE32510D79DE8B38EFB1017B2/Sari_Nieminen_Jag_lever_i_denna_stund", "en": "http://www.malmitalo.fi/en/events/event/EEE303DEE32510D79DE8B38EFB1017B2/Sari_Nieminen_The_moment_I_live_in" }, "description": { "fi": "<p>Rintasyöpäyhdistys Europa Donna Finland ry:n jäseniä osallistui kuvausprojektiin, jossa kuvattiin heidän alastonta keskivartaloaan. Kaikki kuvatut ovat rintasyövän sairastaneita.</p><p>”Naisena on vaikea hyväksyä itsensä sellaisena kuin on. Haluan kuvata valokuvilla, että on hyvä ja kaunis olla sellaisenaan. Minulla itsellä on leikattu rintasyöpä vuonna 2014 joulukuussa, levinneisyys todettu 2018. Alastomuus itsessään kiehtoo, olemme kaikki erilaisia kooltamme ja muodoiltamme. Haluan kuvata ihmisen kauneutta omalla tavallaan ja näen kauneuden kaikenlaisina muotoina. Tässä valokuvanäyttelyssä kuvaan lähinnä informatiivisesti ja formalistisesti keskivartaloalastomuutta.</p><p>Ajatuksena on tukea rintasyöpäpotilaita heidän kamppailussaan muuttuneen vartalon hyväksymisessä. Mallit ovat eri ikäisiä ja kokoisia ja osalla levinnyt rintasyöpä”, kertoo <b>Sari Nieminen</b>.</p><p>Rintasyöpäyhdistys - Europa Donna Finland ry on vuonna 2005 perustettu rintasyöpään sairastuneiden oma järjestö, jonka toiminnan ydin on vertaistuki eri muodoissa. Yhdistys on 47 maassa toimivan Europa Donna - The European Breast Cancer Coalition –järjestön jäsen ja osa Syöpäjärjestöjä.</p><p>Rintasyöpäyhdistyksen toiminnan tavoitteena on rintasyöpään sairastuneiden fyysisen, psyykkisen ja sosiaalisen elämänlaadun paraneminen ja että suomalaiset rintasyöpäpotilaat saavat parasta mahdollista hoitoa asuinpaikasta riippumatta. Yhdistys jakaa tietoa rintasyövästä ja sen hoidosta ja toimii rintasyöpäpotilaiden edunvalvojana.</p><p><b>Tervetuloa näyttelyn avajaisiin 3.4.2024 kello 17–19.</b></p><p>Vapaa pääsy</p>", "sv": "<p>Medlemmar av bröstcancerföreningen Europa Donna Finland rf deltog i ett fotografiprojekt, där man fotograferade deras nakna bål. Alla de som fotograferades har haft bröstcancer.</p><p>”Som kvinna är det svårt att godkänna sig själv som man är. Med hjälp av fotografierna vill jag visa att vi är bra och vackra som vi är. Jag har själv blivit opererad för bröstcancer i december 2014, som konstaterades ha spridit sig 2018. Nakenhet i sig är fascinerande, vi är alla av olika storlek och form. Jag vill fotografera människans skönhet på hennes egna villkor, och jag ser skönheten i alla slags former. I denna fotografiutställning fotograferar jag i det närmaste de nakna bålarna på ett informativt och formalistiskt sätt. Tanken är att stöda bröstcancerpatienter i deras kamp med att acceptera sin förändrade kropp. Modellerna är av olika åldrar och storlekar, och hos en del av dem har bröstcancern spridit sig”, berättar <b>Sari Nieminen.</b></p><p>Bröstcancerföreningen Europa Donna Finland rf är en organisation för personer med bröstcancer som har grundats 2005. Kamratstöd av alla slag ligger i kärnan för verksamheten. Föreningen är en medlem av organisationen Europa Donna - The European Breast Cancer Coalition som har verksamhet i 47 länder, och en del av Cancerorganisationerna. Målet med Bröstcancerföreningens verksamhet är förbättrande av den fysiska, psykiska och sociala livskvaliteten för bröstcancerpatienter, och att finländska bröstcancerpatienter ska få den bästa möjliga vården oberoende av deras hemort. Föreningen delar ut information om bröstcancer och vården av den samt fungerar som intressebevakare för bröstcancerpatienter.</p><p><b>Välkommen på utställningens vernissage 3.4.2024 kl. 17–19.00.</b></p><p>Plats: Foajén i Malms kulturhus<br>Språk: utställningen överskrider språkgränserna<br>Biljetter: avgiftsfri</p>", "en": "<p>Members of the breast cancer association Europa Donna Finland ry took part in a project in which their naked torsos were photographed. Every subject had dealt with breast cancer.</p><p>“It’s difficult for a woman to accept themselves as they are. With these photos, I want to show that you’re good and beautiful as you are. I, personally, had a breast cancer operation in December 2014, and it was confirmed to have spread in 2018. Nudity fascinates me, since we are all different sizes and shapes. I want to show how beautiful people are in their own way, and I see beauty as all kinds of shapes. In this photography exhibit, I generally show torso nudity in an informative and formalist manner. The idea is that I want to support breast cancer patients in their fight to accept their new bodies. My models are of various ages and some of their cancers have spread”, says <b>Sari Nieminen.</b></p><p>The breast cancer association Europa Donna Finland was founded in 2005 to provide peer support for breast cancer sufferers. The association is a part of Europa Donna – the European Breast Cancer Coalition and a member of the Cancer Associations. The breast cancer association’s target is to improve the quality of life, physically, psychologically and socially for breast cancer patients, and to make sure that Finnish breast cancer patients have access to the best possible care, regardless of where they live. The association distributes information on breast cancer and care, and lobbies for breast cancer patients.</p><p><b>The opening ceremony for the exhibit is on 3 April 2024 at 5 pm – 7 pm, welcome! </b></p><p>Place: Malmitalo lobby<br>Language: no language barriers<br>Admission: free</p>" }, "name": { "fi": "Sari Nieminen: Tässä hetkessä minä elän!", "sv": "Sari Nieminen: Jag lever i denna stund", "en": "Sari Nieminen: The moment I live in" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63068/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63148", "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:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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-madeleinen-pariisi-3604192/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-madeleinen-pariisi-3604192/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-madeleinen-pariisi-3604192/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11196, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-04T13:14:03.091528Z", "last_modified_time": "2024-03-04T13:14:03.091548Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745123.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11196/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-04T13:14:03.067746Z", "last_modified_time": "2024-04-05T17:13:59.535004Z", "date_published": null, "start_time": "2024-04-03T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Madeleinen Pariisi on matka läpi muistojen, ja Pariisin käänteentekevien paikkojen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/237D0C61451D5F72C857B10D0A714A7A/Madeleinen_Pariisi", "sv": "http://www.malmitalo.fi/sv/evenemang/event/237D0C61451D5F72C857B10D0A714A7A/Madeleinen_Pariisi", "en": "http://www.malmitalo.fi/en/events/event/237D0C61451D5F72C857B10D0A714A7A/Madeleinen_Pariisi" }, "description": { "fi": "<p>Madeleinen Pariisi on matka läpi muistojen, ja Pariisin käänteentekevien paikkojen.</p><p>Huolien riivaama taksikuski Charles (Dany Boon) ottaa rahakkaan tuntuisen ajokeikan Pariisin laidalta toiselle. Pian käy ilmi, että 92-vuotias Madeleine on menossa vanhainkotiin, mutta haluaa ensin ajella muistorikkaiden paikkojen kautta vailla kiirettä.</p><p>Ensirakkaudet, tulinen ero, radikaalit kamppailut naisten oikeuksista ja historian myllerrykset vyöryvät esiin Madeleinen tarinan myötä. Nimiroolissa loistaa ikinuori näyttelijätär Line Renaud, joka tunnetaan mm. Relaxes-vous (Ottakaa rennosti) duetosta Dean Martinin kanssa. ”Hymy nuorentaa” kuvastaa Madeleinen elämänasennetta. Automatkan aikana pari ystävystyy tavalla, joka muuttaa kummankin elämän.</p><p>Kesto 91 min<br>Ensi-ilta 15.3.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p><p><b>Malmin oma elokuvateatteri Kino Helios uudistui!</b><br>Malmitalossa sijaitseva Kino Helios tarjoaa ensi-iltaleffoja edullisesti aikuisille ja lapsiperheille. 92-paikkainen elokuvateatteri tuo Malmille uusimpien elokuvien lisäksi leffafestareiden suosikkeja sekä eriteemaisia elokuvasarjoja.</p><p>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe ensi-iltaelokuvat edullisesti ja mukavasti Kino Helioksessa!</p>" }, "name": { "fi": "Madeleinen Pariisi – Kino Helios", "sv": "Madeleinen Pariisi – Kino Helios", "en": "Madeleinen Pariisi – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63148/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61697", "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" } ], "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/the-animals-the-farewell-tour-uk-malmitalo-17949659/", "sv": "https://www.lippu.fi/event/the-animals-the-farewell-tour-uk-malmitalo-17949659/", "en": "https://www.lippu.fi/event/the-animals-the-farewell-tour-uk-malmitalo-17949659/" }, "description": null, "price": { "fi": "48,50 €", "sv": "48,50 €", "en": "48,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6634, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-14T15:13:46.099348Z", "last_modified_time": "2024-02-06T13:23:29.807216Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733101.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6634/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-14T15:13:46.064734Z", "last_modified_time": "2024-04-05T17:13:58.771885Z", "date_published": null, "start_time": "2024-03-28T17: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": "Legendaarisen The Animalsin jäähyväväiskiertue saapuu Suomeen.", "sv": "Avskedsturnén för legendariska The Animals anländer nu till Finland.", "en": "The farewell tour of the legendary The Animals will arrive in Finland." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/11724A1AD9579C6A1BE17B675C48143F/LOPPUUNMYYTY_The_Animals", "sv": "http://www.malmitalo.fi/sv/evenemang/event/11724A1AD9579C6A1BE17B675C48143F/SLUTSALD_The_Animals", "en": "http://www.malmitalo.fi/en/events/event/11724A1AD9579C6A1BE17B675C48143F/SOLD_OUT_The_Animals" }, "description": { "fi": "<p>Legendaarisen The Animalsin jäähyväväiskiertue saapuu Suomeen.</p><p>\"House of the Rising Sun\", \"We've Gotta Get Out of This Place\", \"Don't Let Me Be Misunderstood\", \"It´s My Life\", \"I Put A Spell On You\", \"Boom Boom\" och \"Bring It On Home To Me”… Tällä hittilistalla The Animalsista (UK) on kiistatta yksi maailman vaikutusvaltaisimmista yhtyeistä. Sen nimekkäiden fanien joukkoon lukeutuu muun muassa Bruce Springsteen.</p><p>Vuonna 1964 energisen rock and rollin aalto pyyhkäisi maailman nuorison yli ja sen harjalla ratsastivat The Beatles, The Rolling Stones - ja tietysti John Steelin ja Eric Burdonin perustama The Animals. Nimensä yhtye sai villistä lavaesiintymisestään.</p><p>Alkuperäisestä kokoonpanosta mukana on toinen perustajajäsen John Steel. Lisäksi yhtyeessä soittavat Danny Handley, Barney Williams ja Norman Helm.</p>", "sv": "<p>Avskedsturnén för legendariska The Animals anländer nu till Finland.</p><p>År 1964 svepte en våg av energisk rock and roll över världens ungdom och på dess krön red The Beatles, The Rolling Stones – och naturligtvis The Animals, som grundades av John Steel och Eric Burdon.</p>", "en": "<p>The farewell tour of the legendary The Animals will arrive in Finland.</p><p>In 1964, a wave of energetic rock and roll swept the world’s youth, led by The Beatles, The Rolling Stones – and of course The Animals, founded by John Steel and Eric Burdon.</p>" }, "name": { "fi": "LOPPUUNMYYTY The Animals", "sv": "SLUTSÅLD The Animals", "en": "SOLD OUT The Animals" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61697/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63237", "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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "8,5 €", "en": "8,5 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 14283, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-18T12:14:48.566732Z", "last_modified_time": "2024-03-18T12:14:48.566754Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746200.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/14283/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-18T12:14:48.518317Z", "last_modified_time": "2024-04-05T17:13:58.600365Z", "date_published": null, "start_time": "2024-03-28T15:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Dhorpatan on syrjäinen, mutta kaunis Himalajan alue, joka sijaitsee Nepalin länsiosassa. Salpa Films, dokumentin tuottajatiimi, viipyi Dhorpatanissa useita kuukausia ja koki useita ponnisteluita vangitakseen elokuvan ja tuodakseen sen nähtäville.", "en": "Dhorpatan is a remote yet beautiful himalayan region located in the western part of Nepal. Salpa Films, the producer team of the documentary stayed in Dhorpatan for multiple months to capture the film and many more efforts since then to bring the movie among us." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8AC14ABD956A9548E5395B4F330AD488/Dhorpatan_-_No_Winter_Holidays_-dokumenttielokuva", "en": "http://www.malmitalo.fi/en/events/event/8AC14ABD956A9548E5395B4F330AD488/Dhorpatan_-_No_Winter_Holidays_documentary_film" }, "description": { "fi": "<p>Dhorpatan on syrjäinen, mutta kaunis Himalajan alue, joka sijaitsee Nepalin länsiosassa. Salpa Films, dokumentin tuottajatiimi, viipyi Dhorpatanissa useita kuukausia ja koki useita ponnisteluita vangitakseen elokuvan ja tuodakseen sen nähtäville.</p><p>Elinikäiset kilpailijat, Ratima ja Kalima, on määrätty huolehtimaan tyhjentyneestä kylästä. Naiset, jotka ovat olleet naimisissa saman miehen kanssa, joutuvat uudessa tilanteessa unohtamaan menneisyytensä ja yhdistämään voimansa, jotta selviävät talven yli tyhjässä lumisessa kylässä.</p><p>Ohjaus: Rajan Kathet, Sunir Pandey</p><p>Kesto 79 min<br>Ikäraja Sallittu<br>Elokuva on tekstitetty suomeksi</p><p>Liput tulossa myyntiin lippu.fi</p>", "en": "<p>Dhorpatan is a remote yet beautiful himalayan region located in the western part of Nepal. Salpa Films, the producer team of the documentary stayed in Dhorpatan for multiple months to capture the film and many more efforts since then to bring the movie among us.</p>" }, "name": { "fi": "Dhorpatan - No Winter Holidays -dokumenttielokuva – Mama Eventsin näytös", "en": "Dhorpatan - No Winter Holidays documentary film – Mama Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63237/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61933", "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" } ], "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/roots-musiikin-evoluutio-sarja-malmitalo-17956638/", "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-sarja-malmitalo-17956638/", "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-sarja-malmitalo-17956638/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7222, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-17T13:13:57.301751Z", "last_modified_time": "2024-02-06T13:23:29.332013Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743957.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7222/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-17T13:13:57.269462Z", "last_modified_time": "2024-04-05T17:13:58.401262Z", "date_published": null, "start_time": "2024-03-27T17: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": "Malmitalon Roots-musiikin evoluutio -keikkasarja käsittelee juurevan musiikin kehitystä konsertti kerrallaan keväällä 2024. Lavalla Suomen terävin juurimusiikin kärki!", "sv": "Rock and roll-pianots och sångens vilde man Mr Breathless firar 35-årskonstnärsjubileum på Malms kulturhus.", "en": "Mr Breathless, the wild man of rock and roll piano and song, celebrates his 35th anniversary as an artist at Malmitalo." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/706BE2E5E1F737C96E3E535D31394B4E/Mr_Breathless_35-vuotistaiteilijajuhla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/706BE2E5E1F737C96E3E535D31394B4E/Mr_Breathless_35-arskonstnarsjubileum", "en": "http://www.malmitalo.fi/en/events/event/706BE2E5E1F737C96E3E535D31394B4E/Mr_Breathless_celebrating_35_years_as_an_artist" }, "description": { "fi": "<p>Malmitalon Roots-musiikin evoluutio -keikkasarja käsittelee juurevan musiikin kehitystä konsertti kerrallaan keväällä 2024. Lavalla Suomen terävin juurimusiikin kärki!</p><p><b>Mr Breathless</b>, tuo rock and roll pianon ja laulun villimies juhlistaa 35-vuotistaitelijajuhlaansa Malmitalolla. Viimeksi Mr Breathless on esiintynyt Malmilla 20-vuotiskonsertissaan 2009. Silloin loppuunmyydyssä malmitalossa olleet muistavat tuon konsertin varmasti edelleen hyvin.</p><p>Jerry Lee Lewis -tyylisestä pianonsoitostaan tunnettu Mr Breathless on julkaissut yli 10 levyä ja takana on reilut 3000 keikkaa.<br>Malmitalolla Mr Breathlessia säestää Marko Haavisto & Poutahaukat.</p><p>Konsertissa kuullaan pitkän uran varrelta kappaleita boogie woogiesta gospeliin ja kantriin, unohtamatta tietenkään rock and rollia!</p><p>Kesto: 110 min sis. väliajan 20 min.</p>", "sv": "<p>Rock and roll-pianots och sångens vilde man Mr Breathless firar 35-årskonstnärsjubileum på Malms kulturhus.</p><p>Senast uppträdde Mr Breathless i Malm år 2009 på sin 20-årskonsert. Alla som var med på den slutsålda konserten i Malms kulturhus minns den säkerligen.</p><p>Mr Breathless är välkänd för sitt pianospel i Jerry Lee Lewis-stil, och har släppt över 10 plattor och genomfört dryga 3 000 spelningar. På Malms kulturhus ackompanjeras Mr Breathless av Marko Haavisto & Poutahaukat.</p><p>På konserten får vi höra låtar från den långa karriären, allt från boogie woogie till gospel och country, och naturligtvis rock and roll!</p>", "en": "<p>Mr Breathless, the wild man of rock and roll piano and song, celebrates his 35th anniversary as an artist at Malmitalo.</p><p>The last time Mr Breathless performed at Malmi was for his 20th anniversary concert in 2009. Those who attended the sold-out Malmitalo show will surely remember that concert well.</p><p>Known for his piano-playing style akin to Jerry Lee Lewis, Mr Breathless has released more than ten albums and played over 3000 shows. At Malmitalo, Mr Breathless will be accompanied by Marko Haavisto & Poutahaukat.</p><p>The concert will feature songs from his long career, from boogie-woogie to gospel and country, not to mention rock and roll!</p>" }, "name": { "fi": "Mr Breathless – 35-vuotistaiteilijajuhla – Roots-musiikin evoluutio vol. 3", "sv": "Mr Breathless – 35-årskonstnärsjubileum – Rootsmusikens evolution Vol.3", "en": "Mr Breathless: celebrating 35 years as an artist – Evolution of roots music, Vol. 3" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61933/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63151", "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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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-dream-scenario-3601622/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-dream-scenario-3601622/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-dream-scenario-3601622/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11195, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-04T13:14:01.685676Z", "last_modified_time": "2024-03-04T13:14:01.685692Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745127.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11195/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-04T13:14:01.662583Z", "last_modified_time": "2024-04-05T17:13:58.345518Z", "date_published": null, "start_time": "2024-03-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maailman suurimmalla elokuvafestivaalilla Torontossa syyskuussa ensiesityksensä saanut Dream Scenario on ohjaaja Kristoffer Borglin omaan käsikirjoitukseen perustuva absurdi kauhukomedia." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/899B749BFF08F360D7FD6E007A16BB94/Dream_scenario_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/899B749BFF08F360D7FD6E007A16BB94/Dream_scenario_16_", "en": "http://www.malmitalo.fi/en/events/event/899B749BFF08F360D7FD6E007A16BB94/Dream_scenario_16_" }, "description": { "fi": "<p>Maailman suurimmalla elokuvafestivaalilla Torontossa syyskuussa ensiesityksensä saanut Dream Scenario on ohjaaja Kristoffer Borglin omaan käsikirjoitukseen perustuva absurdi kauhukomedia.</p><p>Nicolas Cage esittää yliopistoprofessoria, joka alkaa ilmaantua satunnaisesti ihmisten uniin passiivisena oloneuvoksena. Tohvelisankari yrittää sivuuttaa selittämättömät tapahtumat olankohautuksella, mutta media päättääkin luoda hänestä ilmiön.</p><p>Yhtenä tuottajana elokuvassa on Ari Aster, joka muistetaan ohjauksista Midsommar – loputon yö ja Hereditary – pahan perintö.</p><p>Kesto 100 min<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi<br>Ikäraja 16<br>Ensi-ilta 23.2.2024</p>" }, "name": { "fi": "Dream scenario (16) – Kino Helios", "sv": "Dream scenario (16) – Kino Helios", "en": "Dream scenario (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63151/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63147", "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:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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-madeleinen-pariisi-3604192/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-madeleinen-pariisi-3604192/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-madeleinen-pariisi-3604192/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11194, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-04T13:14:01.502802Z", "last_modified_time": "2024-03-04T13:14:01.502818Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745121.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11194/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-04T13:14:01.478542Z", "last_modified_time": "2024-04-05T17:13:57.994689Z", "date_published": null, "start_time": "2024-03-27T13: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": "Madeleinen Pariisi on matka läpi muistojen, ja Pariisin käänteentekevien paikkojen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/32054AD034F4BFF85270C99493B40163/Madeleinen_Pariisi", "sv": "http://www.malmitalo.fi/sv/evenemang/event/32054AD034F4BFF85270C99493B40163/Madeleinen_Pariisi", "en": "http://www.malmitalo.fi/en/events/event/32054AD034F4BFF85270C99493B40163/Madeleinen_Pariisi" }, "description": { "fi": "<p>Madeleinen Pariisi on matka läpi muistojen, ja Pariisin käänteentekevien paikkojen.</p><p>Huolien riivaama taksikuski Charles (Dany Boon) ottaa rahakkaan tuntuisen ajokeikan Pariisin laidalta toiselle. Pian käy ilmi, että 92-vuotias Madeleine on menossa vanhainkotiin, mutta haluaa ensin ajella muistorikkaiden paikkojen kautta vailla kiirettä.</p><p>Ensirakkaudet, tulinen ero, radikaalit kamppailut naisten oikeuksista ja historian myllerrykset vyöryvät esiin Madeleinen tarinan myötä. Nimiroolissa loistaa ikinuori näyttelijätär Line Renaud, joka tunnetaan mm. Relaxes-vous (Ottakaa rennosti) duetosta Dean Martinin kanssa. ”Hymy nuorentaa” kuvastaa Madeleinen elämänasennetta. Automatkan aikana pari ystävystyy tavalla, joka muuttaa kummankin elämän.</p><p>Kesto 91 min<br>Ensi-ilta 15.3.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p><p><b>Malmin oma elokuvateatteri Kino Helios uudistui!</b><br>Malmitalossa sijaitseva Kino Helios tarjoaa ensi-iltaleffoja edullisesti aikuisille ja lapsiperheille. 92-paikkainen elokuvateatteri tuo Malmille uusimpien elokuvien lisäksi leffafestareiden suosikkeja sekä eriteemaisia elokuvasarjoja.</p><p>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe ensi-iltaelokuvat edullisesti ja mukavasti Kino Helioksessa!</p>" }, "name": { "fi": "Madeleinen Pariisi – Kino Helios", "sv": "Madeleinen Pariisi – Kino Helios", "en": "Madeleinen Pariisi – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63147/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61975", "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:348/?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" } ], "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/indo-jazz-concert-malmitalo-18069929/", "sv": "https://www.lippu.fi/event/indo-jazz-concert-malmitalo-18069929/", "en": "https://www.lippu.fi/event/indo-jazz-concert-malmitalo-18069929/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7394, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-26T14:13:05.535165Z", "last_modified_time": "2024-02-06T13:23:28.355212Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744238.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7394/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-26T14:13:05.510041Z", "last_modified_time": "2024-04-05T17:13:57.638617Z", "date_published": null, "start_time": "2024-03-26T17: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": "Intialaisen klassisen musiikin taiturit ja suomalaisen jazzin mestarit kohtaavat ja soittavat yhdessä ”East meets West” -hengessä. Klassista intialaista musiikkia ja indojazzia.", "sv": "Mästare i indisk klassisk musik och mästare i finsk jazz möts och spelar tillsammans i \"öst möter väst\"-anda. Klassisk indisk musik och indo jazz.", "en": "Indian upcoming masters present their own Classical Indian music and collaborate with Finnish Jazz icons & masters in the spirit of East meets West." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B4BAA620F2EF9E6E5B9B14A98F60C6B1/Indian_Classical_Indo_Jazz_-konsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B4BAA620F2EF9E6E5B9B14A98F60C6B1/Indian_Classical_Indo_Jazz_konsert", "en": "http://www.malmitalo.fi/en/events/event/B4BAA620F2EF9E6E5B9B14A98F60C6B1/Indian_Classical_Indo_Jazz_Concert" }, "description": { "fi": "<p>Intialaisen klassisen musiikin taiturit ja suomalaisen jazzin mestarit kohtaavat ja soittavat yhdessä ”East meets West” -hengessä. Klassista intialaista musiikkia ja indojazzia.</p><p>Saurabh Vartak & Saleel Tambe, Jani Malmi Trio (Jani Malmi, Eero Tikkanen, Markku Ounaskari), Juhani Aaltonen & Raoul Björkenheim</p><p><b>Konsertin ohjelma</b></p><p><b>Ensimmäinen osa: Intialainen klassinen konsertti (40 minuuttia)</b><br>Saurabh Vartak, huilu & Saleel Tambe, tabla</p><p>Väliaika 20 minuuttia</p><p><b>Toinen osa: Indo Jazz -konsertti (40 minuuttia)</b><br>Jani Malmi Trio <br>Jani Malmi, kitara, Eero Tikkanen, basso, Markku Ounaskari, rummut<br>Saurabh Vartak, huilu & Saleel Tambe, tabla</p><p>Väliaika 20 minuuttia</p><p><b>Kolmas osa: Indo Jazz -konsertti jatkuu (40 minuuttia)</b><br>Juhani Aaltonen, huilu & Raoul Björkenheim, kitara<br>Saurabh Vartak, huilu & Saleel Tambe, tabla</p><p>Konsertin kesto 160 minuuttia, kaksi väliaikaa</p><p>SAURABH VARTAK, INTIALAINEN KLASSINEN HUILU <br>Saurabh edustaa klassisen intialaisen musiikin pitkää perinnettä. Hän esiintyy sekä soolona että kokoonpanoissa tablan ja muiden soittimien säestyksellä. Saurabh tunnetaan legendaarisen Pandit Hariprasad Chaurasian oppilaana, ja he esiintyvät edelleen yhdessä. \"Musiikki on kuin meditaatiota\", Chaurasia on sanonut, ja \"huilu on jumalien oma soitin, koska Lord Krishna soitti sitä\". Saurabh työskentelee lisäksi elokuvateollisuuden ja populaarimusiikin parissa sekä opettajana. Saurabhin Flute Academy perustettiin helmikuussa 2018. Viime vuosina Saurabh on rakentanut kansainvälistä uraansa ulkomaankiertueillaan ja tekemällä yhteistyötä länsimaisten jazzmuusikoiden kanssa.</p><p>SALEEL TAMBE, TABLA <br>Saleel Tambe on ollut klassisen intialaisen musiikin mestareiden opissa jo lapsuudestaan lähtien. Häntä on opettanut muun muassa Pt. Ramdas Palsulen, joka itse on ollut tablan mestarin Taalyogi Pt. Suresh Talwalkarin oppilas. Saleel on taitava muusikkona niin tablasooloissa kuin klassisissa intialaisissa kokoonpanoissakin, olipa kyse sitten säestämisestä tai konsertoinnista. Hän on esiintynyt monilla arvostetuilla kulttuuriareenoilla ja festivaaleilla, kuten esimerkiksi House of Commonsissa, Southbank Centressä ja Victoria & Albert Museumissa, ja on ollut mukana monissa musiikkiprojekteissa ja studionauhoituksissa.</p><p>JANI MALMI TRIO <br>(Jani Malmi, kitara, Eero Tikkanen, basso, Markku Ounaskari, rummut) <br>Jani Malmi on suomalaisen jazzin tyylikkäimpiä kitaristeja hienovaraisessa ilmaisussaan jazzin valtavirran rinnalla. Sävellykset tarjoavat matkoja kuvitteellisiin maailmoihin, joissa raskaammat puristukset ja sointivärit sekoittuvat rytmiin ja melodisesti herkkiin harmonioihin. Jani Malmilla on luontainen yhteys intialaiseen klassiseen musiikkiin, ja hän on työskennellyt muun muassa Kamal Sabrin, Ulhas Bapetin ja Guitar Prasannan kanssa.</p><p>Markku Ounaskari on monipuolinen rumpali, jonka rytmitajuun ja nopeaan reagointiin voi luottaa jazzin useissa eri genreissä. Hän on soittanut yhdessä saksofonistien Sonny Heinilän, Manuel Dunkelin ja Esa Pietilän kanssa sekä monissa bändeissä ja kokoonpanoissa.</p><p>Basisti Eero Tikkanen on viime vuosina noussut suosituksi komppaajaksi suomalaisen jazzin kentällä. Eeron monipuolisuus ulottuu tanssittavasta groovejazzista aina vapaan jazzin projekteihin. Tikkasella riittää lavakarismaa ja taiteellista ilmaisuvoimaa. Tikkanen soittaa muun muassa seuraavissa yhtyeissä: Mopo, Mikko Innanen 10+, Magnetia Orkesteri sekä Joose Keskitalon yhtye.</p><p>JUHANI AALTONEN, HUILU & RAOUL BJÖRKENHEIM, KITARA <br>Juhani Aaltonen on suomalainen jazzlegenda ja vapaan improvisaation hengen ikoni, jonka sielukasta soittoa on kuultu kuuden vuosikymmenen ajan. Tenorisaksofonistaan tunnettuna hän keskittyy tässä duossa huiluun ja luo lyyristä musiikkimaailmaa yhdessä Raoul Björkenheimin ja Raoulin kaksikaulaisen sähkökitaran kanssa.</p><p>Yhteistyön lähes ylimaallinen kommunikaatio synnyttää lennosta uusia kappaleita, jotka sulautuvat alkuperäisiin sävellyksiin. Molemmat tekivät vuosia yhteistyötä ainutlaatuisen jazzikonin Edward Vesalan kanssa, ja ovat myös vahvasti esillä Vesalan diskografiassa.</p>", "sv": "<p>Mästare i indisk klassisk musik och mästare i finsk jazz möts och spelar tillsammans i \"öst möter väst\"-anda. Klassisk indisk musik och indo jazz.</p><p>Saurabh Vartak & Saleel Tambe, Jani Malmi Trio (Jani Malmi, Eero Tikkanen, Markku Ounaskari) & Juhani Aaltonen & Raoul Björkenheim.</p><p>KONSERT PROGRAMMET</p><p><b>Del ett: Indisk klassisk konsert (40 minuter)</b></p><p>Saurabh Vartak, flöjt & Saleel Tambe, tabla</p><p>Intervalltid 20 minuter</p><p><b>Del två: Indo Jazz Concert (40 minuter)</b></p><p>Jani Malmi Trio <br>Jani Malmi, gitarr, Eero Tikkanen, bas, Markku Ounaskari, trummor</p><p>Saurabh Vartak, flöjt & Saleel Tambe, tabla</p><p>Intervalltid 20 minuter</p><p><b>Tredje delen: Indo Jazz konsert fortsätter (40 minuter)</b></p><p>Juhani Aaltonen, flöjt & Raoul Björkenheim, gitarr</p><p>Saurabh Vartak, flöjt & Saleel Tambe, tabla</p><p>Konsertens längd är 160 minuter, två pauser</p>", "en": "<p>Indian upcoming masters present their own Classical Indian music and collaborate with Finnish Jazz icons & masters in the spirit of East meets West.</p><p>Saurabh Vartak & Saleel Tambe, Jani Malmi Trio (Jani Malmi, Eero Tikkanen, Markku Ounaskari), Juhani Aaltonen & Raoul Björkenheim</p><p><b>First part: Indian Classical Concert (40 minutes)</b></p><p>Saurabh Vartak, flute & Saleel Tambe, tabla</p><p>Intermission 20 minutes</p><p><b>Second part: Indo Jazz Concert (40 minutes)</b></p><p>Jani Malmi Trio <br>Jani Malmi, guitar, Eero Tikkanen, bass, Markku Ounaskari, drums</p><p>Saurabh Vartak, flute & Saleel Tambe, tabla</p><p>Intermission 20 minutes</p><p><b>Third Part: Indo Jazz Concert (40 minutes)</b></p><p>Juhani Aaltonen, flute & Raoul Björkenheim, guitar</p><p>Saurabh Vartak, flute & Saleel Tambe, tabla</p><p>Time total 160 minutes</p><p>SAURABH VARTAK, INDIAN CLASSICAL FLUTE <br>Saurabh Vartak has his musical background in Indian Classical music. He started his music studies early. Besides solo concerts he performs Indian Classical concerts accompanied by tabla and other instruments. Saurabh is known as a disciple of legendary flautist Pandit Hariprasad Chaurasia and is still performing with him. “Music is like meditation”, Chaurasia has said, and “flute is god’s own instrument because Lord Krishna played it”. Saurabh is not only a performing artist but also works for film industry and popular music and as a teacher. Saurabh’s Flute Academy was founded in February 2018. In recent years Saurabh has been building his international career by touring abroad. <br> <br>SALEEL TAMBE, TABLA <br>Saleel Tambe is fortunate to have been associated since his childhood with musical stalwarts. Saleel continues to receive advanced Tabla training from Pt Ramdas Palsule, a disciple of Taalyogi Padmashree Pt Suresh Talwalkar. Saleel is equally adept in Tabla solos and accompaniment to Vocal, Instrumental & Kathak dance as well as fusion with western musicians. Over the last decade, he is fortunate to have performed with many renowned musicians, participating in festivals and events at most of the prestigious venues like House of Commons, Southbank Centre, Fairfield Halls, Victoria & Albert Museum. He has been associated with several music projects, radio, television shows. He has also contributed for several studio recordings and releases. <br> <br>JANI MALMI TRIO (Jani Malmi, guitar, Eero Tikkanen, bass, Markku Ounaskari, drums) <br>Jani Malmi is one of the most stylish guitarists in Finnish jazz looking discretely for an expression beside the typical in jazz. His compositions are journeys into imaginary worlds with differing styles. He has a natural connection to Indian Classical music and has worked with Indian classical musicians like Kamal Sabri, Ulhas Bapet and Guitar Prasanna.</p><p>Markku Ounaskari is a versatile drummer whose delicate sense of rhythm and fast reacting can be trusted in various jazz genres. His skills have been heard in bands of i.a. saxophonists Sonny Heinilä, Manuel Dunkel and Esa Pietilä.</p><p>Bassist Eero Tikkanen has become a sought-after bass player in the field of Finnish jazz. The versatility of the young bassist stretches from danceable groove to projects of free jazz. He is known as a charismatic and expressive live performer. Currently, Tikkanen plays in the ranks of such groups as Mopo, Mikko Innanen 10+, Magnetia Orkesteri and in the band of folk artist Joose Keskitalo. <br> <br>JUHANI AALTONEN, FLUTE & RAOUL BJÖRKENHEIM, GUITAR <br>Juhani Aaltonen is a living Finnish jazz legend, a true icon of the spirit of free improvisation, whose soulful playing spans six decades. Known mainly for his tenor sax, \"Junnu\" focuses on flutes in this duo and creates a lyrical music world with Raoul Björkenheim who contributes on his double-neck electric guitar. Their communication allows them to create new pieces on the fly, which they intersperse with original compositions. Both spent years collaborating with another Finnish icon, Edward Vesala, whose music stands out for its unfettered originality, and they are both prominent in Vesala’s discography.</p>" }, "name": { "fi": "Indian Classical & Indo Jazz -konsertti", "sv": "Indian Classical & Indo Jazz konsert", "en": "Indian Classical & Indo Jazz Concert" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61975/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }