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=76
{ "meta": { "count": 1627, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=77", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=75" }, "data": [ { "id": "kulke:60445", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/jason-ringenberg/", "sv": "https://www.lippu.fi/artist/jason-ringenberg/", "en": "https://www.lippu.fi/artist/jason-ringenberg/" }, "description": null, "price": { "fi": "24,50 € / 29,50 €", "sv": "24,50 € / 29,50 €", "en": "24,50 € / 29,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4299, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:56.516149Z", "last_modified_time": "2023-09-07T14:22:56.516170Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728997.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4299/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:56.366084Z", "last_modified_time": "2023-11-14T06:13:12.905942Z", "date_published": null, "start_time": "2023-09-26T16: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": "Älä tule konserttiin odottaen näkeväsi jonkun tuolilla istuvan herkän laulaja-lauluntekijän. Kun Ringenberg tuo lavalle akustisen kitaransa ja energisen karismansa, silloin pannaan haisemaan!", "sv": "Kom inte till konserten med förväntningen att se en känslig singer/songwriter som sitter på en stol. När Ringenberg tar sin akustiska gitarr och energiska karisma till scenen, då svänger det ordentligt!", "en": "Don’t come to the concert expecting to see a sensitive singer-songwriter sitting in a chair. When Ringenberg brings an acoustic guitar and his energetic charisma to the stage, it’s time to rock and roll!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6C60349D016F0C4FF890D3E8FAEE6185/Jason_Ringenberg_USA_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6C60349D016F0C4FF890D3E8FAEE6185/Jason_Ringenberg_USA_", "en": "http://www.malmitalo.fi/en/events/event/6C60349D016F0C4FF890D3E8FAEE6185/Jason_Ringenberg_USA_" }, "description": { "fi": "<p>Älä tule konserttiin odottaen näkeväsi jonkun tuolilla istuvan herkän laulaja-lauluntekijän. Kun Ringenberg tuo lavalle akustisen kitaransa ja energisen karismansa, silloin pannaan haisemaan!</p><p>Jason Ringenberg syntyi ja kasvoi sikafarmilla Illinoisissa. Hän muutti Nashvilleen 4. Heinäkuuta toteuttaakseen unelmansa ”yhtyeestä, joka potkaisee amerikkalaisen juurimusiikin nykyaikaan” ilman aavistustakaan siitä kuinka pitkälle tuo potku tulisi kantamaan. Siltä seisomalta hän perusti Jason and the Scorchersin eikä sittemmin katsonut taakseen. 1980- ja 1990-luvuilla kokoonpano keikkaili ympäri maailmaa ja sai maineen yhtenä mielenkiintoisimmista live-kokoonpanoista musiikin saralla. He ”yksinkertaisesti kirjoittivat uudelleen rock’n’rollin historiaa etelässä” (Rolling Stone). Tapa, jolla bändi vaistonvaraisesti yhdisti perinteisen kantrimusiikin energiseen punkrockiin on edelleenkin voittamaton.</p><p>Ringenbergin tarina ei kuitenkaan lopu tähän. Vuonna 1992 ”Americanan kummisetä” päätti lähteä soolouralle. Hän on sittemmin julkaissut seitsemän levyä ja tullut ylistetyksi laulunkirjoitustaidoistaan BBC:tä ja USA Today - ohjelmaa myöten. Villiten yleisöjä ympäri maailmaa hän on tullut noteeratuksi The Times -lehden taholta ”yhtenä sukupolvensa mielenkiintoisimmista esiintyjistä”.</p>", "sv": "<p>Kom inte till konserten med förväntningen att se en känslig singer/songwriter som sitter på en stol. När Ringenberg tar sin akustiska gitarr och energiska karisma till scenen, då svänger det ordentligt!</p><p>”Americanas gudfader” inledde sin solokarriär 1992 och har gett ut sju skivor, och har lovordats för sin låtskrivarförmåga av både BBC och programmet USA Today. Han har underhållit publiker runtom i världen och noterats av tidningen The Times som ”en av sin generations mest intressanta artister”.</p>", "en": "<p>Don’t come to the concert expecting to see a sensitive singer-songwriter sitting in a chair. When Ringenberg brings an acoustic guitar and his energetic charisma to the stage, it’s time to rock and roll!</p><p>Praised by the BBC and USA Today for his songwriting skills, the “Godfather of Americana” has released seven albums since going solo in 1992. Ringenberg has roused the masses around the world and been hailed by The Times as “one of the most exciting performers of the generation.”</p>" }, "name": { "fi": "Jason Ringenberg (USA)", "sv": "Jason Ringenberg (USA)", "en": "Jason Ringenberg (USA)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60445/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60444", "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": [], "info_url": { "fi": "https://www.lippu.fi/event/maisteri-molto-malmitalo-17006274/", "sv": "https://www.lippu.fi/event/maisteri-molto-malmitalo-17006274/", "en": "https://www.lippu.fi/event/maisteri-molto-malmitalo-17006274/" }, "description": null, "price": { "fi": "11 €", "sv": "11 €", "en": "11 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4281, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:42.331803Z", "last_modified_time": "2023-09-07T14:22:42.331830Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731702.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4281/?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:22:42.181343Z", "last_modified_time": "2023-11-14T06:13:11.391627Z", "date_published": null, "start_time": "2023-09-23T15: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": "Rakastettu Maisteri Molto palaa syksyllä Malmitaloon kahden konsertin kera!", "sv": "Magister Moltos show är rolig för både barn och vuxna, och man får sjunga med.", "en": "Maisteri Molto’s show makes both adults and children laugh and sing." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/769A94B56CA5291D249A8F64F46116F1/Maisteri_Molto_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/769A94B56CA5291D249A8F64F46116F1/Maisteri_Molto_", "en": "http://www.malmitalo.fi/en/events/event/769A94B56CA5291D249A8F64F46116F1/Maisteri_Molto_" }, "description": { "fi": "<p>Rakastettu Maisteri Molto palaa syksyllä Malmitaloon kahden konsertin kera!</p><p>Maisteri Molto on Pikku Kakkosesta tuttu omalaatuinen musiikinopettaja, jonka konsertti naurattaa ja laulattaa sekä aikuisia että lapsia.<br> <br>Maisteri Molto rakastaa musiikkia, mutta katoaa välillä omiin maailmoihinsa ja saattaa käyttäytyä kuin uhmaikäinen. Onneksi taitavat muusikot saavat maisterin palautettua jälleen todellisuuteen. Konsertti on vuorovaikutteinen ja sen avulla yleisö oppii huomaamattaan paljon musiikista. Osa lauluista on TV-sarjasta tuttuja ja uudemmat laulut löydät myös suoratoistopalveluista.<br> <br>Tule mukaan tanssimaan, laulamaan ja rytmittelemään!</p><p>Kesto: 45 min (ei väliaikaa)<br>Koko perheelle</p>", "sv": "<p>Magister Moltos show är rolig för både barn och vuxna, och man får sjunga med.</p><p>I konserten lär magister Molto från Pikku Kakkonen ut musik till publik i alla åldrar, i sin egenartade stil. Magister Molto är en blandning av kapellmästare, clown och musiklärare. I föreställningen får barn och vuxna lära sig mycket om musik utan att ens märka det.</p>", "en": "<p>Maisteri Molto’s show makes both adults and children laugh and sing.</p><p>At the concert, Maisteri Molto (from TV’s Pikku Kakkonen) teaches music to people of all ages with her personal style. Maisteri Molto is a mix between a conductor, clown and music teacher. Both children and adults will learn a lot about music without even realising it.</p>" }, "name": { "fi": "Maisteri Molto", "sv": "Maisteri Molto", "en": "Maisteri Molto" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60444/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60828", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4284, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:44.740770Z", "last_modified_time": "2023-09-07T14:22:44.740799Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735148.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4284/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:44.161827Z", "last_modified_time": "2023-11-14T06:13:11.230477Z", "date_published": null, "start_time": "2023-09-23T15: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": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D5C9BCE6E93B1C58E2661040DFB92848/Kuolleet_lehdet_7_" }, "description": { "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle.</p><p>Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Ikäraja 7<br>Kesto 81 min<br>Ensi-ilta 15.9. <br>Tekstitys suomeksi.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "name": { "fi": "Kuolleet lehdet (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60828/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60443", "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": [], "info_url": { "fi": "https://www.lippu.fi/artist/maisteri-molto/", "sv": "https://www.lippu.fi/artist/maisteri-molto/", "en": "https://www.lippu.fi/artist/maisteri-molto/" }, "description": null, "price": { "fi": "11 €", "sv": "11 €", "en": "11 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4279, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:40.233733Z", "last_modified_time": "2023-09-07T14:22:40.233754Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731700.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4279/?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:22:39.657261Z", "last_modified_time": "2023-11-14T06:13:11.051802Z", "date_published": null, "start_time": "2023-09-23T12: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": "Rakastettu Maisteri Molto palaa syksyllä Malmitaloon kahden konsertin kera!", "sv": "Magister Moltos show är rolig för både barn och vuxna, och man får sjunga med.", "en": "Maisteri Molto’s show makes both adults and children laugh and sing." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0993EF219F5169DA598BE00DB1940FE0/Maisteri_Molto_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0993EF219F5169DA598BE00DB1940FE0/Maisteri_Molto_", "en": "http://www.malmitalo.fi/en/events/event/0993EF219F5169DA598BE00DB1940FE0/Maisteri_Molto_" }, "description": { "fi": "<p>Rakastettu Maisteri Molto palaa syksyllä Malmitaloon kahden konsertin kera!</p><p>Maisteri Molto on Pikku Kakkosesta tuttu omalaatuinen musiikinopettaja, jonka konsertti naurattaa ja laulattaa sekä aikuisia että lapsia.<br> <br>Maisteri Molto rakastaa musiikkia, mutta katoaa välillä omiin maailmoihinsa ja saattaa käyttäytyä kuin uhmaikäinen. Onneksi taitavat muusikot saavat maisterin palautettua jälleen todellisuuteen. Konsertti on vuorovaikutteinen ja sen avulla yleisö oppii huomaamattaan paljon musiikista. Osa lauluista on TV-sarjasta tuttuja ja uudemmat laulut löydät myös suoratoistopalveluista.<br> <br>Tule mukaan tanssimaan, laulamaan ja rytmittelemään!</p><p>Kesto: 45 min (ei väliaikaa)<br>Koko perheelle</p>", "sv": "<p>Magister Moltos show är rolig för både barn och vuxna, och man får sjunga med.</p><p>I konserten lär magister Molto från Pikku Kakkonen ut musik till publik i alla åldrar, i sin egenartade stil. Magister Molto är en blandning av kapellmästare, clown och musiklärare. I föreställningen får barn och vuxna lära sig mycket om musik utan att ens märka det.</p>", "en": "<p>Maisteri Molto’s show makes both adults and children laugh and sing.</p><p>At the concert, Maisteri Molto (from TV’s Pikku Kakkonen) teaches music to people of all ages with her personal style. Maisteri Molto is a mix between a conductor, clown and music teacher. Both children and adults will learn a lot about music without even realising it.</p>" }, "name": { "fi": "Maisteri Molto", "sv": "Maisteri Molto", "en": "Maisteri Molto" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60443/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60694", "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/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4278, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:39.314163Z", "last_modified_time": "2023-09-07T14:22:39.314185Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735110.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4278/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:39.169048Z", "last_modified_time": "2023-11-14T06:13:10.967525Z", "date_published": null, "start_time": "2023-09-23T12: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": "Kasper, Jesper ja Joonatan ovat kolme iloista rosvoa, jotka asuvat rauhallisen Kardemumman kaupungin ulkopuolella." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/836482B848CBD6D82E995F71089B801E/Kolme_iloista_rosvoa_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/836482B848CBD6D82E995F71089B801E/Kolme_iloista_rosvoa_S_" }, "description": { "fi": "<p>Kasper, Jesper ja Joonatan ovat kolme iloista rosvoa, jotka asuvat rauhallisen Kardemumman kaupungin ulkopuolella.</p><p>Aina kun he tarvitsevat jotain, niin he vain livahtavat salaa kaupunkiin ja varastavat tarvitsemansa asian.</p><p>Kuitenkin eräänä päivänä rosvot napataan kiinni ja heidät viedään kaupunginvankilaan. Kun kaupungissa syttyy tulipalo, niin kolmikko saa ainutlaatuisen tilaisuuden todistaa kaupunkilaisille, että he ovat enemmän kuin vain rosvoja.</p><p>Rakastettu tarina Kardemumman kaupungista ja sen asukkaista herää henkiin uudessa vauhdikkaassa koko perheen animaatioelokuvassa Kolme iloista rosvoa.</p><p>Ikäraja: sallittu<br>Kesto 79 min</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia).</i></p>", "sv": "<p>De tre rånarna, Kasper, Jesper och Jonathan bor strax utanför den fridfulla Kamomilla stad och när de behöver något smyger de helt enkelt in till stan och stjäl det.</p><p>En dag arresteras de tre rånarna och placeras i stadens fängelse. Men när en brand bryter ut får trion en chans att bevisa för staden att de är mer än bara rånare.</p><p>Thorbjørn Egners älskade berättelse om Kamomilla stad i en helt ny fartfylld och färgstark animerad film för hela familjen! Hör alla kända låtar i nyinspelningar.</p><p>Åldersgränsen: T<br>Längd 79 min</p>" }, "name": { "fi": "Kolme iloista rosvoa (S) – Kino Helios", "sv": "Kolme iloista rosvoa (S) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60694/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60798", "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/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": [], "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/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4276, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:38.528906Z", "last_modified_time": "2023-09-07T14:22:38.528928Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735156.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4276/?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:22:38.381714Z", "last_modified_time": "2023-11-14T06:13:10.629237Z", "date_published": null, "start_time": "2023-09-23T10: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": "Element Cityssä eri elementtejä edustavat tuli-, vesi-, maa- ja ilmahahmot asustavat rinnakkain.", "sv": "I en stad där eld-, vatten-, jord- och luft-innevånare bor tillsammans får vi följa det udda paret Brinnie och Vadar.", "en": "Disney and Pixar’s “Elemental” is an all-new, original feature film set in Element City, where fire-, water-, land- and air-residents live together." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C724683C3AD0AC0D5917D02935A4978A/Elemental_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C724683C3AD0AC0D5917D02935A4978A/Elemental_T_", "en": "http://www.malmitalo.fi/en/events/event/C724683C3AD0AC0D5917D02935A4978A/Elemental_S_" }, "description": { "fi": "<p>Element Cityssä eri elementtejä edustavat tuli-, vesi-, maa- ja ilmahahmot asustavat rinnakkain.</p><p>Disneyn ja Pixarin on upouuden animaatioelokuvan pääosassa on Virva, sinnikäs, nokkela ja tulisieluinen nuori nainen, jonka ystävyys hauskan, hieman hömelön ja virran viemän vesihepun Vellun kanssa haastaa hänen käsityksensä maailmasta, jossa he elävät.</p><p>Elokuvan on ohjannut Peter Sohn (Kunnon dinosaurus, lyhytelokuva “Puolipilvistä”), tuottanut Denise Ream (Kunnon dinosaurus, Autot 2), ja sen alkuperäisääninä Virvan ja Vellun rooleissa kuullaan Leah Lewis ja Mamoudou Athie.</p><p>Elokuvaa ennen nähdään Bob Petersonin ohjaama lyhytelokuva \"Karlin treffit\" (\"Carl's Date\").</p><p>Kesto 110 min + lyhytelokuva 8 min<br>Ikäraja: S<br>Ensi-ilta 7.7.2023</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>", "sv": "<p>I en stad där eld-, vatten-, jord- och luft-innevånare bor tillsammans får vi följa det udda paret Brinnie och Vadar.</p><p>Den eldfängda unga tjejen och den mer avslappnade ”ta-dagen-som-den kommer”-killen kommer snart upptäcka något elementärt: att de faktiskt har massor gemensamt, och att det kan uppstå magi mellan motsatser.</p><p>Längd: 118 min<br>Åldersgräns: T</p>", "en": "<p>Disney and Pixar’s “Elemental” is an all-new, original feature film set in Element City, where fire-, water-, land- and air-residents live together.</p><p>The story introduces Ember, a tough, quick-witted and fiery young woman, whose friendship with a fun, sappy, go-with-the-flow guy named Wade challenges her beliefs about the world they live in. Directed by Peter Sohn (“The Good Dinosaur,” “Partly Cloudy” short), produced by Denise Ream (“The Good Dinosaur,” “Cars 2”), and featuring the voices of Leah Lewis and Mamoudou Athie as Ember and Wade, respectively.</p><p>Duration: 118 minutes<br>Age rating: suitable for all ages</p>" }, "name": { "fi": "Elemental (S) – Kino Helios", "sv": "Elemental (T) – Kino Helios", "en": "Elemental (S) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60798/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60442", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/umo-helsinki-jazz-orchestra-focus-tero-saarti-3405076/", "sv": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/umo-helsinki-jazz-orchestra-focus-tero-saarti-3405076/", "en": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/umo-helsinki-jazz-orchestra-focus-tero-saarti-3405076/" }, "description": null, "price": { "fi": "24,50 € / 20 € / 10 €", "sv": "24,50 € / 20 € / 10 €", "en": "24,50 € / 20 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4269, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:32.326525Z", "last_modified_time": "2023-09-07T14:22:32.326557Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_726137.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4269/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:32.150996Z", "last_modified_time": "2023-11-14T06:13:10.202281Z", "date_published": null, "start_time": "2023-09-22T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tämän konsertin fokuksessa on UMO Helsinki Jazz Orchestran pitkäaikainen trumpetisti Tero Saarti. Kapellimestarina Mikko Hassinen.", "sv": "Fokus i den här konserten är UMO Helsinki Jazz Orchestras långvariga trumpetist Tero Saarti. Kapellmästare är Mikko Hassinen.", "en": "The focal point of this concert is Tero Saarti, UMO Helsinki Jazz Orchestra’s longstanding trumpet player. The consert is conducted by Mikko Hassinen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/571A2534F9E0EA6DCA1127D4A0BE6949/UMO_Helsinki_Jazz_Orchestra_Focus_Tero_Saarti_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/571A2534F9E0EA6DCA1127D4A0BE6949/UMO_Helsinki_Jazz_Orchestra_Focus_Tero_Saarti_", "en": "http://www.malmitalo.fi/en/events/event/571A2534F9E0EA6DCA1127D4A0BE6949/UMO_Helsinki_Jazz_Orchestra_Focus_Tero_Saarti_" }, "description": { "fi": "<p>Tämän konsertin fokuksessa on UMO Helsinki Jazz Orchestran pitkäaikainen trumpetisti Tero Saarti. Kapellimestarina Mikko Hassinen.</p><p>--</p><p>UMOn riveissä tasan 30 vuoden ajan soittanut trumpetisti Tero Saarti saa jazzin todella elämään ja sykkimään ilman keinotekoista, teknistä suorittamista. Saarti on UMOn tärkeä solistinen voima, jonka trumpetti ja flyygelitorvi yksinkertaisesti groovaavat.</p><p>Saarti on valinnut konsertin ohjelmistoon suosikkejaan säveltäjä-trumpetisti Kenny Wheelerin (1930–2014) laajasta tuotannosta yhteistyössä kapellimestari Mikko Hassisen kanssa.</p><p>– Albumi Music For Large & Small Ensembles vuodelta 1990 tutustutti minut Wheelerin jazzorkesterin sävelkieleen. Olen aina ihastellut hänen tapaansa säveltää myös pienyhtyeelle, Saarti kertoo.</p><p>Kyseiseltä levyltä poimittujen osien lisäksi konsertissa kuullaan Wheeleriltä mm. ”Mark Time”, ”Gentle Piece” ja ”For Jan”.</p><p>Konsertissa kantaesityksensä saavat myös Saartin tätä konserttia varten säveltämät uudet teokset.</p><p>--</p><p>UMOn ja oman kvartettinsa lisäksi trumpetisti, säveltäjä ja sovittaja Tero Saarti (s. 1971) on vaikuttanut mm. Riku Niemi Orchestrassa, Ricky-Tick Big Bandissa, Espoo Big Bandissa ja Tampereen Työväen Teatterin orkesterissa. Hän toimii Hietalahti Soi -festivaalin taiteellisena johtajana. Saarti tekee opetustöitä Sibelius-Akatemiassa ja Metropolia Ammattikorkeakoulussa, ja on kysytty luennoitsija ja työpajojen pitäjä niin ulkomailla kuin Suomessakin. Opintonsa Saarti on suorittanut Pop & Jazz Konservatoriossa ja Sibelius-Akatemiassa.</p><p>--</p><p>Malmitalon ravintolassa järjestetään <b>Enemmän irti esityksestä</b> -keskustelutilaisuus klo 17:15. Keskustelutilaisuus on maksuton konserttilipun ostaneille ja siinä taustoitetaan ohjelmistoa kapellimestari Mikko Hassisen ja solisti Tero Saartin johdolla.</p><p>Konsertin kesto n. 75 min, ei väliaikaa.</p>", "sv": "<p>Fokus i den här konserten är UMO Helsinki Jazz Orchestras långvariga trumpetist Tero Saarti. Kapellmästare är Mikko Hassinen.</p><p>I restaurangen till Malms kulturhus ordnas diskussionen Få ut mer av föreställningen kl. 17.15. Diskussionen är kostnadsfri för dem som har köpt en konsertbiljett och under ges en bakgrund till programmet under ledning av kapellmästare Mikko Hassinen och solisten Tero Saarti.</p><p>Trumpetisten Tero Saarti, som har spelat med UMO i exakt 30 år, får verkligen jazzen att leva och pulsera utan konstgjorda, tekniska prestationer. Saarti är en viktig solistkraft i UMO vars trumpet och flygelhorn helt enkelt svänger.</p>", "en": "<p>The focal point of this concert is Tero Saarti, UMO Helsinki Jazz Orchestra’s longstanding trumpet player. The consert is conducted by Mikko Hassinen.</p><p>There will be a Deeper into the Show discussion in the restaurant of Malmitalo at 17.15. The discussion events are free of charge for ticket holders. During the talk, the conductor Mikko Hassinen and the soloist Tero Saarti will provide background for the concert.</p><p>Trumpet player Tero Saarti, who has been with UMO for exactly 30 years, really makes jazz come alive and pulsate without ever being artificial or technical. Saarti is a major solo force in UMO, and his trumpet and flugelhorn are simply groovy.</p>" }, "name": { "fi": "UMO Helsinki Jazz Orchestra: Focus Tero Saarti", "sv": "UMO Helsinki Jazz Orchestra: Focus Tero Saarti", "en": "UMO Helsinki Jazz Orchestra: Focus Tero Saarti" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60442/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60829", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4272, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:35.254904Z", "last_modified_time": "2023-09-07T14:22:35.254930Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735150.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4272/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:35.102626Z", "last_modified_time": "2023-11-14T06:13:09.958552Z", "date_published": null, "start_time": "2023-09-22T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ranskassa reilusti yli miljoona katsojaa teattereihin koonnut kesähitti on samaan aikaan ovela bulevardikomedia ja feministinen parodia sekä originellin epäkorrekti farssi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BB72AFF3EC243E428BB24B1C245DE514/Rikos_on_minun_12_" }, "description": { "fi": "<p>Ranskassa reilusti yli miljoona katsojaa teattereihin koonnut kesähitti on samaan aikaan ovela bulevardikomedia ja feministinen parodia sekä originellin epäkorrekti farssi.</p><p>Pariisi, 1935. Naisilla ei ole vielä edes äänioikeutta. Mahakkaat tuottajat ja lipevät lakimiehet pyörittävät seurapiirejä ja liiketoimia. Aloitteleva näyttelijätär Madeleine (Nadia Terezkiewicz) ja työtön asianajaja Pauline (Rebecca Marder) jakavat halvan ullakkohuoneen – vaikka rahat eivät oikein riitä edes moisen murjun vuokraan.</p><p>Madeleine joutuu syytteeseen tahmatassuisen tuottajan murhasta. Pauline ryhtyy hänen asianajajakseen. Se oli itsepuolustusta! Madeleine vapautetaan. Seuraa valtava seurapiirisirkus. Maine ja menestys näyttävät olevan käden ulottuvilla. Mutta kuka oikeasti murhasi tuottajan?</p><p>Isabelle Huppert kruunaa Francois Ozonin ohjaaman elokuvan valtavan tähtikaartin.</p><p>Kesto 102 min<br>Ikäraja: 12<br>Ensi-ilta 25.8.2023</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "name": { "fi": "Rikos on minun (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60829/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60833", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4266, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:30.631163Z", "last_modified_time": "2023-09-07T14:22:30.631197Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735140.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4266/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:29.868404Z", "last_modified_time": "2023-11-14T06:13:09.694601Z", "date_published": null, "start_time": "2023-09-22T12: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": "Venetsian aaveet sijoittuu toisen maailmansodan jälkeiseen Venetsiaan pahaenteisesti pyhäinpäivän aattona, jolloin tapahtuvan karmivan mysteerin myötä valkokankaalle palaa maineikas etsivä Hercule Poirot.", "en": "“A Haunting in Venice” is set in eerie, post-World War II Venice on All Hallows’ Eve and is a terrifying mystery featuring the return of the celebrated sleuth, Hercule Poirot." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D03BF445E45409EA59F839C0B05366DB/Venetsian_aaveet_12_", "en": "http://www.malmitalo.fi/en/events/event/D03BF445E45409EA59F839C0B05366DB/A_Haunting_in_Venice_12_" }, "description": { "fi": "<p>Venetsian aaveet sijoittuu toisen maailmansodan jälkeiseen Venetsiaan pahaenteisesti pyhäinpäivän aattona, jolloin tapahtuvan karmivan mysteerin myötä valkokankaalle palaa maineikas etsivä Hercule Poirot.</p><p>Eläkkeelle jäätyään Poirot vetäytynyt viettämään hiljaiseloa maailman kiehtovimmassa kaupungissa, missä hän hyvin vastahakoisesti suostuu osallistumaan spiritistiseen istuntoon rapistuvassa palazzossa, jossa kummittelee. Kun yksi vieraista joutuu murhan uhriksi, etsivämme tempautuu pahuuden pyörteisiin tuossa varjojen ja salaisuuksien maailmassa.</p><p>Ikäraja: 12<br>Kesto: 96 min<br>Ensi-ilta 15.9.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>", "en": "<p>“A Haunting in Venice” is set in eerie, post-World War II Venice on All Hallows’ Eve and is a terrifying mystery featuring the return of the celebrated sleuth, Hercule Poirot.</p><p>Now retired and living in self-imposed exile in the world’s most glamorous city, Poirot reluctantly attends a séance at a decaying, haunted palazzo. When one of the guests is murdered, the detective is thrust into a sinister world of shadows and secrets.</p><p>Age rating: 12<br>Duration: 96 minutes</p>" }, "name": { "fi": "Venetsian aaveet (12) – Kino Helios", "en": "A Haunting in Venice (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60833/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59425", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/topmost/", "sv": "https://www.lippu.fi/artist/topmost/", "en": "https://www.lippu.fi/artist/topmost/" }, "description": null, "price": { "fi": "31,50€", "sv": "31,50€", "en": "31,50€" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4262, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:27.852679Z", "last_modified_time": "2023-09-07T14:22:27.852708Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728158.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4262/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:27.261054Z", "last_modified_time": "2023-11-14T06:13:09.300458Z", "date_published": null, "start_time": "2023-09-21T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Vierivät kivet eivät vieläkään sammaloidu!", "sv": "Topmost har blivit uppmuntrat av de slutsålda konserterna i 2019 och uppträder igen för alla som diggar 60-talsmusik och för evigt trogna Topmost-fans.", "en": "Inspired by their sold-out concerts in 2019, Topmost is back to play for the lovers of 1960s music and the eternally loyal Topmost fans." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F44A87866BB721AACDA94EBF0ABC16C1/Topmost_Hold_me_Love_me_LOPPUUNMYYTY", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F44A87866BB721AACDA94EBF0ABC16C1/Topmost_Hold_me_Love_me_SLUTSALD", "en": "http://www.malmitalo.fi/en/events/event/F44A87866BB721AACDA94EBF0ABC16C1/Topmost_Hold_me_Love_me_SOLD_OUT" }, "description": { "fi": "<p>Vierivät kivet eivät vieläkään sammaloidu!</p><p>Kevään 2019 <i>Topmost 55 v Happy together</i> -konserttikiertue oli suurmenestys. Topmost esittäytyy vuoden 2019 loppuunmyytyjen konserttien <i>Happy Together</i> ja <i>Hold Me</i> innoittamana jälleen kaikille 60’s-musan diggareille ja ikuisesti uskollisille Topmost-faneille.</p><p>Koulupojista koostunut Topmost oli heti perustamisestaan lähtien kovaa vauhtia matkalla kohti Suomen popmaailman huippua. Vuonna 1967 Topmost oli Suomen suosituin nuorisoyhtye ja keikkamatkat ulottuivat myös ulkomaille, Ruotsiin ja Tanskaan saakka. Topmostin suosio perustui suurelta osin puhtaaseen yhteislaulantaan sekä rhythm and blues- ja soul-musiikin hallitsemiseen. Nuoret soittajat olivat myös tyttöjen mieleen, tätä edesauttoi huoliteltu pukeutuminen sillä esiintymisasut ostettiin Tukholman sen ajan huippuvaatekaupoista.</p><p>Yhtyeen levytyksistä <i>Merisairaat kasvot</i>, <i>Näen mustaa vain</i> ja <i>Hän sinut jättää</i> nousivat listoille ja saavuttivat suuren suosion. Koko Topmostin levytyshistoria löytyy vuonna 2012 julkaistulta albumilta Topmost Years. Albumi on kokoelma yhtyeen levytyksistä ja live-nauhoituksista 1960-luvulta. Topmostin tuorein single <i>Hold Me</i> on vuodelta 2019 se on tullut tutuksi mm. Happy Together ja Hold Me -kiertueilta.</p><p>Topmostin kokoonpanoon kuuluvat <b>Gugi Kokljuschkin</b> (laulu), <b>Harri Saksala</b> (laulu), <b>Kisu Jernström</b> (rummut ja laulu), <b>Holle Holopainen</b> (basso ja laulu), <b>Eero Lupari</b> (kitara ja laulu) ja <b>Tommi Lindell</b> (koskettimet v. 2004-). Yhtyeen alkuperäinen kosketinsoittaja <b>Arto ”Poku” Tarkkonen</b> menehtyi syksyllä 2007.</p><p>Esityksen kesto n. 2 tuntia, sisältäen väliajan.</p>", "sv": "<p>Topmost har blivit uppmuntrat av de slutsålda konserterna i 2019 och uppträder igen för alla som diggar 60-talsmusik och för evigt trogna Topmost-fans.</p><p>Topmost bestod av skolpojkar, och sedan det grundades gick det snabbt mot popeliten i Finland. I 1967 var Topmost Finlands populäraste ungdomsband och reste till gig även utomlands, till Sverige och Danmark.</p>", "en": "<p>Inspired by their sold-out concerts in 2019, Topmost is back to play for the lovers of 1960s music and the eternally loyal Topmost fans.</p><p>At the time of its founding, Topmost consisted of school boys. The band was immediately headed to the top of Finland’s pop world. In 1967, Topmost was Finland’s most popular youth group, and the band even toured all the way in Sweden and Denmark.</p>" }, "name": { "fi": "Topmost: Hold me & Love me | LOPPUUNMYYTY", "sv": "Topmost: Hold me & Love me | SLUTSÅLD", "en": "Topmost: Hold me & Love me | SOLD OUT" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59425/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60441", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/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/" }, "description": null, "price": { "fi": "22 € / 14,50 €", "sv": "22 € / 14,50 €", "en": "22 € / 14,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4251, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:18.759586Z", "last_modified_time": "2023-09-07T14:22:18.759614Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_720850.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4251/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:18.583988Z", "last_modified_time": "2023-11-14T06:13:08.347329Z", "date_published": null, "start_time": "2023-09-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "The Great Helsinki Swing Big Band esittää Count Basie Big Bandin vuoden 1968 albumin kokonaisuudessaan.", "sv": "The Great Helsinki Swing Big Band framför Count Basie Big Bands album från 1968 i sin helhet.", "en": "The Great Helsinki Swing Big Band performs Count Basie Big Band’s 1968 album in its entirety." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/49E67A988270932016EFA545AD4F1600/The_Great_Helsinki_Swing_Big_Band_Basie_Straight_Ahead_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/49E67A988270932016EFA545AD4F1600/The_Great_Helsinki_Swing_Big_Band_Basie_Straight_Ahead_", "en": "http://www.malmitalo.fi/en/events/event/49E67A988270932016EFA545AD4F1600/The_Great_Helsinki_Swing_Big_Band_Basie_Straight_Ahead_" }, "description": { "fi": "<p>The Great Helsinki Swing Big Band esittää Count Basie Big Bandin vuoden 1968 albumin kokonaisuudessaan.</p><p>Kapellimestarina Antti Rissanen.</p>", "sv": "<p>The Great Helsinki Swing Big Band framför Count Basie Big Bands album från 1968 i sin helhet.</p><p>Kapellmästare är Antti Rissanen.</p>", "en": "<p>The Great Helsinki Swing Big Band performs Count Basie Big Band’s 1968 album in its entirety.</p><p>Conducted by Antti Rissanen.</p>" }, "name": { "fi": "The Great Helsinki Swing Big Band: Basie, Straight Ahead", "sv": "The Great Helsinki Swing Big Band: Basie, Straight Ahead", "en": "The Great Helsinki Swing Big Band: Basie, Straight Ahead" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60441/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60703", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4248, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:17.223669Z", "last_modified_time": "2023-09-07T14:22:17.223693Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735134.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4248/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:16.563948Z", "last_modified_time": "2023-11-14T06:13:08.128297Z", "date_published": null, "start_time": "2023-09-20T15: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": "Jazz raikaa Kööpenhaminan klubeilla, eletään sotien välistä 1930-lukua. Maren, köyhän perheen tyttö, tuntee elämän sykkivän suonissaan mutta nuoren naisen elämänjano on yhteiskunnalle liikaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A660993E01A553660224C2B746D06BD8/Kesyttamaton_12_" }, "description": { "fi": "<p>Jazz raikaa Kööpenhaminan klubeilla, eletään sotien välistä 1930-lukua. Maren, köyhän perheen tyttö, tuntee elämän sykkivän suonissaan mutta nuoren naisen elämänjano on yhteiskunnalle liikaa.</p><p>Maren leimataan huonotapaiseksi ja hänet sijoitetaan Sprogøn saarelle laitokseen, joka on tarkoitettu henkisesti heikoille ja yhteiskuntaan sopeutumattomille naisille. Saarella Maren solmii ystävyyssuhteen kanssasisarensa Sørinen kanssa ja naiset alkavat kapinoida – kauaskantoisin ja kohtalokkain seurauksin.</p><p>Malou Reymannin väkevä draamaelokuva kuvaa kappaleen tummasävyistä Tanskan historiaa ja sitä kuinka yhteiskunta petti aikansa kesyttämättömät naiset.</p><p>Kesyttämätön (Ustyrlig) palkittiin parhaan pohjoismaisen elokuvan palkinnolla Göteborgin elokuvajuhlilla 2023.</p><p>Ikäraja 12<br>Kesto 134 min<br>Ensi-ilta 4.8.2023</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia).</i></p>" }, "name": { "fi": "Kesyttämätön (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60703/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60827", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4245, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:14.707386Z", "last_modified_time": "2023-09-07T14:22:14.707409Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735138.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4245/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:14.559420Z", "last_modified_time": "2023-11-14T06:13:07.909933Z", "date_published": null, "start_time": "2023-09-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": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0863C8ECB2EBBEDDBFF109EE9C0361F0/Kuolleet_lehdet_7_" }, "description": { "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle.</p><p>Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Ikäraja 7<br>Kesto 81 min<br>Ensi-ilta 15.9. <br>Tekstitys suomeksi.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "name": { "fi": "Kuolleet lehdet (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60827/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60440", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/vapaat-aeaenet-kiertue-2023-malmitalo-17268545/", "sv": "https://www.lippu.fi/event/vapaat-aeaenet-kiertue-2023-malmitalo-17268545/", "en": "https://www.lippu.fi/event/vapaat-aeaenet-kiertue-2023-malmitalo-17268545/" }, "description": null, "price": { "fi": "15 € / 20 €", "sv": "15 € / 20 €", "en": "15 € / 20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4231, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:04.264956Z", "last_modified_time": "2023-09-07T14:22:04.264986Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728995.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4231/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:04.095344Z", "last_modified_time": "2023-11-14T06:13:07.041782Z", "date_published": null, "start_time": "2023-09-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": "Vapaat äänet -kiertue tarjoilee syyskuun lopussa kansainvälisen myräkän uutta jazzia ja improvisaatiota, kun tien päälle lähtevät amerikkalais-suomalainen Sir Garrison ja ranskalainen The Litany of The Peaks.", "sv": "I slutet av september erbjuder Turnén Vapaat äänet en internationell storm av ny jazz och improvisationer, då amerikansk-finländaren Sir Garrison och franska The Litany of The Pekas ger sig ut på vägarna.", "en": "At the end of September, the Free Voices Tour will offer an international storm of new jazz and improvisation as American-Finnish Sir Garrison and The Litany of the Peaks from France hit the road." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5E44713A6E36B7B1223C197DF089C502/Sir_Garrison_FIN_US_The_Litany_of_the_Peaks_FR_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5E44713A6E36B7B1223C197DF089C502/Sir_Garrison_FIN_US_The_Litany_of_the_Peaks_FR_", "en": "http://www.malmitalo.fi/en/events/event/5E44713A6E36B7B1223C197DF089C502/Sir_Garrison_FIN_US_The_Litany_of_the_Peaks_FR_a" }, "description": { "fi": "<p>Vapaat äänet -kiertue tarjoilee syyskuun lopussa kansainvälisen myräkän uutta jazzia ja improvisaatiota, kun tien päälle lähtevät amerikkalais-suomalainen Sir Garrison ja ranskalainen The Litany of The Peaks.</p><p>--</p><p>Syntymästään alkaen Sir Garrison on etsinyt ääntä, jota voisivat kutsua omakseen.</p><p>\"Numerossa kolme on voimaa,\" sanoo basisti Nathan Francis. \"Soittaessamme jokainen tukee toistaan synnyttäen hyvin persoonallisen ja aistittavan keskustelun bändin jäsenten välillä. Musiikkimme on heijastus kunnioituksesta luontoa ja toisiamme kohtaan.\"</p><p>Trion voima on havaittavissa heidän debyyttialbumiltaan Let's Call This (2022), joka äänitettiin Konneveden syrjäisellä saarella. \"Päätimme äänittää levyn kaukaisessa paikassa luonnon äärellä, jotta äänemme vapautuisi kaupungin kiireestä ja hulinasta. Halusimme tuottaa täysin akustista ja mahdollisimman inhimillistä ja luonnonläheistä soundia,\" kertoo rumpali Okko Saastamoinen.</p><p>Sir Garrisonin musiikki on yhtyeen jäsenten säveltämää, eniten musiikista on vastannut saksofonisti Sami Leponiemi. \"Sir Garrison yhdistää meidän kaikkien yksilölliset soittotyylit. Kaikki kunnioittavat toistensa ideoita ja näin yksilöt täydentävät toisiaan tuottaen intiimin, rehellisen ja mukaansatempaavan yhteissoundin.\"</p><p>--</p><p>The Litany of the Peaks (La Litanie des Cimes) – eli huippujen litania – on viulisti Clément Janinet’n 2019 perustama akustinen trio, jossa hänen kanssaan soittavat klarinetisti Elodie Pasquier ja sellisti Bruno Ducret. Janinet’n repetitiiviselle musiikille sukua olevat sävellykset rakentuvat toisiinsa kietoutuneista rytmikudoksista, joiden lähtökohta löytyy yhtä hyvin amerikkalaisesta minimalismista kuin kansanmusiikista. Kappaleet jättävät laajasti tilaa improvisoinnille.</p><p>Kolmikko viihtyy pitkissä kaarissa ja harmonisessa mietiskelyssä leikitellen näennäisesti hitaiden tempojen kanssa. La Litanie des Cimes oli yksi vuoden 2020 arvostetun Jazz Migration -kiertueohjelman voittajista. Heidän esikoislevynsä keräsi ylistäviä arvioita ja toisen albumin julkaisee syyskuussa 2023 unkarilainen Budapest Music Center.</p><p>Viulistilegenda Didier Lockwoodin koulusta 2007 valmistunut Clément Janinet on ranskalaisen jazzkentän monipuolinen muusikko, joka on viime vuosina saanut huomiota omaperäisten yhtyeidensä ansioista, esimerkikkinä vaikkapa vuonna 2017 perustettu kvartetti O.U.R.S. (Ornette Under The Repetitive Skies). Lahjakas solisti on pitkään soittanut afrikkalaisten muusikoiden kanssa, ehkä näkyvin heistä on basisti Etienne Mbappé & The Prophets. Janinet on soittanut yli 700 konserttia 35 maissa.</p><p>--</p><p>Kiertueen yhteistuotanto: Vapaat äänet & Suomen Jazzliito</p><p>Kierteutta tukevat: AJC, Ranskan Instituutti, Centre National de la Musique, Spedidam</p><p>Tapahtuman kokonaiskesto n. 1 tunti 50 min, sis. väliaika 15 min.</p>", "sv": "<p>I slutet av september erbjuder Turnén Vapaat äänet en internationell storm av ny jazz och improvisationer, då amerikansk-finländaren Sir Garrison och franska The Litany of The Pekas ger sig ut på vägarna.</p><p>Sir Garrison har sedan födelsen sökt en röst som han kan kalla sin egen. Sir Garrisons musik har komponerats av bandets medlemmar. När trion spelar, respekterar de varandras idéer och på det sättet kompletterar individerna varandra och skapar på så sätt ett gemensamt intimt, ärligt och medryckande sound.</p><p>The Litany of The Peaks (La Litanie des Cimes) – det vill säga topparnas litania – är en akustisk trio som 2019 bildades av violinisten Clément Janinet, i vilken han kompas av klarinetisten Elodie Pasquier och cellisten Bruno Ducret. Kompositionerna, som Janinets repetitiva musik är släkt med, byggs upp av en rytmvävnad, vars utgångspunkt återfinns likväl i den amerikanska minimalismen som folkmusiken. Låtarna lämnar stort rum för improvisation.</p>", "en": "<p>At the end of September, the Free Voices Tour will offer an international storm of new jazz and improvisation as American-Finnish Sir Garrison and The Litany of the Peaks from France hit the road.</p><p>Since its inception, jazz trio Sir Garrison has been chasing a sound to call its own Sir Garrison’s music is composed by the band members. When playing, the trio members respect each other’s ideas and, in this way, the individuals complement each other to produce an intimate, honest and captivating sound together.</p><p>La Litanie des Cimes – or The Litany of the Peaks – is an acoustic trio founded by violinist Clément Janinet in 2019, with clarinettist Elodie Pasquier and cellist Bruno Ducret. The compositions, which are reminiscent of Janinet’s repetitive music, are built of interwoven rhythmic textures that are inspired as much by American minimalism as by folk music. The compositions leave ample room for improvisation.</p>" }, "name": { "fi": "Sir Garrison (FIN, US) + The Litany of the Peaks (FR) – Vapaat äänet -kiertue 2023", "sv": "Sir Garrison (FIN, US) + The Litany of the Peaks (FR)", "en": "Sir Garrison (FIN, US) + The Litany of the Peaks (FR)a" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60440/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60439", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/pientae-laittoa-malmitalo-17462311/", "sv": "https://www.lippu.fi/event/pientae-laittoa-malmitalo-17462311/", "en": "https://www.lippu.fi/event/pientae-laittoa-malmitalo-17462311/" }, "description": null, "price": { "fi": "17,50 € / 31,50 €", "sv": "17,50 € / 31,50 €", "en": "17,50 € / 31,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4222, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:57.667946Z", "last_modified_time": "2023-09-07T14:21:57.667967Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728851.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4222/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:57.495714Z", "last_modified_time": "2023-11-14T06:13:06.310486Z", "date_published": null, "start_time": "2023-09-16T15: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": "Masa ja Lissu ovat olleet naimisissa 25 vuotta. Vieläkö on toivoa vai onko kaikki jo menetetty? Lissu päättää tarttua härkää, siis Masaa sarvesta... Siis sarvista.", "sv": "Masa och Lissu har varit gifta i 25 år. Finns det ännu hopp eller är allt redan förlorat? Lissu bestämmer sig för att ta tjuren vid hornen, det vill säga Masa... Alltså vid hornen.", "en": "Masa and Lissu have been married for 25 years. Is there still hope or is it all lost? Lissu decides to take the bull, or rather Masa, by the horn... Erm, the horns." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/724E37A3CB0BC4EF103947A443EFE543/Parisuhdekomedia_Pienta_laittoa_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/724E37A3CB0BC4EF103947A443EFE543/Pienta_laittoa_", "en": "http://www.malmitalo.fi/en/events/event/724E37A3CB0BC4EF103947A443EFE543/Pienta_laittoa_" }, "description": { "fi": "<p>Masa ja Lissu ovat olleet naimisissa 25 vuotta. Vieläkö on toivoa vai onko kaikki jo menetetty? Lissu päättää tarttua härkää, siis Masaa sarvesta... Siis sarvista.</p><p>Katsomossa tämän pitkän parisuhteen ongelmat ja niiden purkaminen naurattaa. Luultavasti ilmassa on myös pientä huokailua ja hikoilua varsinkin, jos kumppani sattuu istumaan vieressä. Tervetuloa rohkeasti testaamaan.</p><p>Keväällä elämä herää, vaan piristyykö suhde. Tarttisko tehdä jotain vai pysytäänkö näissä?<br> ”LISSU: Oot sä koskaan pettäny mua?<br> MASA: Mitä, mitä… En oo! Ja sun ois nyt paras lopettaa.<br> LISSU: Me ollaan oltu kakskyt viis vuotta kimpassa. Tilastojen mukaan sä oot pettäny mua.<br> MASA: Niiden samojen tilastojen mukaan sä oot pettäny mua!<br> LISSU: En tietenkään oo.<br> MASA: Miten sä voi olla niin varma, että mä oon?<br> LISSU: Sä oot mies…”</p><p>Rooleissa: Maarit Peltomaa ja Juha Veijonen<br>Käsikirjoitus ja ohjaus: Heikki Lund</p><p>Maarit Peltomaa ja Juha Veijonen eivät esittelyjä kaipaa. Heidät tunnetaan elokuva- ja TV- rooleistaan. Peltomaa ja Veijonen ovat kiertäneet parisuhdekomedialla \"Pientä laittoa\" jo vuodesta 2019. Vastaanotto kaikkialla Suomessa sekä Espanjassa on ollut huikea ja yleisöpalaute ihanaa. Komedia 25-vuotisesta avioliitosta on hämmästyttänyt monia pariskuntia ja sinkkuja todenmukaisuudellaan. Tarina on komedia tutusta aiheesta; parisuhteen haasteista.<br> <br>Tervetuloa 1,5 tunniksi nauttimaan, nauramaan ja jakamaan tuttuja tilanteita.</p><p>”Miten upeaa dialogia teidän välillä, huh huh. Aivan kuin olisitte olleet 25 vuotta yhdessä. Niin hauska ja koskettava tarina. Moni kommentoi katsomossa, että tämähän oli kuin meillä kotona. Ihana oli lähteä teatterilta hymy huulilla, esityksestä jäi niin hyvä mieli.”</p>", "sv": "<p>Masa och Lissu har varit gifta i 25 år. Finns det ännu hopp eller är allt redan förlorat? Lissu bestämmer sig för att ta tjuren vid hornen, det vill säga Masa... Alltså vid hornen.</p><p>Publiken roas av problemen i och bearbetandet av dem i denna långa parrelation. Troligen är luften fylld av suckar och lite oro, i synnerhet om ens partner råkar sitta bredvid. Välkommen att modigt pröva.</p><p>Språk: finska<br>Längd: 1 t. 30 min.</p>", "en": "<p>Masa and Lissu have been married for 25 years. Is there still hope or is it all lost? Lissu decides to take the bull, or rather Masa, by the horn... Erm, the horns.</p><p>The problems of this long relationship and how they are resolved will make the audience laugh. There will probably also be some sighing and sweating in the room, especially if your partner happens to be sitting next to you. So if you are brave enough, you are welcome to see the show.</p><p>Language: Finnish<br>Duration: 1 h 30 min</p>" }, "name": { "fi": "Parisuhdekomedia Pientä laittoa", "sv": "Pientä laittoa", "en": "Pientä laittoa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60439/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60800", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4213, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:51.024977Z", "last_modified_time": "2023-09-07T14:21:51.024997Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735136.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4213/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:50.786172Z", "last_modified_time": "2023-11-14T06:13:05.566925Z", "date_published": null, "start_time": "2023-09-15T15:00:00Z", "end_time": "2023-09-15T16:45: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": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3F913936EF2EF9850A682770D29072F3/Kuolleet_lehdet_7_" }, "description": { "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle.</p><p>Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Ikäraja 7<br>Kesto 81 min<br>Ensi-ilta 15.9. <br>Tekstitys suomeksi.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "name": { "fi": "Kuolleet lehdet (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60800/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60702", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4210, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:48.337909Z", "last_modified_time": "2023-09-07T14:21:48.337936Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735132.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4210/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:48.185460Z", "last_modified_time": "2023-11-14T06:13:05.298659Z", "date_published": null, "start_time": "2023-09-15T12: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": "Jazz raikaa Kööpenhaminan klubeilla, eletään sotien välistä 1930-lukua. Maren, köyhän perheen tyttö, tuntee elämän sykkivän suonissaan mutta nuoren naisen elämänjano on yhteiskunnalle liikaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/699C0411BBD66CD73B8A8B02BF76055F/Kesyttamaton_12_" }, "description": { "fi": "<p>Jazz raikaa Kööpenhaminan klubeilla, eletään sotien välistä 1930-lukua. Maren, köyhän perheen tyttö, tuntee elämän sykkivän suonissaan mutta nuoren naisen elämänjano on yhteiskunnalle liikaa.</p><p>Maren leimataan huonotapaiseksi ja hänet sijoitetaan Sprogøn saarelle laitokseen, joka on tarkoitettu henkisesti heikoille ja yhteiskuntaan sopeutumattomille naisille. Saarella Maren solmii ystävyyssuhteen kanssasisarensa Sørinen kanssa ja naiset alkavat kapinoida – kauaskantoisin ja kohtalokkain seurauksin.</p><p>Malou Reymannin väkevä draamaelokuva kuvaa kappaleen tummasävyistä Tanskan historiaa ja sitä kuinka yhteiskunta petti aikansa kesyttämättömät naiset.</p><p>Kesyttämätön (Ustyrlig) palkittiin parhaan pohjoismaisen elokuvan palkinnolla Göteborgin elokuvajuhlilla 2023.</p><p>Ikäraja 12<br>Kesto 134 min<br>Ensi-ilta 4.8.2023</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia).</i></p>" }, "name": { "fi": "Kesyttämätön (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60702/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60399", "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:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4204, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:44.498805Z", "last_modified_time": "2023-09-07T14:21:44.498826Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733022.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4204/?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:21:44.354141Z", "last_modified_time": "2023-11-13T21:13:29.958980Z", "date_published": null, "start_time": "2023-09-14T14:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tekemään savesta lintuja, liskoja ja muita mielenkiintoisia eläimiä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EFE490F953F75B7EDD7EDBBB5422C3C4/Lintuja_ja_liskoja_keramiikan_perhekurssi" }, "description": { "fi": "<p>Tule tekemään savesta lintuja, liskoja ja muita mielenkiintoisia eläimiä.</p><p>Kurssin ensimmäisellä kerralla syvennymme eläimen rakenteeseen ja valmistamme eläinveistokset kivitavarasavesta. Toisella kerralla jatkamme raakapoltettujen esineiden pintakäsittelyllä käyttäen erilaisia keramiikan värejä ja lasitteita. Työt jäävät vielä toiseen polttoon, jonka jälkeen ne voi noutaa Malmitalosta.</p><p>Kurssipäivät ja -ajat ovat seuraavat (ilmoittautuneet sitoutuvat osallistumaan molemmille kerroille):<br>14.9. 17.30–19.45<br>28.9. 17.30–19.45</p><p>Huom! Kurssi on täyteen varattu. Voit ilmoittautua jonoon sähköpostitse: anni.hiekkala@hel.fi<br>Kurssi on tarkoitettu vanhempi-lapsi-pareille.</p><p>Ohjauskieli on suomi.<br>Kurssi on maksuton ja se soveltuu yli 3-vuotiaille lapsille aikuisen kanssa.</p>" }, "name": { "fi": "Lintuja ja liskoja – keramiikan perhekurssi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60399/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267202", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3782, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T13:24:19.993121Z", "last_modified_time": "2023-08-30T13:24:19.993144Z", "url": "https://www.helmet.fi/download/noname/{B4ABBCDD-AF22-42C1-AA22-EE4739CA1BA3}/105395", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3782/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-08-29T18:39:09.377748Z", "last_modified_time": "2023-11-13T06:20:48.554213Z", "date_published": "2023-08-29T15:55:00Z", "start_time": "2023-10-13T07:00:00Z", "end_time": "2023-10-13T08: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": "Laulamme yhdessä sekä suomeksi että ruotsiksi joka toinen perjantai klo 10-11, 1.9. alkaen, läpi pimenevän syksyn ja alkutalven. Tervetuloa mukaan! Välkommen med!" }, "info_url": null, "description": { "fi": "<p>Tule mukaan laulamaan lempilaulujasi! Laulamme yhdessä sekä suomeksi että ruotsiksi joka toinen perjantai klo 10-11, 1.9. alkaen.</p><p>Kokoonnumme laulamaan pe 1.9., 15.9., 29.9., 13.10., 27.10., 10.11., 24.11. sekä 8.12.</p><p>Etukäteisilmoittautumista ei tarvita. Tapahtuma on maksuton.</p><p>Lämpimästi tervetuloa mukaan! Välkommen med!</p><p>Lisätietoja: opera.tellus@gmail.com</p><p>Yhteistyössä: Eläkeläiset ry:n Helsingin aluejärjestö, Keski-Helsingin musiikkiopisto, Musik- och kulturskolan Sandels, Opera Tellus, Svenska Pensionärsförbundet</p>" }, "name": { "fi": "Perjantailauluja!" }, "provider_contact_info": null, "location_extra_info": { "fi": "Ala-Malmin tori 1, Helsinki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267202/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60701", "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/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4194, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:37.335024Z", "last_modified_time": "2023-09-07T14:21:37.335042Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735130.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4194/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:36.752132Z", "last_modified_time": "2023-11-12T21:13:30.063799Z", "date_published": null, "start_time": "2023-09-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": "Evan elämä juuri eläkkeelle jäätyään voisi olla paremminkin.", "sv": "Livet som nybliven pensionär kunde vara bättre." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C1DC06362C3DDBD9DBD8F3796CF5B4DC/Andra_Akten_toinen_naytos_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C1DC06362C3DDBD9DBD8F3796CF5B4DC/Andra_Akten_-_toinen_naytos_S_" }, "description": { "fi": "<p>Evan elämä juuri eläkkeelle jäätyään voisi olla paremminkin.</p><p>Evan ex-mies on muuttanut kadun toiselle puolelle uuden vaimonsa kanssa. Evan aikuinen poika on jostain käsittämättömästä syystä kyllästynyt ylisuojelevan äitinsä paapomiseen ja haluaakin enemmän omaa aikaa. Mitä Evan pitäisi tehdä kaikella vapaa-ajallaan?</p><p>Evalle tarjoutuu yllättäen mahdollisuus työkeikkaan, josta hän ei voi kieltäytyä – suuri tähtinäyttelijä, hieman erikoinen Harald Skoog, on saanut aivohalvauksen ja tarvitsee kuntoutusta omassa kodissaan. Se mikä alkaa katastrofina, kasvaa lämpimäksi ystävyydeksi, orastavaksi elämäniloksi ja toivoksi siitä, ettei elämä olekaan vielä ohitse. Itse asiassa se ei ehkä ole edes vielä alkanut.</p><p>Ikäraja: sallittu<br>Kesto 114 min<br>Ensi-ilta 11.8.2023</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia)</i></p>", "sv": "<p>Livet som nybliven pensionär kunde vara bättre.</p><p>Evas exman flyttar in tvärs över gatan med sin nya fru och Evas son verkar obegripligt nog tröttna på sin mammas daltande och vill ha mer egen tid, utan hennes överbeskyddande hjälp. Vad ska Eva göra av all tid?</p><p>Ett extraknäck dyker upp som Eva inte kan motstå – den store stjärnskådespelaren, den excentriske Harald Skoog, har drabbats av en stroke och behöver rehabilitering i sitt eget hem. Vad som börjar som en katastrof växer till varm vänskap, spirande livsglädje och till ett hopp om att livet inte är över. Faktum är att det kanske inte ens har börjat.</p><p>Åldersgränsen: T<br>Längd 114 min<br>Premiär 11.8.2023</p>" }, "name": { "fi": "Andra Akten – toinen näytös (S) – Kino Helios", "sv": "Andra Akten - toinen näytös (S) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60701/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }