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=74
{ "meta": { "count": 1627, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=75", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=73" }, "data": [ { "id": "kulke:61104", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5185, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:47.386834Z", "last_modified_time": "2023-10-09T13:30:47.386860Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737454.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5185/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-09T13:30:46.606802Z", "last_modified_time": "2023-11-14T06:13:26.149904Z", "date_published": null, "start_time": "2023-10-20T12: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": "Monet sukupolvet ovat rakastaneet tätä ajatonta klassikkoa ja sen kunnioitusta herättävää animaatiota." }, "provider_contact_info": null, "name": { "fi": "Bambi (7) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78465452C2FBC34C496F3BA62C6C333D/Bambi_7_" }, "location_extra_info": null, "description": { "fi": "<p>Monet sukupolvet ovat rakastaneet tätä ajatonta klassikkoa ja sen kunnioitusta herättävää animaatiota.</p><p>Elämää mullistavassa seikkailussa Bambi lähtee parhaiden ystäviensä Rumpalin ja Kukan kanssa tutkimaan metsän ihmeitä ja haasteita, sekä täyttämään kohtalonsa metsän prinssinä. Täynnä huumoria ja sydäntä oleva Bambi on edelleen perheiden suosikki.<br> <br>Ikäraja: 7<br>Kesto: 70 min<br>Puhuttu suomeksi</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita 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>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61104/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61103", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5184, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:45.384028Z", "last_modified_time": "2023-10-09T13:30:45.384048Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737585.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5184/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-09T13:30:45.094688Z", "last_modified_time": "2023-11-14T06:13:26.080132Z", "date_published": null, "start_time": "2023-10-20T10:00:00Z", "end_time": "2023-10-20T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "12-vuotias Miina sekoaa, kun kuuluisa hiphop-tanssija ED Win muuttaa kaupunkiin ja aloittaa hänen koulussaan.", "sv": "12 åriga Mina blir bli blixtförälskad när hiphop-dansaren ED Win flyttar till stan och börjar i samma skola." }, "provider_contact_info": null, "name": { "fi": "Syysloman ilmaisleffa: Dancing queen (7)", "sv": "Höstlovsbio: Dancing queen (7)" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EF25DF99422E1CE8CC4C4779DCED2C22/Syysloman_ilmaisleffa_Dancing_queen_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EF25DF99422E1CE8CC4C4779DCED2C22/Hostlovsbio_Dancing_queen_7_" }, "location_extra_info": null, "description": { "fi": "<p>12-vuotias Miina sekoaa, kun kuuluisa hiphop-tanssija ED Win muuttaa kaupunkiin ja aloittaa hänen koulussaan.</p><p>Miina rakastuu ja kun ED ilmoittaa perustavansa uuden tanssiryhmän kaupungin tanssikilpailua varten, Miina päättä mennä koe-esiintymiseen. Ongelma on vain, että hän ei osaa tanssia.</p><p>Dancing Queen on feel-good-elokuva koko perheelle. Elokuva rakkaudesta, tanssista ja siitä että pitää joskus uskaltaa heittäytyä tuntemattomaan saadakseen sen mitä haluaa.</p>", "sv": "<p>12 åriga Mina blir bli blixtförälskad när hiphop-dansaren ED Win flyttar till stan och börjar i samma skola.</p><p>Ed berättar att han vill starta en ny dansgrupp som ska ställa upp i en stor tävling. Mina beslutar på direkten att hon ska försöka komma med. Det är bara ett problem: Hon kan inte dansa.</p><p>Dancing Queen är en feelgood-film för hela familjen. En film om kärlek, dans och att våga kasta sig ut i det okända för att få det man vill ha.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61103/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60543", "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": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/a-la-malmi-malmitalo-17268567/", "sv": "https://www.lippu.fi/event/a-la-malmi-malmitalo-17268567/", "en": "https://www.lippu.fi/event/a-la-malmi-malmitalo-17268567/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:49.837758Z", "last_modified_time": "2023-09-07T14:24:49.837782Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727050.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:48.978523Z", "last_modified_time": "2023-11-14T06:13:25.996010Z", "date_published": null, "start_time": "2023-10-19T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Klubilla luvassa polyrytmien ja beatin kutomaa sykettä ja matka, jolla musiikin aikakaudet sulautuvat luonnollisesti toisiinsa.", "sv": "Klubben utlovar en puls vävd av polyrytmer och beats och en resa där musikens epoker naturligt smälter in i varandra.", "en": "Unique soundscapes and compelling grooves. Stories of spells and curses, the dreams of a shepherd." }, "provider_contact_info": null, "name": { "fi": "Maija Kauhanen ja Pauanne – A la Malmi", "sv": "Maija Kauhanen och Pauanne – A la Malmi", "en": "Maija Kauhanen and Pauanne – A la Malmi" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E5A9E5E4002651E54E9087785F4AA9C4/Maija_Kauhanen_ja_Pauanne", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E5A9E5E4002651E54E9087785F4AA9C4/Maija_Kauhanen_och_Pauanne", "en": "http://www.malmitalo.fi/en/events/event/E5A9E5E4002651E54E9087785F4AA9C4/Maija_Kauhanen_and_Pauanne" }, "location_extra_info": null, "description": { "fi": "<p>Klubilla luvassa polyrytmien ja beatin kutomaa sykettä ja matka, jolla musiikin aikakaudet sulautuvat luonnollisesti toisiinsa.</p><p><b>Maija Kauhanen</b></p><p>Vahva laulu, rouhea kantele ja groovaavat lyömäsoittimet. Polyrytmien ja beatin kutoma syke yhdistettynä hypnoottisiin melodioihin luovat ainutlaatuisen soundimaailman vain yhden muusikon voimin.</p><p>Suomen kansainvälisesti menestyneimpiin kansanmuusikoihin lukeutuva Maija Kauhanen julkaisi odotetun toisen albuminsa Menneet toukokuussa 2022. Uuden albumin myötä hän ottaa harppauksen laulaja-lauluntekijyyteen päin, pitäen samalla kiinni juurevasta tyylistään sekä rikkaasta suomalais-karjalaisesta traditiosta. Musiikillisia vaikutteita kuullaan kansanmusiikista, indiepopista ja elokuvamusiikista ja kappaleet pohtivat omaa tilaa ja rajoja. Miten oma tila otetaan ja kuka sinne pääsee?</p><p>Maija Kauhasen erikoistumisalue on 23-kielinen Saarijärven kantele ja sen perinteinen soittotyyli pientä puutikkua plektrana käyttäen. Hän kehittää jatkuvasti uusia soittotekniikoita ja kantelemalleja isänsä, soitinrakentaja <b>Kari Kauhasen</b> kanssa. Kauhasen uuteen soundipalettiin mahtuu matkoilta hankittuja tuulikelloja, emaliasioita kirpputoreilta sekä innovatiivisia soittotekniikoita muun muassa jousta käyttäen.</p><p>Viime vuosina Maija Kauhasen keikkalistalla ovat olleet muun muassa Celtic Connections, FOCUS Wales ja WOMAD Iso-Britanniassa, Folk Alliance International Kanadassa, Il Festival de Músicas del Mundo Kolumbiassa, Korrö Folkfestival, Urkult Folkfest ja Malmöfestivalen Ruotsissa, Tønder Festival Tanskassa, Kalottspel Norjassa, World Culture Festival Hong Kongissa, Roue Baruch Bretagnessa, Festival Notes Polaires Sveitsissä ja Festival Porta Latviassa.</p><p><b>Pauanne</b></p><p>Liikku linnat, järkky järvet, <br>Vuoret vaskiset vapisi <br>jyskäissä Ukon jyrinän, <br>pauantehen pauhatessa.<br> <br>Pauanne keinuttaa kuulijansa matkalle, jossa musiikin aikakaudet sulautuvat luonnollisesti toisiinsa. Viime vuosisadan alkupuolella tallennetut arkistonauhat vievät kuulijan äänimaisemaan, joka on koruton, arkinen mutta samalla lohduttava. Viulu, Hammond-urut sekä erilaiset akustiset ja elektroniset lyömäsoittimet luovat osaltaan ajattoman tunnelman.</p><p>Pauanne puhuu kansanmusiikin kieltä modernilla aksentilla siten, että traditio taipuu meidän vuosituhannen ihmisten ymmärrettäväksi.</p><p><b>Kukka Lehto</b> / viulu, koskettimet, arkistonauhat <br><b>Tero Pennanen</b> / Hammond B3 -urut, koskettimet <br><b>Oskari Lehtonen</b> / rummut ja perkussiot</p><p><i>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia upeissa mutta silti kodikkaissa konserttisalipuitteissa. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoiden eteen parhaat itsenäisen musiikin tekijät, joita maa päällään kantaa.</i></p>", "sv": "<p>Klubben utlovar en puls vävd av polyrytmer och beats och en resa där musikens epoker naturligt smälter in i varandra.</p><p><b>Maija Kauhanen</b><br>Kraftfull sång, en ruff kantele och groovy slagverk – polyrytmer och beat som vävs samman och kombineras med hypnotiska melodier skapar en unik soundvärld med bara en musiker bakom styret. <br>Maija Kauhanen som är en av Finlands internationellt mest framgångsrika folkmusiker släppte sitt efterlängtade andra album i maj 2022.</p><p><b>Pauanne</b><br>Pauanne sätter publiken i gungning och tar den med sig på en resa där olika musikaliska tidsåldrar smälter samman på ett naturligt sätt. Arkivbanden som spelats in under tidigt 1900-tal tar åhöraren till ett ljudlandskap som är flärdfritt, alldagligt men samtidigt trösterikt.</p><p>Kukka Lehto<br>Tero Pennanen<br>Oskari Lehtonen</p><p><i>A la Malmi är Malms kulturhus klubbserie som presenterar den mest intressanta, färskaste och trendigaste inhemska musiken akustiskt i en flott konsertsalsmiljö. A la Malmi struntar i genregränser och låter de allra bästa upphovsmännen till självständig musik kliva upp på scenen.</i></p>", "en": "<p>Unique soundscapes and compelling grooves. Stories of spells and curses, the dreams of a shepherd.</p><p><b>Maija Kauhanen – One-Woman Orchestra</b></p><p>Expressive voice, deep-rooted kantele and inventive percussion: fleet-fingered virtuoso and one-woman band Maija Kauhanen specializes in Finnish kantele and its old and rare playing techniques. Weaving together polyrhythms and organic beats, she creates unique soundscapes and compelling grooves.<br>Multi-awarded Maija Kauhanen is one of the most internationally successful folk musicians from Finland and has toured over 30 countries around Europe, Asia and America.</p><p>On her latest album Menneet (The Past, Nordic Notes 2022) Kauhanen takes a step towards being a singer-songwriter without losing the strong roots in tradition. The music draws influences from folk music, indie pop and film scores and tells stories of personal space and setting one’s boundaries. How much space is enough? How can a personal space be maintained and cherished, without letting it hold us back?</p><p>Kauhanen specializes in the rare Saarijärvi kantele from Central Finland. She plays the kantele in various tunings and with different playing styles, using her fingers, tiny wooden sticks as plectrums, a cello bow, an E-bow as well as other preparation materials like Blu Tack. Her percussion set consists of a kick drum, juju bean shaker, cymbals, wind bells, enamel pots and bowls, silver plates, metal muffin tins, trays and assorted kitchen utensils found at flea markets.</p><p>Maija Kauhanen’s vocal technique is inspired by imitating instrument sounds, rural music traditions of Finland and Karelia as well as the Swedish kulning vocal tradition.</p><p><b>Pauanne</b></p><p>Pagan spirits still slumber in the depths of the Finnish forests – Pauanne has set out to awaken them. Stories of spells and curses, the dreams of a shepherd, 17th-century witch hunts and magical iron fences that repel invaders.</p><p>The trio’s archive research has unearthed a wealth of songs from the long-lost, non-Christian tradition of Finnish folk music.</p><p>Violinist <b>Kukka Lehto</b> and <b>Tero Pennanen</b> on Hammond organ and keyboards collect, arrange and further compose the repertoire while percussionist <b>Oskari Lehtonen</b> provides the rhythmic enhancement.</p><p>Pauanne is fascinated by the “outrageous beliefs” of the past and its endemic prejudices, paranoia, fear of foreigners and persecution of women. In their songs and videos they show that these traits are still very much alive, just dressed in modern clothes. The debut album Pauanne was released in 2019 by Nordic Notes (DE).</p><p>In recent times Pauanne has performed at WOMEX The World Music Expo, WOMAD Las Palmas, Folkelarm Oslo, Nordic Folk Alliance Gothenburg and Haapavesi Folk to name a few.<br> <br>Kukka Lehto – violin, keyboards, archive tapes<br>Tero Pennanen – hammond B3 organ, keyboards, archive tapes<br>Oskari Lehtonen – drums, percussions, archive tapes</p><p><i>A la Malmi club series by Malmitalo presents the most interesting new Finnish music on its way to fame in acoustic form in an amazing concert hall environment. A la Malmi does not care about genres. Instead, it serves up the best creators of independent music in the country.</i></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60543/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60529", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4430, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:46.431052Z", "last_modified_time": "2023-09-07T14:24:46.431073Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731323.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4430/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:24:46.280344Z", "last_modified_time": "2023-11-14T06:13:25.545637Z", "date_published": null, "start_time": "2023-10-19T10: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": "Morris-kissa kiertää rinta rottingilla kaupungista toiseen ratkomassa yllättäen ilmeneviä rottaongelmia, kömpelö pillipiipari Keith vanavedessään.", "sv": "Den makalöse Maurice är en berättelse om katten Maurice som reser från stad till stad och erbjuder sig stoltserande att lösa plötsliga råttproblem.", "en": "‘The Amazing Maurice’ is the story of Morris the cat, who travels from town to town with his head held high to solve unexpected rat problems, with Keith the clumsy piper in tow." }, "provider_contact_info": null, "name": { "fi": "Syyslomaleffa: Mahtava Morris (7)", "sv": "Höstlovsfilm: Den makalöse Maurice (7)", "en": "Autumn holiday film: The Amazing Maurice (7)" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/53C61F82AC9256D9BCB099F07B9A6935/Syyslomaleffa_Mahtava_Morris_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/53C61F82AC9256D9BCB099F07B9A6935/Hostlovsfilm_Den_makalose_Maurice_7_", "en": "http://www.malmitalo.fi/en/events/event/53C61F82AC9256D9BCB099F07B9A6935/Autumn_holiday_film_The_Amazing_Maurice_7_" }, "location_extra_info": null, "description": { "fi": "<p>Morris-kissa kiertää rinta rottingilla kaupungista toiseen ratkomassa yllättäen ilmeneviä rottaongelmia, kömpelö pillipiipari Keith vanavedessään.</p><p>Kun Keith lurittelee huilullaan, rotat marssivat pois kiitollisten kyläläisten riemuksi. Kyläläiset tosin eivät koskaan saa tietää, että yllättävän oppineet rotat ovat mukana juonessa. Morris, Keith ja rottalauma käärivät myhäillen palkkiorahat taskuihinsa.</p><p>Homma toimii mainiosti, kunnes yllättävä huijareiden joukko saapuu kylään. Siellä he kohtaavat satuja ja tarinoita rakastavan kirjatoukka Malician ja sekalainen seurakunta päätyy ratkomaan yhdessä kylän outoa mysteeriä. Missä ovat kaikki paikalliset rotat?</p><p>Mahtava Morris perustuu fantasiakirjailijan Terry Pratchettin Carnegie-palkittuun lastenkirjaan Mahtava Morris ja sivistyneet siimahännät.</p><p>Kesto: 93 min<br>Ikäraja: 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Den makalöse Maurice är en berättelse om katten Maurice som reser från stad till stad och erbjuder sig stoltserande att lösa plötsliga råttproblem.</p><p>Hans resesällskap är den klumpiga flöjtblåsaren Keith.</p><p>Längd: 93 min <br>Åldersgrän: 7<br>Språk: Finska</p><p>Fritt inträde!</p>", "en": "<p>‘The Amazing Maurice’ is the story of Morris the cat, who travels from town to town with his head held high to solve unexpected rat problems, with Keith the clumsy piper in tow.</p><p>Duration: 93 min <br>Age limit: 7<br>Language: Finnish</p><p>Free entry!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60529/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60528", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4429, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:46.000689Z", "last_modified_time": "2023-09-07T14:24:46.000718Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731711.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4429/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:24:45.759236Z", "last_modified_time": "2023-11-14T06:13:25.469965Z", "date_published": null, "start_time": "2023-10-19T08:00:00Z", "end_time": "2023-10-19T10: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": "Hupsut pomppuötökät piiloutuvat boksiin!", "sv": "De tokiga skuttande småkrypen gömmer sig i asken!", "en": "Silly bugs hide in a box!" }, "provider_contact_info": null, "name": { "fi": "Syyslomatyöpaja: Ötökkäpiilo – piiloötökkä", "sv": "Höstlovsverkstad: Ötökkäpiilo – piiloötökkä", "en": "Autumn holiday workshop Bug hide – hiding bug" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B7FAFEE64D994ECABC789BC368A2BE0F/Syyslomatyopaja_Otokkapiilo_piilootokka", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B7FAFEE64D994ECABC789BC368A2BE0F/Hostlovsverkstad_Otokkapiilo_piilootokka", "en": "http://www.malmitalo.fi/en/events/event/B7FAFEE64D994ECABC789BC368A2BE0F/Autumn_holiday_workshop_Bug_hide_hiding_bug" }, "location_extra_info": null, "description": { "fi": "<p>Hupsut pomppuötökät piiloutuvat boksiin!</p><p>Taittele taskukokoinen rasia paperista ja talleta rasiaan aivan yllättävä öttiäinen!</p><p>Työpajan suunnittelu ja toteutus: Runoropinoita</p><p>Malmitalon aulassa</p><p>Vapaa pääsy!</p>", "sv": "<p>De tokiga skuttande småkrypen gömmer sig i asken!</p><p>Vik en pappersask i fickstorlek och spara en överraskande varelse i den!</p>", "en": "<p>Silly bugs hide in a box!</p><p>Fold a pocket-sized box out of paper and store a surprising little bug in the box!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60528/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60527", "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": [], "price": { "fi": "22 € / 14,50 €", "sv": "22 € / 14,50 €", "en": "22 € / 14,50 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/", "sv": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/", "en": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4428, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:44.733559Z", "last_modified_time": "2023-09-07T14:24:44.733584Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_720852.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4428/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:43.858766Z", "last_modified_time": "2023-11-14T06:13:25.388360Z", "date_published": null, "start_time": "2023-10-18T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Suomen big band -musiikin elävä kapellimestarilegenda Petri Juutilainen ja swing big bandin luottosolisti Juki Välipakka yhdistävät voimansa juhlavuosiensa merkeissä!", "sv": "Den levande dirigentlegenden inom finsk storbandsmusik Petri Juutilainen och Swing Big Bands go to-solist Juki Välipakka förenar krafterna i firandet av sina jubileumsår!", "en": "Petri Juutilainen, the living conductor legend of Finnish big band music, and Juki Välipakka, the swing big band’s trusted soloist, join forces to celebrate their anniversaries!" }, "provider_contact_info": null, "name": { "fi": "The Great Helsinki Swing Big Band: Swingin' Jubilee!", "sv": "The Great Helsinki Swing Big Band: Swingin' Jubilee!", "en": "The Great Helsinki Swing Big Band: Swingin’ Jubilee!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/77EEA2B24ADBBB5246D50825070B40A2/The_Great_Helsinki_Swing_Big_Band_Swingin_Jubilee_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/77EEA2B24ADBBB5246D50825070B40A2/The_Great_Helsinki_Swing_Big_Band_Swingin_Jubilee_", "en": "http://www.malmitalo.fi/en/events/event/77EEA2B24ADBBB5246D50825070B40A2/The_Great_Helsinki_Swing_Big_Band_Swingin_Jubilee_" }, "location_extra_info": null, "description": { "fi": "<p>Suomen big band -musiikin elävä kapellimestarilegenda Petri Juutilainen ja swing big bandin luottosolisti Juki Välipakka yhdistävät voimansa juhlavuosiensa merkeissä!</p><p>Luvassa on autenttinen swing-show, jossa svengataan mm. Nat King Colen ja Frank Sinatran tahtiin!</p>", "sv": "<p>Den levande dirigentlegenden inom finsk storbandsmusik Petri Juutilainen och Swing Big Bands go to-solist Juki Välipakka förenar krafterna i firandet av sina jubileumsår!</p>", "en": "<p>Petri Juutilainen, the living conductor legend of Finnish big band music, and Juki Välipakka, the swing big band’s trusted soloist, join forces to celebrate their anniversaries!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60527/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61052", "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": [], "price": { "fi": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5179, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:40.086930Z", "last_modified_time": "2023-10-09T13:30:40.086955Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737387.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5179/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:30:39.103538Z", "last_modified_time": "2023-11-14T06:13:25.245570Z", "date_published": null, "start_time": "2023-10-18T15: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": "Valoa valoa valoa on elokuva ensirakkaudesta, sen häikäisevästä valosta ja elämänpituiseksi venyneistä varjoista." }, "provider_contact_info": null, "name": { "fi": "Valoa valoa valoa (12) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/234DF88F7638A659E89583170C839DB6/Valoa_valoa_valoa_12_" }, "location_extra_info": null, "description": { "fi": "<p>Valoa valoa valoa on elokuva ensirakkaudesta, sen häikäisevästä valosta ja elämänpituiseksi venyneistä varjoista.</p><p>Elokuva perustuu kirjailija <b>Vilja-Tuulia Huotarisen</b> samannimiseen romaaniin, joka voitti Finlandia Juniorin ilmestyessään vuonna 2011.</p><p>Keväällä 1986 Tsernobylin ydinvoimalassa Neuvostoliitossa räjähtää ja hämäläiseen pikkukylään saapuu tyttö nimeltä Mimi, joka saa teini-ikäisen Mariian elämän hetkeksi täyteen valoa. Kahdenkymmenen vuoden jälkeen aikuistunut Mariia tulee vierailulle lapsuudenkotiinsa ja palaa muistoissaan nuoruutensa kesään ja sitä seuranneeseen traagiseen syksyyn.</p><p>Ensirakkauden kasarikesään palatessa, Mariian on päästettävä irti syyllisyydestä sekä annettava anteeksi muillekin kuin itselleen.</p><p>Kesto 91 min<br>Ikäraja 12<br>Ensi-ilta 13.10.2023<br>Tekstitys suomeksi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61052/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60526", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4426, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:42.630207Z", "last_modified_time": "2023-09-07T14:24:42.630229Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731290.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4426/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:24:42.473830Z", "last_modified_time": "2023-11-14T06:13:24.878765Z", "date_published": null, "start_time": "2023-10-18T10: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": "Valtakunnan etsityin ja hurmaavin varas Flynn Rider piiloutuu syrjäiseen torniin.", "sv": "Rikets mest eftersökta och charmanta tjuv Flynn Rider gömmer sig i ett ensamt torn, där han träffar Rapunzel, en vacker och ettrig flicka vars 20 meter långa, gyllene hårsvall ger henne magiska krafter.", "en": "Flynn Rider, the most wanted and charming thief in the kingdom, hides in a remote tower and meets Rapunzel, a beautiful and feisty girl with superpowers thanks to her 20-metre-long golden hair." }, "provider_contact_info": null, "name": { "fi": "Syyslomaleffa: Kaksin karkuteillä (7)", "sv": "Höstlovsfilm: Trassel (7)", "en": "Autumn holiday film: Tangled (7)" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6DA981C5060E6A8B953275D72BCD1231/Syyslomaleffa_Kaksin_karkuteilla_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6DA981C5060E6A8B953275D72BCD1231/Hostlovsfilm_Trassel_7_", "en": "http://www.malmitalo.fi/en/events/event/6DA981C5060E6A8B953275D72BCD1231/Autumn_holiday_film_Tangled_7_" }, "location_extra_info": null, "description": { "fi": "<p>Valtakunnan etsityin ja hurmaavin varas Flynn Rider piiloutuu syrjäiseen torniin.</p><p>Siellä hän tapaa Tähkäpään, kauniin ja kipakan tytön, jolla on 20-metristen kultaisten kutriensa ansiosta supervoimia.</p><p>Kesto: 100 min<br>Ikäraja: 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Rikets mest eftersökta och charmanta tjuv Flynn Rider gömmer sig i ett ensamt torn, där han träffar Rapunzel, en vacker och ettrig flicka vars 20 meter långa, gyllene hårsvall ger henne magiska krafter.</p><p>Längd: 100 min<br>Åldersgräns: 7<br>Språk: finska</p><p>Fritt inträde!</p>", "en": "<p>Flynn Rider, the most wanted and charming thief in the kingdom, hides in a remote tower and meets Rapunzel, a beautiful and feisty girl with superpowers thanks to her 20-metre-long golden hair.</p><p>Duration: 100 min<br>Age limit: 7<br>Language: Finnish</p><p>Free entry!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60526/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60525", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4425, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:42.257367Z", "last_modified_time": "2023-09-07T14:24:42.257398Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731710.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4425/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:24:42.103297Z", "last_modified_time": "2023-11-14T06:13:24.803986Z", "date_published": null, "start_time": "2023-10-18T08:00:00Z", "end_time": "2023-10-18T10: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": "Värikkäät jätskitikkukoppikset valtaavat askartelupöydän. Tervetuloa luomaan oma upea kuoriaisesi!", "sv": "De färggranna skalbaggarna tar över hela pysselbordet. Välkommen att skapa din egen fantastiska skalbagge!", "en": "Colourful ice cream stick beetles take over the craft table. Come and create your own fabulous beetle!" }, "provider_contact_info": null, "name": { "fi": "Syyslomatyöpaja: Jätskitikkukoppikset", "sv": "Höstlovsverkstad: Jätskitikkukoppikset", "en": "Autumn holiday workshop: Ice cream stick beetles" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F1848B7FF188C8F40E901658D6237544/Syyslomatyopaja_Jatskitikkukoppikset", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F1848B7FF188C8F40E901658D6237544/Hostlovsverkstad_Jatskitikkukoppikset", "en": "http://www.malmitalo.fi/en/events/event/F1848B7FF188C8F40E901658D6237544/Autumn_holiday_workshop_Ice_cream_stick_beetles" }, "location_extra_info": null, "description": { "fi": "<p>Värikkäät jätskitikkukoppikset valtaavat askartelupöydän. Tervetuloa luomaan oma upea kuoriaisesi!</p><p>Löytyykö siltä sävelsiivet ja kukkasin kuvitettu kuori? Vai saako koppis koristeeksi tarinoita kirjan sivuilta? Työpajassa käytetään kierrätysmateriaaleja.</p><p>Työpajan suunnittelu ja toteutus: Runoropinoita</p><p>Malmitalon aulassa<br>Vapaa pääsy!</p>", "sv": "<p>De färggranna skalbaggarna tar över hela pysselbordet. Välkommen att skapa din egen fantastiska skalbagge!</p><p>Har din skalbagge vingar fulla av noter och ett blommande skal? Eller pyntar du den med berättelser från en bok? I verkstaden används återvunna material.</p>", "en": "<p>Colourful ice cream stick beetles take over the craft table. Come and create your own fabulous beetle!</p><p>Does it have musical wings and a floral illustrated shell? Or will you decorate it with stories from the pages of a book? We will use recycled materials in this workshop.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60525/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60996", "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": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5171, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:31.788363Z", "last_modified_time": "2023-10-09T13:30:31.788382Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730884.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5171/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:30:30.703990Z", "last_modified_time": "2023-11-14T06:13:24.351616Z", "date_published": null, "start_time": "2023-10-17T14: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 yhteislaulut – kuukauden paras tiistai!", "sv": "Allsång på Malms kulturhus - den bästa tisdagen i månaden!", "en": "Sing-alongs at Malmitalo – best Tuesday of the month!" }, "provider_contact_info": null, "name": { "fi": "Malmitalon yhteislaulut", "sv": "Allsång på Malms kulturhus", "en": "Sing-alongs at Malmitalo" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C9ED8DCC8871CB5BF2D5DF500D4FFA46/Malmitalon_yhteislaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C9ED8DCC8871CB5BF2D5DF500D4FFA46/Allsang_pa_Malms_kulturhus", "en": "http://www.malmitalo.fi/en/events/event/C9ED8DCC8871CB5BF2D5DF500D4FFA46/Sing-alongs_at_Malmitalo" }, "location_extra_info": null, "description": { "fi": "<p>Malmitalon yhteislaulut – kuukauden paras tiistai!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla saa Malmisalissa taas laulaa ihan sydämensä kyllyydestä!</p><p>Syksyn yhteislaulut järjestetään 12.9., 17.10., 14.11. sekä 19.12. klo 17.00 Malmisalissa. Tervetuloa!</p>", "sv": "<p>Allsång på Malms kulturhus - den bästa tisdagen i månaden!</p><p>Nu får publiken åter sjunga för full hals i Malmsalen under ledning av Jukka Okkonen och Pauli Kainulainen!</p><p>Vårens allsång ordnas 12.9, 17.10, 14.11 samt 19.12 kl. 17.00 i Malmsalen.</p><p>Välkommen!</p>", "en": "<p>Sing-alongs at Malmitalo – best Tuesday of the month!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, you can once again sing your heart out in Malmisali!</p><p>Spring sing-alongs are held in Malmisali on 12 September, 17 October, 14 November and 19 December at 17.00.</p><p>We look forward to seeing you!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60996/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60524", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4424, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:41.831885Z", "last_modified_time": "2023-09-07T14:24:41.831907Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731289.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4424/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:24:40.854233Z", "last_modified_time": "2023-11-14T06:13:24.201209Z", "date_published": null, "start_time": "2023-10-17T10: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": "Luca on nuoren pojan aikuistumistarina jäätelön, pastan ja skootteriajeluiden parissa erään unohtumattoman kesän aikana.", "sv": "Luca är en uppväxtberättelse om en ung pojke som upplever en oförglömlig sommar full av glass, pasta och skoterturer.", "en": "‘Luca’ is a young boy’s coming-of-age story centred around ice cream, pasta and scooter rides during one unforgettable summer." }, "provider_contact_info": null, "name": { "fi": "Syyslomaleffa: Luca (7)", "sv": "Höstlovsfilm: Luca (7)", "en": "Autumn holiday film: Luca (7)" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/35A078AC2B81BA2FD4CDDDCD6F3A1458/Syyslomaleffa_Luca_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/35A078AC2B81BA2FD4CDDDCD6F3A1458/Hostlovsfilm_Luca_7_", "en": "http://www.malmitalo.fi/en/events/event/35A078AC2B81BA2FD4CDDDCD6F3A1458/Autumn_holiday_film_Luca_7_" }, "location_extra_info": null, "description": { "fi": "<p>Luca on nuoren pojan aikuistumistarina jäätelön, pastan ja skootteriajeluiden parissa erään unohtumattoman kesän aikana.</p><p>Italian Rivieralle kauniiseen merenrantakaupunkiin sijoittuvassa Disneyn ja Pixarin alkuperäiselokuvassa Luca-poika seikkailee yhdessä ystävänsä Alberton kanssa, mutta kaiken hauskan uhkana on syvä salaisuus: he ovat merihirviöitä toisesta, merenalaisesta maailmasta.</p><p>Lucan on ohjannut Oscar-ehdokas <b>Enrico Casarosa</b> (La Luna) ja tuottanut <b>Andrea Warren</b> (Lava, Autot 3).</p><p>Kesto: 95 min<br>Ikäraja: 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Luca är en uppväxtberättelse om en ung pojke som upplever en oförglömlig sommar full av glass, pasta och skoterturer.</p><p>Luca delar dessa äventyr med sin vän, Alberto, men allt roligt hotas av en dold hemlighet: de är sjömonster från en annan värld under vattenytan.</p><p>Längd: 95 min <br>Åldersgräns: 7<br>Språk: finska</p>", "en": "<p>‘Luca’ is a young boy’s coming-of-age story centred around ice cream, pasta and scooter rides during one unforgettable summer.</p><p>Luca goes on adventures with his friend Alberto, but underneath all the fun is a deep secret: they are sea monsters from another world, under the sea.</p><p>Duration: 95 min <br>Age limit: 7<br>Language: Finnish</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60524/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60523", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4422, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:38.849339Z", "last_modified_time": "2023-09-07T14:24:38.849361Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731709.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4422/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:24:38.705937Z", "last_modified_time": "2023-11-14T06:13:24.051379Z", "date_published": null, "start_time": "2023-10-17T08:00:00Z", "end_time": "2023-10-17T10: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": "Metsäneläinten pyykkipäivänä tehdään pyykkipoikaeläimiä!", "sv": "På skogsdjurens tvättdag skapar vi djur av klädnypor!", "en": "Let’s make animals from clothes pegs on wild animals’ laundry day!" }, "provider_contact_info": null, "name": { "fi": "Syyslomatyöpaja: Metsäneläinten pyykkipäivä", "sv": "Höstlovsverkstad: Skogsdjurens tvättdag", "en": "Autumn holiday workshop Wild animals’ laundry day" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CDFF52037D25BCC0EE684537AF60D146/Syyslomatyopaja_Metsanelainten_pyykkipaiva", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CDFF52037D25BCC0EE684537AF60D146/Hostlovsverkstad_Skogsdjurens_tvattdag", "en": "http://www.malmitalo.fi/en/events/event/CDFF52037D25BCC0EE684537AF60D146/Autumn_holiday_workshop_Wild_animals_laundry_day" }, "location_extra_info": null, "description": { "fi": "<p>Metsäneläinten pyykkipäivänä tehdään pyykkipoikaeläimiä!</p><p>Askartele nallenmörrikkä, pieni pupunen, harmaankirjava hiirulainen tai joku muu mieleisesi eläinihanuus.</p><p>Suunnittelu ja toteutus: Runoropinoita</p><p>Työpaja on Malmitalon aulassa, vapaa pääsy!</p>", "sv": "<p>På skogsdjurens tvättdag skapar vi djur av klädnypor!</p><p>Pyssla en lurvig nalle, en liten kanin, en gråspräcklig liten mus eller något annat underbart djur som du gillar.</p>", "en": "<p>Let’s make animals from clothes pegs on wild animals’ laundry day!</p><p>Create a teddy bear, a little bunny, a grey mouse or any other animal you like.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60523/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61051", "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": [], "price": { "fi": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5167, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:21.946333Z", "last_modified_time": "2023-10-09T13:30:21.946362Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737385.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5167/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:30:21.741827Z", "last_modified_time": "2023-11-14T06:13:23.016430Z", "date_published": null, "start_time": "2023-10-14T15: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": "Valoa valoa valoa on elokuva ensirakkaudesta, sen häikäisevästä valosta ja elämänpituiseksi venyneistä varjoista." }, "provider_contact_info": null, "name": { "fi": "Valoa valoa valoa (12) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1BCCFEEBC4E0602826FA0159650BC540/Valoa_valoa_valoa_12_" }, "location_extra_info": null, "description": { "fi": "<p>Valoa valoa valoa on elokuva ensirakkaudesta, sen häikäisevästä valosta ja elämänpituiseksi venyneistä varjoista.</p><p>Elokuva perustuu kirjailija <b>Vilja-Tuulia Huotarisen</b> samannimiseen romaaniin, joka voitti Finlandia Juniorin ilmestyessään vuonna 2011.</p><p>Keväällä 1986 Tsernobylin ydinvoimalassa Neuvostoliitossa räjähtää ja hämäläiseen pikkukylään saapuu tyttö nimeltä Mimi, joka saa teini-ikäisen Mariian elämän hetkeksi täyteen valoa. Kahdenkymmenen vuoden jälkeen aikuistunut Mariia tulee vierailulle lapsuudenkotiinsa ja palaa muistoissaan nuoruutensa kesään ja sitä seuranneeseen traagiseen syksyyn.</p><p>Ensirakkauden kasarikesään palatessa, Mariian on päästettävä irti syyllisyydestä sekä annettava anteeksi muillekin kuin itselleen.</p><p>Kesto 91 min<br>Ikäraja 12<br>Ensi-ilta 13.10.2023<br>Tekstitys suomeksi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61051/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61081", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1235/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5165, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:18.594525Z", "last_modified_time": "2023-10-09T13:30:18.594571Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737448.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5165/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-09T13:30:18.455983Z", "last_modified_time": "2023-11-14T06:13:22.704487Z", "date_published": null, "start_time": "2023-10-14T12:00:00Z", "end_time": "2023-10-14T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!" }, "provider_contact_info": null, "name": { "fi": "Muumipeikko ja pyrstötähti (S) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/195CA93ADBD8F6855224BF244AC0FB3A/Muumipeikko_ja_pyrstotahti_S_" }, "location_extra_info": null, "description": { "fi": "<p>Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!</p><p>Eräänä sateisena iltana Muumilaakson rauhaisaan idylliin saapuu filosofiksi esittäytyvä Piisamirotta ennustamaan koko maapalloa kohtaavaa katastrofia. Yhtäkkiä kesä ei olekaan enää niin kuin ennen. Muumipeikon, Nipsun ja Pikku Myyn on lähdettävä vaikeakulkuiseen seikkailuun tähtitornivuoren huipulle selvittämään, onko maailmanloppu todella tulossa.</p><p>Elämän palaaminen uomiinsa edellyttää Muumilaakson väeltä ennennäkemätöntä sankaruutta. Matkalla kohdataan jännittäviä vaaroja, mutta myös luonnon ihmeitä ja uskomattomia aarteita – ja solmitaan korvaamattomia uusia ystävyyksiä. Tarinassa tavataan myös seikkailija Nuuskamuikkunen sekä viisas keksijä Niisku ja hänen siskonsa Niiskuneiti.</p><p>Vahvistunein joukoin kotiin Muumilaaksoon palattuaan on ystävyksillä entistäkin paremmat eväät niin pyörremyrskyiltä kuin pyrstötähdiltä suojautumiseen ja koko Muumi-perheen pelastamiseen. Tarvitaan vain kekseliäisyyttä, yhteishenkeä ja valmiutta auttaa apua tarvitsevia, jotta kaikki pysyvät turvassa merkillisiltä luonnonilmiöiltä.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61081/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60522", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/megasakki-malmitalo-17026921/", "sv": "https://www.lippu.fi/event/megasakki-malmitalo-17026921/", "en": "https://www.lippu.fi/event/megasakki-malmitalo-17026921/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4408, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:26.567682Z", "last_modified_time": "2023-09-07T14:24:26.567704Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729398.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4408/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:24:26.423685Z", "last_modified_time": "2023-11-14T06:13:22.631644Z", "date_published": null, "start_time": "2023-10-14T12: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": "Megasakin menevä musiikki ja iloinen tunnelma saavat kaikenikäiset pyllyt ylös penkeistä!", "sv": "Megasakkis fartfyllda musik och glada stämning får rumpan att lyfta från bänken, oavsett ålder!", "en": "Megasakki’s lively music and a happy atmosphere are guaranteed to get both young and old dancing!" }, "provider_contact_info": null, "name": { "fi": "Megasakki", "sv": "Megasakki", "en": "Megasakki" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5CD531366DDE1AAE0BDA174CC3CDF874/Megasakki", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5CD531366DDE1AAE0BDA174CC3CDF874/Megasakki", "en": "http://www.malmitalo.fi/en/events/event/5CD531366DDE1AAE0BDA174CC3CDF874/Megasakki" }, "location_extra_info": null, "description": { "fi": "<p>Megasakin menevä musiikki ja iloinen tunnelma saavat kaikenikäiset pyllyt ylös penkeistä!</p><p>Hauskojen ja oivaltavien sanoituksien äärellä viihtyvät niin lapset kuin aikuisetkin.</p><p>Megasakki on vuoden 2023 Emma-voittaja ja uusi lastenmusiikkiyhtye, joka tarjoilee kuulijoilleen parasta rytmimusiikkia: Soulia, Funkkia, RnB:tä, Hip Hoppia...</p><p><b>Megasakin kokoonpano:</b><br>Riikka Keränen/Tea Telepaatti – laulu<br>Elina Arlin/Säihky Suojeluskeiju – laulu<br>Anssi Tirkkonen/Aake Aikapoika – rummut, elektroniikka<br>Vesa Ojaniemi/Arvo Tarkka – basso, laulu, elektroniikka</p><p>Konsertti sopii koko perheelle.</p>", "sv": "<p>Megasakkis fartfyllda musik och glada stämning får rumpan att lyfta från bänken, oavsett ålder!</p><p>Både barn och vuxna njuter av de roliga och insiktsfulla texterna.</p><p><b>Megasakki</b><br>Riikka Keränen/Tea Telepaatti<br>Elina Arlin/Säihky Suojeluskeiju<br>Anssi Tirkkonen/Aake Aikapoika<br>Vesa Ojaniemi/Arvo Tarkka</p>", "en": "<p>Megasakki’s lively music and a happy atmosphere are guaranteed to get both young and old dancing!</p><p>Fun and clever lyrics entertain children and adults alike.</p><p><b>Megasakki</b><br>Riikka Keränen/Tea Telepaatti<br>Elina Arlin/Säihky Suojeluskeiju<br>Anssi Tirkkonen/Aake Aikapoika<br>Vesa Ojaniemi/Arvo Tarkka</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60522/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60521", "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": [], "price": { "fi": "34 €", "sv": "34 €", "en": "34 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/osmo-ikonen-feat-23-malmitalo-17268544/", "sv": "https://www.lippu.fi/event/osmo-ikonen-feat-23-malmitalo-17268544/", "en": "https://www.lippu.fi/event/osmo-ikonen-feat-23-malmitalo-17268544/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4405, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:24.135662Z", "last_modified_time": "2023-09-07T14:24:24.135692Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_723296.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4405/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:23.428401Z", "last_modified_time": "2023-11-14T06:13:22.402572Z", "date_published": null, "start_time": "2023-10-13T16: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": "Odotettu ja toivottu Osmo Ikonen feat. -kiertue on täällä!", "sv": "Den efterlängtade och önskade Osmo Ikonen feat. -turnén är här!", "en": "The long-awaited and anticipated Osmo Ikonen feat. tour is here!" }, "provider_contact_info": null, "name": { "fi": "Osmo Ikonen feat. -konsertti, vieraana Emma Salokoski | LOPPUUNMYYTY", "sv": "Osmo Ikonen feat. -konsert, som gäst Emma Salokoski | SLUTSÅLD", "en": "Osmo Ikonen feat. Emma Salokoski | SOLD OUT" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4AE38F20640949DF949D898EAEBB9081/Osmo_Ikonen_feat_-konsertti_vieraana_Emma_Salokoski_LOPPUUNMYYTY", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4AE38F20640949DF949D898EAEBB9081/Osmo_Ikonen_feat_-konsert_som_gast_Emma_Salokoski_SLUTSALD", "en": "http://www.malmitalo.fi/en/events/event/4AE38F20640949DF949D898EAEBB9081/Osmo_Ikonen_feat_Emma_Salokoski_SOLD_OUT" }, "location_extra_info": null, "description": { "fi": "<p>Odotettu ja toivottu Osmo Ikonen feat. -kiertue on täällä!</p><p><b>Osmo Ikonen</b> kutsuu vieraakseen Malmitalon konserttiin monipuolisen ja arvostetun laulaja-lauluntekijä, <b>Emma Salokosken</b>. Useista eri yhtyeyksistä tutut musiikkialan moniottelijat lyövät kättä päälle ja esittävät yhdessä tyylikkään kokonaisuuden omiaan, sekä lainattuja lauluja sekä kotimaasta että maailmalta.</p><p>Tätä musiikillista tyylikyyttä ja karismaa on nähtävissä harvoin, joten tämä kannattaa tulla kuulemaan ja kokemaan itse paikan päälle!<br> <br>Osmo Ikonen on laulaja/lauluntekijä/multi-instrumentalisti ja musiikkituottaja. Hänet tunnetaan soolouransa lisäksi <i>Sunrise Avenue</i> yhtyeen kosketinsoittajana, sekä mm. SuomiLOVE-ohjelman solistina ja sovittajana. <br> <br>Hänen debyyttialbuminsa <i>”Stories From Within”</i> julkaistiin vuonna 2008, toinen albumi <i>”Heaven Or Hell Is Just State Of Mind”</i> puolestaan vuonna 2010. Vuonna 2015 ilmestyi hänen viimeisin englanninkielinen EP:nsä <i>”Let it out”</i>.</p><p>Sittemmin artisti on keskittynyt suomenkieliseen tuotantoon. Ensimmäinen suomenkielinen levy, <i>Yhden miehen armeija</i>, julkaistiin kesällä 2021. Uuden materiaalin myötä Osmo keikkailee sekä soolona, että bändin kanssa ympäri Suomen.<br> <br>Lämmin ja tunnistettava laulusoundi, energinen lavakarisma, poikkeuksellinen lahjakkuus useiden eri soitinten taitajana, sekä pitkä ura musiikin parissa on tehnyt Osmosta arvostetun artistin ympäri Suomen.<br> <br><b>Emma Salokoski</b> on tehnyt monipuolista uraa laulajana vuodesta 1998. Hän säveltää ja sanoittaa usein laulunsa, ja hänen musiikkiaan on myös esitetty useissa teatteri- ja tanssiproduktioissa.<br> <br>Vuonna 2006 Salokoski valittiin vuoden naissolistiksi Emma-gaalassa. Emma Salokoski Ensemblen albumi <i>”Kaksi mannerta”</i> on myynyt kultaa, ja vuonna 2010 julkaistun kappaleen <i>”Veden alla”</i> -videota on katsottu YouTubessa yli neljä miljoonaa kertaa. Salokoski on tehnyt mittavan uran myös jazzmusiikin parissa.</p><p>Lisäksi Salokoski toimii kuoronjohtajana, ja vetää omaa kuoroaan nimeltä <i>“Emma Salokoski Voices”</i> sekä työskentelee kuoronvalmentajana ja äänenkäyttöcoachina. Hän on erikoistunut rytmimusiikin kuoronjohtoon opiskellessaan Royal Academy of Music Aalborgissa Tanskassa.<br> <br>Emma on toiminut taiteen piirissä useissa poikkitaiteellisissa projekteissa, mm. säveltänyt musiikkia tanssiteoksiin, esiintynyt tanssiteoksissa, tehnyt kuvataidetta ja ohjannut musiikkiteatteria. Hän on myös esiintynyt maamme eturivin muusikoiden kanssa ympäri Suomea ja ulkomailla. Hän on ollut solistina niin <i>UMO:n</i> kuin sinfoniaorkestereiden kanssa, ja nähnyt myös rock-festivaalien vellovia yleisömassoja mm. <i>Don Johnson Big Bandin</i> riveissä.</p><p>Vuonna 2021 Emma palkittiin Vantaan taiteilijapalkinnolla.</p><p>Konsertin kesto on noin 1,5 h (sis. väliajan).</p>", "sv": "<p>Den efterlängtade och önskade Osmo Ikonen feat. -turnén är här!</p><p>Till konserten i Malms kulturhus bjuder Osmo Ikonen som gäst den mångsidiga och uppskattade sångaren och låtskrivaren Emma Salokoski.</p><p>Dessa musikaliska mångkampare, som är kända från många sammanhang, skakar hand och framför tillsammans en elegant repertoar bestående av både egna och lånade låtar från hemlandet och utlandet.</p>", "en": "<p>The long-awaited and anticipated Osmo Ikonen feat. tour is here!</p><p>Osmo Ikonen invites the versatile and acclaimed singer-songwriter Emma Salokoski as a special guest to a concert at Malmitalo.</p><p>The multi-talented musicians, known from several different ensembles, will shake hands and perform an elegant set of their own songs as well as borrowed songs from Finland and around the world.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60521/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61046", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios", "sv": "https://www.lippu.fi/artist/kino-helios", "en": "https://www.lippu.fi/artist/kino-helios" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5164, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:16.479280Z", "last_modified_time": "2023-10-09T13:30:16.479301Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737375.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5164/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:30:15.412988Z", "last_modified_time": "2023-11-14T06:13:22.323744Z", "date_published": null, "start_time": "2023-10-13T15: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": "Ruumisautobisneksen halvimmat kuskit, Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat joutuneet tilanteeseen, jossa kaikki on mennyt pieleen ja uusi alku olisi tarpeen.", "sv": "Allt har gått åt skogen för likbilsbranschens lågprischaufförer Risto Kivi (Pekka Strang) och Arto Niska (Jari Virman) och de måste börja om från början.", "en": "The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start." }, "provider_contact_info": null, "name": { "fi": "Peluri – kuolema on elävien ongelma (16) – Kino Helios", "sv": "Peluri – kuolema on elävien ongelma (16) – Kino Helios", "en": "Peluri – kuolema on elävien ongelma (16) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8452AA1BD5590E5DF556E631A2D1CA37/Peluri_kuolema_on_elavien_ongelma_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8452AA1BD5590E5DF556E631A2D1CA37/Peluri_kuolema_on_elavien_ongelma_16_", "en": "http://www.malmitalo.fi/en/events/event/8452AA1BD5590E5DF556E631A2D1CA37/Peluri_kuolema_on_elavien_ongelma_16_" }, "location_extra_info": null, "description": { "fi": "<p>Ruumisautobisneksen halvimmat kuskit, Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat joutuneet tilanteeseen, jossa kaikki on mennyt pieleen ja uusi alku olisi tarpeen.</p><p>Risto on pelannut kotinsa ja perheensä ja Arto on saanut niskakipuja hoidattaessaan kuulla, ettei hänellä ole käytännössä juurikaan aivoja.</p><p>Voi siis kaikella syyllä todeta, että paremminkin on mennyt. Ystävyksillä ei käytännössä ole jäljellä muuta kuin työnsä. Sen parissa he hoitavat kaikkein likaisimmatkin keikat. Hakevat junan alle murskautuneet ja koteihinsa mädäntyneet niiden viimeiseen lepopaikkaan. Kuten Risto osuvasti toteaa – kuolema on elävien ongelma. Sitä miesten elämässä riittää, mutta tästä huolimatta he pyrkivät uskomaan elämään.</p><p>Vaikka toisella ei ole aivoja, eikä toisella sydäntä, yhdessä tilanne ei ole toivoton. Asiat ottavat kuitenkin yllättävän suunnan ja Risto ja Arto joutuvat pelaamaan uhkapeliä omalla hengellään. Sen jälkeen mikään ei ole ennallaan.</p><p><i>Peluri – Kuolema on elävien ongelma</i> on kuolemanvakava komedia ystävyydestä, heikkouksista ja anteeksiannosta. Se koskettaa, naurattaa ja satuttaa - sekä auttaa ymmärtämään elämää sen eri sävyissä.</p><p>Ikäraja: 16<br>Kesto 98 min<br>Ensi-ilta 22.9.2023<br>Tekstitys suomeksi</p>", "sv": "<p>Allt har gått åt skogen för likbilsbranschens lågprischaufförer Risto Kivi (Pekka Strang) och Arto Niska (Jari Virman) och de måste börja om från början.</p><p>Risto har spelat bort hem och familj och Arto har i samband med en behandling av sin nacksmärta fått veta att han praktiskt taget knappt har någon hjärna.</p><p>Läget har alltså varit bättre. I praktiken har de två polarna inget annat än sitt arbete, där de tar emot också de värsta uppdragen och transporterar personer som krossats under tåg och personer som förmultnat i hemmet till den sista viloplatsen. Som Risto mycket träffande konstaterar – döden är de levandes problem. Och problem finns det gott om i männens liv, men trots det här gör de sitt bästa för att tro på livet.</p><p>Den ena må sakna hjärna och den andra må sakna hjärta, men när de är tillsammans är situationen i alla fall inte helt hopplös. Saker och ting tar ändå en oväntad vändning och Risto och Arto tvingas spela ett högt spel med sina liv som insats. Efter det är ingenting mera som förut.<br>Spelaren – Döden är de levandes problem är en gravallvarlig komedi om vänskap, svagheter och förlåtelse. Den berör, den roar och den gör ont – samt hjälper oss att förstå livet i alla dess olika nyanser.</p><p>Åldersgräns: 16<br>Längd 98 min<br>Premier 22.9.2023</p>", "en": "<p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start.</p><p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start.</p><p>Age limit: 16<br>Duration 98 min<br>Premier 22.9.2023</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61046/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61048", "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/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5163, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:14.886468Z", "last_modified_time": "2023-10-09T13:30:14.886485Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737379.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5163/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:30:14.741006Z", "last_modified_time": "2023-11-14T06:13:22.018322Z", "date_published": null, "start_time": "2023-10-13T12: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": "1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa." }, "provider_contact_info": null, "name": { "fi": "Rakas äitini (12) – Kino Helios", "sv": "Rakas äitini (12) – Kino Helios", "en": "Rakas äitini (12) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6D218911D19DE025F90E5D3956F9BE0C/Rakas_aitini_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6D218911D19DE025F90E5D3956F9BE0C/Rakas_aitini_12_", "en": "http://www.malmitalo.fi/en/events/event/6D218911D19DE025F90E5D3956F9BE0C/Rakas_aitini_12_" }, "location_extra_info": null, "description": { "fi": "<p>1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa.</p><p>Borghettin perhe on juuri muuttanut uuteen upeilla näkymillä varustettuun kerrostaloasuntoon, joita kiireessä rakennetaan kaupungin vaurastuvalle keskiluokalle. Vaikka perheessä näyttää ulospäin olevan kaikki kunnossa, niin asiat eivät ole niin kuin ennen.<br> <br>Clara (<b>Penélope Cruz</b>) ja Felice (<b>Vincenzo Amato</b>) ovat menettäneet rakkautensa. Kotiäiti Clara on<br>autoritääriselle miehelleen ensimmäiseksi vaimo ja vasta toiseksi lapsilleen äiti. Claralla ei juurikaan ole sosiaalista elämää ydinperheen ulkopuolella ja siksi hän alkaa elää elämäänsä lastensa kautta.</p><p>Kotona oleva stressaantunut tunnelma sekä kotiväkivallan peittely suvun silmissä vie hänet entistä kauemmaksi aviomiehestään. Perheen tytär Adri (<b>Luana Giuliani</b>) kamppailee oman identiteettinsä kanssa ja isänsä harmiksi ystävystyy alempaan yhteiskuntaluokkaan kuuluvan tytön kanssa. Sisäiset ristiriidat repivät perhettä erilleen kohti murtumispistettä, jota suvun taustalla aiheuttama paine ei yhtään helpota.</p><p><i>Terraferma</i> ja <i>Kultainen portti</i> -elokuvien ohjauksistaan tunnettu <b>Emanuele Crialese</b> on Rakas äitini<br>elokuvassa tarttunut osittain omaelämänkerralliseen aiheeseen. Sen autenttinen 1970-lukulainen värimaailma on värikylläinen ja näyttävä. Elokuva toimii monessa tasossa ja sen perheidylliä rikkovat ongelmat ovat hyvin samaistuttavia myös nykyaikana.<br> <br>Ensi-ilta 22.9.2023<br>Kesto 99 min<br>Ikäraja 12</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61048/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60734", "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": [], "price": { "fi": "15 € / 20 €", "sv": "15 € / 20 €", "en": "15 € / 20 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/malmijazz/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/malmijazz/?affiliate=ADV", "en": "https://www.lippu.fi/artist/malmijazz/?affiliate=ADV" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4400, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:19.326463Z", "last_modified_time": "2023-09-07T14:24:19.326483Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730915.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4400/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:18.990846Z", "last_modified_time": "2023-11-14T06:13:21.785747Z", "date_published": null, "start_time": "2023-10-12T16: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": "Kaisa Mäensivu on yksi suomalaisen jazzin suurista tulevaisuuden nimistä.", "sv": "Kaisa Mäensivu är ett av de stora framtida namnen för finländsk jazz.", "en": "Kaisa Mäensivu is one of the great names of the future of Finnish jazz." }, "provider_contact_info": null, "name": { "fi": "MalmiJazz: Kaisa's Machine", "sv": "MalmiJazz: Kaisa's Machine", "en": "MalmiJazz: Kaisa's Machine" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5A799F1086F609756C028E781725090D/MalmiJazz_Kaisa_s_Machine", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5A799F1086F609756C028E781725090D/MalmiJazz_Kaisa_s_Machine", "en": "http://www.malmitalo.fi/en/events/event/5A799F1086F609756C028E781725090D/MalmiJazz_Kaisa_s_Machine" }, "location_extra_info": null, "description": { "fi": "<p>Kaisa Mäensivu on yksi suomalaisen jazzin suurista tulevaisuuden nimistä.</p><p>Opintonsa Sibelius-Akatemiassa aloittanut ja sittemmin New Yorkiin opiskelemaan suunnannut ja miljoonametropoliin kotiutunut kontrabasisti esiintyy oman yhtyeensä lisäksi lukuisissa kokoonpanoissa niin Suomessa kuin maailmalla. Kaisa's Machinen myötä Mäensivu on löytänyt parhaan mahdollisen tavan toteuttaa musiikillista visiotaan.</p><p>Vuonna 2015 perustetun yhtyeen ensimmäinen albumi oli vuonna 2017 ilmestynyt <i>In the Key of K</i>, joka esitteli Mäensivun sävellysten muodossa kypsän näkemyksen modernista jazzista. New Yorkissa Mäensivu on löytänyt musiikilleen uuden, progressiivisemman ja tinkimättömän suunnan, josta välittyy tarinankerronnallisuus, sävellyksellisyys, yllätyksellisyys sekä kontrabasson etualalle tuleva rooli. Yhtyeen toinen levy <i>Taking Shape</i> julkaistiin 7.7.2023 Newyorkilaisen Greenleaf Music levymerkin alla.</p>", "sv": "<p>Kaisa Mäensivu är ett av de stora framtida namnen för finländsk jazz.</p><p>Basisten, som inledde sina studier vid Sibelius-Akademin, senare åkte till New York för att studera och började trivas i miljonmetropolen, spelar utöver sitt eget band i ett flertal sammansättningar såväl i Finland som i världen. Med Kaisa's Machine har Mäensivu hittat det bästa möjliga sätt att förverkliga sin musikaliska vision.</p><p>Det första albumet för bandet som bildades 2015 var <i>In the Key of K</i> som släpptes 2017.</p><p>Albumet presenterade en mogen synpunkt på modern jazz i form av Mäensivus kompositioner. I New York har Mäensivu hittat en ny, progressivare och kompromisslös riktning för sin musik som förmedlar berättarkonst, mångsidiga och nyanserade kompositioner, överraskningar samt kontrabasens framträdande roll.</p><p>Bandets andra album <i>Taking Shape</i> släpptes 7.7.2023 under skivbolaget Greenleaf Music från New York.</p>", "en": "<p>Kaisa Mäensivu is one of the great names of the future of Finnish jazz.</p><p>The double bassist started her studies at the Sibelius Academy and later continued them in New York, which also became her home. Currently, Mäensivu has her own band Kaisa’s Machine and also performs in numerous ensembles in Finland and abroad. Through Kaisa’s Machine, Mäensivu has found the best possible way to fulfil her musical vision.</p><p>Founded in 2015, the band’s first album was titled <i>In the Key of K</i> and was released in 2017.</p><p>The album presented a mature view on modern jazz in the form of Mäensivu’s compositions. In New York, Mäensivu has found a new, more progressive and uncompromising direction for her music, which conveys storytelling, composition, surprise and the prominence of double bass. The band’s second album, <i>Taking Shape</i>, was released on 7 July 2023 under the New York label Greenleaf Music.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60734/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60733", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/mars-vs-venus-2-uusintaottelu-malmitalo-17286634/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4395, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:15.162432Z", "last_modified_time": "2023-09-07T14:24:15.162458Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_724876.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4395/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:14.996533Z", "last_modified_time": "2023-11-14T06:13:21.328029Z", "date_published": null, "start_time": "2023-10-11T16: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": "Parisuhde-standup-show Mars vs. Venus 2? – Uusintaottelu on on valitettavasti jouduttu perumaan." }, "provider_contact_info": null, "name": { "fi": "PERUTTU | Mars vs Venus 2? – Uusintaottelu" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/56AB0D944CF7E8782D7F437E7F3BC9FC/PERUTTU_Mars_vs_Venus_2_Uusintaottelu_" }, "location_extra_info": null, "description": { "fi": "<p>Parisuhde-standup-show Mars vs. Venus 2? – Uusintaottelu on on valitettavasti jouduttu perumaan.</p><p>Voitte hakea lippurahojenne palautusta alla olevasta linkistä 11.11.2023 mennessä:<br>https://web.lippu.fi/palautus/</p><p>--</p><p>Supersuosittu Mars vs. Venus? on saanut jatkoa! Yli neljä vuotta ja 30 000 katsojaa myöhemmin koomikkopariskunta Riku Suokas ja Johanna Tohni ovat valmiita uusintaotteluun.</p><p>Kasvaneet lapset ja uudet perheenjäsenet on vedetty mukaan tähän uusperheen arkea ja keski-ikäistyvien koomikoiden parisuhdekiemuroita käsittelevään hulvattomaan stand up -esitykseen. Ja tietysti myös tällä kierroksella kisaillaan siitä, kummalla on vaikeampaa.<br> <br>Näyttelijä, käsikirjoittaja ja ohjaaja Riku Suokas on stand up -komiikan pioneereja Suomessa. Teatterin lisäksi hän on työskennellyt menestyksekkäästi elokuva- ja TV-tuotannoissa, mm. Koskinen -sarjassa. Johanna Tohni on entuudestaan tuttu esityksistä Mars vs. Venus? sekä Pop Fiction. Hän on esittänyt stand upia ympäri Suomen sekä esiintynyt Nelosen Stand Up! -ohjelmassa.<br> <br>Ikäsuositus: K-16 <br>Lavalla: Riku Suokas ja Johanna Tohni<br>Käsikirjoitus ja ohjaus: Riku Suokas ja Johanna Tohni<br>Kesto: 2 x 45 min + väliaika</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60733/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }