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=78
{ "meta": { "count": 1627, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=79", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=77" }, "data": [ { "id": "helmet:261564", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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:10594/?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:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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": 2618, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:27:59.658852Z", "last_modified_time": "2024-02-06T13:38:10.910269Z", "url": "https://www.helmet.fi/download/noname/{D655650A-BD46-4087-8999-57508B6C8EA2}/99122", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2618/?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:p16485/?format=api" } ], "created_time": "2023-08-15T15:42:26.187610Z", "last_modified_time": "2023-11-04T10:21:47.682268Z", "date_published": "2023-06-16T08:00:00Z", "start_time": "2023-10-04T10:00:00Z", "end_time": "2023-10-04T12: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": "Tule keskiviikkoisin koulun jälkeen kirjastolle pelaamaan ja askartelemaan!" }, "info_url": null, "description": { "fi": "Tule keskiviikkoisin kirjastolle pelaamaan ja askartelemaan! Kerran viikossa kirjastolla järjestetään iltapäiväohjelmaa koululaisille: pelattavana on lautapelejä ja Nintendo Switch ja lisäksi on vaihtelevasti askartelua tai muuta puuhaa." }, "name": { "fi": "Koululaisten keskiviikot" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261564/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261607", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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:10595/?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:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2814, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:32.178117Z", "last_modified_time": "2023-08-15T15:32:32.178139Z", "url": "https://www.helmet.fi/download/noname/{2F465256-70F5-4865-A23E-8F4EA86D9978}/96942", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2814/?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:p4354/?format=api" } ], "created_time": "2023-08-15T15:41:36.071731Z", "last_modified_time": "2023-11-03T06:20:56.095740Z", "date_published": "2022-12-18T22:00:00Z", "start_time": "2023-10-03T07:00:00Z", "end_time": "2023-10-03T07:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lorutuokioissa nautitaan riimeistä ja loruista. Tuokio on suunnattu vauvaikäisille huoltajineen, isommat sisarukset ovat tervetulleita mukaan." }, "info_url": null, "description": { "fi": "<p>Lorutuokioissa nautitaan riimeistä ja loruista. Tuokio on suunnattu vauvaikäisille huoltajineen, isommat sisarukset ovat tervetulleita mukaan. Ei ennakkoilmoittautumista, tervetuloa!</p>" }, "name": { "fi": "Lorutuokio" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261607/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268212", "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:10592/?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:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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": 4765, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-14T10:35:43.007074Z", "last_modified_time": "2023-09-14T10:35:43.007104Z", "url": "https://www.helmet.fi/download/noname/{045DAE92-009E-4E9E-A4D0-B41675937190}/105827", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4765/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-14T10:35:42.853995Z", "last_modified_time": "2023-11-02T15:21:34.638786Z", "date_published": "2023-01-10T13:22:00Z", "start_time": "2023-10-02T15:00:00Z", "end_time": "2023-10-02T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Runokahvilassa luetaan ja kuunnellaan itselle ja toisille merkityksellisiä runoja. Tule mukaan!" }, "info_url": null, "description": { "fi": "<h3> <strong>Ma 2.10. ja 27.11. klo 18.00</strong> </h3><h3></h3><h3> Runokahvilassa pysähdytään ajatuksia herättävien sanojen äärelle. Jaa omat tunnelmasi toisten lukijoiden kanssa. </h3><h3></h3><h3> Tule lukemaan ääneen itseäsi puhutteleva runo ja vaihtamaan lukukokemuksia - tai vain kuuntelemaan toisten valitsemia mielirunoja! </h3></p><h3> Mikä runo on sinulle tärkeä? Miksi teksti puhuttelee sinua juuri nyt? <br> <br> Kahvi- ja teetarjoilu. Tapahtuma sopii kaikille kiinnostuneille. </h3><p> Tervetuloa! </p><p> Kuva: cocoparisienne/Pixabay</p>" }, "name": { "fi": "Runokahvila" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268212/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60696", "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": 4131, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:52.444438Z", "last_modified_time": "2023-09-07T14:20:52.444476Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735117.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4131/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:51.866058Z", "last_modified_time": "2023-11-01T21:13:44.755695Z", "date_published": null, "start_time": "2023-09-02T15: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": "Harold Fryn toiveikas taival ei ole tavallinen sankaritarina.", "sv": "Harolds och Maureens stillsamma tillvaro präglas av händelser i det förflutna som de aldrig kunnat prata om." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EA4F508D1078C45B6FB44A399CC2B464/Harold_Fryn_toiveikas_taival_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EA4F508D1078C45B6FB44A399CC2B464/Harold_Fryn_toiveikas_taival_12_" }, "description": { "fi": "<p>Harold Fryn toiveikas taival ei ole tavallinen sankaritarina.</p><p>Harold on huomaamaton mies, joka on epäonnistunut elämässään kaikessa tärkeässä: aviomiehenä, isänä ja ystävänä. Nyt reilusti yli 60-vuotiaana Harold kuitenkin yllättää niin itsensä, vaimonsa, kuin kaikki muutkin. Kun Harold kuulee vanhan ystävänsä olevan saattohoidossa, hän tahtoo lähettää tälle surunvalittelunsa. Postiin käveltyään Haroldista kuitenkin tuntuu, ettei kirje ole tarpeeksi.</p><p>Hetken mielijohteesta Harold lähtee jalan matkaan ystävänsä luo, ja pian matka koko maan halki tekee hänet tunnetuksi ympäri Englannin. Harold toivoo pelastavansa matkanteolla ystävänsä, mutta löytää samalla myös tien takaisin itseensä, ja lopulta kotiin.</p><p>Harold Fryn toiveikas taival on koskettava kertomus itsensä löytämisestä, anteeksiannosta ja hetkeen tarttumisesta. Hettie McDonaldin (Normal People) elokuvan nimiroolissa nähdään Oscar-palkittu Jim Broadbent yhdessä ylistetyn Penelope Wiltonin (Downton Abbey) kanssa. Elokuva pohjautuu Rachel Joycen bestselleriin.</p><p>Ikäraja: 12<br>Kesto 107 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>Harolds och Maureens stillsamma tillvaro präglas av händelser i det förflutna som de aldrig kunnat prata om.</p><p>En dag får Harold brev från en gammal kollega som ligger på hospice hundra mil därifrån. På väg till brevlådan med ett svar får han ingivelsen att istället besöka henne, och ger sig av direkt till fots utan vettiga kläder eller mobil. När Maureen inser vad han gjort blir hon både orolig och arg.</p><p>Under sin vandring genom England möter Harold många människor, får oväntade följare och nya insikter. Han förstår att det han egentligen försöker nå är försoning både med sig själv, med Maureen och deras förflutna. Kan Harolds nya livssyn få honom och Maureen att hitta tillbaka till varandra?</p><p>I huvudrollerna ser vi Oscarsbelönade Jim Broadbent och Penelope Wilton från \"Downton Abbey\", \"Hotel Marigold\" och \"After Life\".</p><p>Åldersgränsen: 12<br>Längd 107 min</p>" }, "name": { "fi": "Harold Fryn toiveikas taival (12) – Kino Helios", "sv": "Harold Fryn toiveikas taival (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60696/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60695", "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": 4128, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:50.040470Z", "last_modified_time": "2023-09-07T14:20:50.040491Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735112.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4128/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:49.890284Z", "last_modified_time": "2023-11-01T21:13:44.491766Z", "date_published": null, "start_time": "2023-09-02T12: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": "Pieni merenneito on visionäärisen Rob Marshallin näytelty versio Disneyn klassikoksi muodostuneesta Oscar-palkitusta animaatiomusikaalista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FD7FCEE856A7250BC3F1373BDF231B1B/Pieni_Merenneito_12_" }, "description": { "fi": "<p>Pieni merenneito on visionäärisen Rob Marshallin näytelty versio Disneyn klassikoksi muodostuneesta Oscar-palkitusta animaatiomusikaalista.</p><p>Pieni merenneito kertoo rakastetun tarinan kauniista ja topakasta nuoresta merenneidosta nimeltä Ariel, joka janoaa seikkailuja. Kuningas Tritonin tyttäristä nuorimpana ja uhmakkaimpana Ariel haluaa tietää enemmän elämästä aaltojen yläpuolella ja pinnalla vieraillessaan hän rakastuu hurmaavaan prinssi Erikiin.</p><p>Merenneidoille ei ole sallittua olla tekemisissä ihmisten kanssa, mutta Arielin on noudatettava sydämensä kutsua. Hän tekee sopimuksen ilkeän merinoidan Ursulan kanssa, jonka avulla hän saa mahdollisuuden maistaa maanpäällistä elämää, mutta tulee samalla asettaneeksi henkensä – ja isänsä valtakunnan – vaaraan.</p><p>Ikäraja: 12<br>Kesto 136 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>" }, "name": { "fi": "Pieni Merenneito (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60695/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60693", "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": 4127, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:48.961000Z", "last_modified_time": "2023-09-07T14:20:48.961032Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735107.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4127/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:48.381080Z", "last_modified_time": "2023-11-01T21:13:44.322753Z", "date_published": null, "start_time": "2023-09-02T10: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/FE88EEED536A2B7178D66003562AFBA3/Kolme_iloista_rosvoa_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/FE88EEED536A2B7178D66003562AFBA3/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:60693/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60692", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "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": 4122, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:44.438113Z", "last_modified_time": "2023-09-07T14:20:44.438136Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735096.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:44.137295Z", "last_modified_time": "2023-10-31T21:13:34.112145Z", "date_published": null, "start_time": "2023-09-01T12: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": "Elämä Barbiemaassa on täydellistä. Paitsi jos sinulla on eksistentiaalinen kriisi. Tai jos olet Ken.", "en": "To live in Barbie Land is to be a perfect being in a perfect place. Unless you have a full-on existential crisis. Or you’re a Ken." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EC09B4C4AEBB24CB30E8831AF145F807/Barbie_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EC09B4C4AEBB24CB30E8831AF145F807/Barbie_7_", "en": "http://www.malmitalo.fi/en/events/event/EC09B4C4AEBB24CB30E8831AF145F807/Barbie_7_" }, "description": { "fi": "<p>Elämä Barbiemaassa on täydellistä. Paitsi jos sinulla on eksistentiaalinen kriisi. Tai jos olet Ken.</p><p>Oscar-ehdokas ohjaaja-käsikirjoittaja Greta Gerwig tuo valkokankaille elokuvan ”Barbie”. Oscar-ehdokas Margot Robbie on Barbie ja Ryan Gosling on Ken. Muissa rooleissa nähdään America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Rhea Perlman ja Will Ferrell.</p><p>Elokuvaa tähdittävät lisäksi Cruz Kayne, Emma Mackey, Hari Nef, Alexandra Shipp, Kingsley Ben-Adir, Simu Liu, Ncuti Gatwa, Scott Evans, Jamie Demetriou, Connor Swindells, Sharon Rooney, Nicola Coughlan, Ritu Arya, Grammyn voittanut laulaja-lauluntekijä Dua Lipa sekä Oscar-voittaja Helen Mirren.<br> <br>Ikäraja 7 <br>Kesto 114 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>Längd: 1 h 54 min</p><p>Distributör: Warner Bros. Finland Oy</p><p>Regi: Greta Gerwig</p><p>Skådespelare: Margot Robbie, Ryan Gosling, America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Will Ferrell, Helen Mirren</p><p>Åldersgränsen 7</p>", "en": "<p>To live in Barbie Land is to be a perfect being in a perfect place. Unless you have a full-on existential crisis. Or you’re a Ken.</p><p>From Oscar-nominated writer/director Greta Gerwig comes “Barbie,” starring Oscar-nominees Margot Robbie and Ryan Gosling as Barbie and Ken, alongside America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Rhea Perlman, and Will Ferrell.</p><p>Gerwig directed “Barbie” from a screenplay by Gerwig & Oscar nominee Noah Baumbach, based on Barbie by Mattel.</p><p>Age rating: 7<br>Duration: 114 min</p>" }, "name": { "fi": "Barbie (7) – Kino Helios", "sv": "Barbie (7) – Kino Helios", "en": "Barbie (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60692/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60397", "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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4118, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:41.930898Z", "last_modified_time": "2023-09-07T14:20:41.930918Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734863.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4118/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:41.365888Z", "last_modified_time": "2023-10-30T21:13:32.268325Z", "date_published": null, "start_time": "2023-08-31T15: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": "Äideistä parhain on kaunis ja koskettava elokuva äidin ja lapsen suhteesta." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/66F016E7760C65A3BCC8BE479CD1B4D0/Kuukauden_klassikkoelokuva_Aideista_parhain_" }, "description": { "fi": "<p>Äideistä parhain on kaunis ja koskettava elokuva äidin ja lapsen suhteesta.</p><p>Elokuva kertoo sotalapsena Ruotsiin lähetetyn 9-vuotiaan Eeron matkasta tuntemattomaan maahan uuden äidin luo. Se on elokuva pojasta, jolla on kaksi äitiä ja kaksi kotia – mutta joka ei silti tunne olevansa missään kuin kotonaan.</p><p>Suomesta evakuoitiin talvi- ja jatkosodan aikana Ruotsiin yli 70 000 lasta. Palkitun Klaus Härön ohjaama elokuva on ensimmäinen pitkä elokuva yhden sotalapsen kohtalosta.</p><p>Ikäsuositus: 12<br>Kesto 110 min<br>Vapaa pääsy</p>" }, "name": { "fi": "Kuukauden klassikkoelokuva: Äideistä parhain – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60397/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60741", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 4114, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:39.572046Z", "last_modified_time": "2023-09-07T14:20:39.572070Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_726545.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:38.967750Z", "last_modified_time": "2023-10-30T21:13:31.897424Z", "date_published": null, "start_time": "2023-08-31", "end_time": "2023-09-23", "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": "Pöytä kahdelle on äänitaiteilija Jaakko Aution ja musiikintekijä Hilla Väyrysen interaktiivinen ääni-installaatio ja soiva tarot-luenta, joka kutsuu kaksikkoja — rakastavaisia ja ystäviä — tunnustelemaan läsnäoloa ja läheisyyttä välillään.", "sv": "\"Bord för två\" är en interaktiv ljudinstallation och sonisk tarot-läsning av ljudkonstnären Jaakko Autio och musikskaparen Hilla Väyrynen, som inbjuder par - älskare och vänner - att utforska närvaron och intimiteten mellan dem.", "en": "\"Table for Two\" is an interactive sound installation and sonic tarot reading by sound artist Jaakko Autio and music maker Hilla Väyrynen, which invites pairs - lovers and friends - to explore the presence and intimacy between them." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/424957634BB9D8C52B540028431AA42E/Jaakko_Autio_Hilla_Vayrynen_Poyta_kahdelle_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/424957634BB9D8C52B540028431AA42E/Jaakko_Autio_Hilla_Vayrynen_Bord_for_tva", "en": "http://www.malmitalo.fi/en/events/event/424957634BB9D8C52B540028431AA42E/Jaakko_Autio_Hilla_Vayrynen_Table_for_two" }, "description": { "fi": "<p>Pöytä kahdelle on äänitaiteilija Jaakko Aution ja musiikintekijä Hilla Väyrysen interaktiivinen ääni-installaatio ja soiva tarot-luenta, joka kutsuu kaksikkoja — rakastavaisia ja ystäviä — tunnustelemaan läsnäoloa ja läheisyyttä välillään.</p><p>Teoksen voi kokea myös yksin kuvitellen vastakkaiselle penkille merkityksellisen toisen. Pöydän äärellä kokijoille aukeaa jokaisella kuuntelukerralla uniikki musiikillinen matka, joka johdattaa heidät kohtaamaan itsensä ja toisensa käsillä olevassa hetkessä.<br> <br>“Työllämme tahdomme suunnata tietoisen huomion ihmisen sisäiseen maailmaan, jossa voi tuntea arjen ristiriidat ylittävää yhteyttä itseen ja toiseen. Työn äärellä voi levätä.” –Jaakko ja Hilla</p><p>Teoksessa käsitellään rakkautta ja kahden välistä kohtaamista lempeän pelillisesti tarot-korttien ja äänitaiteen keinoin. Pöytä kahdelle esittää kuulijoille kysymyksiä, mielikuvatehtäviä ja sattumanvaraisesti arvottuja lauluksi sovitettuja tarot-kortteja. Nämä peilautuvat kokijan henkilökohtaista pohdintaa vasten tarjoten heijastuspinnan, jossa oma ajankohtainen itse voi paljastua. Erilaisia mahdollisia kuljetuksia on yli puoli miljoonaa.</p><p>Äänitaiteilijat: Jaakko Autio ja Hilla Väyrynen / Käsikirjoitus: Jaakko Autio ja Hilla Väyrynen / Musiikki ja narraatio: Hilla Väyrynen / Qlab- ja Arduino-ohjelmointi: Jaakko Autio / Teosta on tukenut Varsinais-Suomen Taiteen edistämiskeskus, Turun kaupunki ja Valco.</p><p>Kesto: n. 15 min.</p><p><b>Hilla Väyrynen</b> (s. 1985) on oululais-turkulainen teatterisäveltäjä-äänisuunnittelija, nukketeatteritaiteilija ja psykologian maisteriopiskelija.</p><p>https://www.hillavayrynen.com</p><p><b>Jaakko Autio</b> (s. 1981) on äänitaiteilija ja taiteen maisteri, jonka installaatioita on ollut esillä mm. Mikkelin taidemuseossa, Retretissä, Seinäjoen taidehallissa ja Tallinnan musiikkiviikoilla Virossa. Hän työskentelee myös äänisuunnittelijana teatterin kentällä.</p><p>https://www.jaakkoautio.com</p>", "sv": "<p>\"Bord för två\" är en interaktiv ljudinstallation och sonisk tarot-läsning av ljudkonstnären Jaakko Autio och musikskaparen Hilla Väyrynen, som inbjuder par - älskare och vänner - att utforska närvaron och intimiteten mellan dem.</p><p>Verket kan också upplevas ensam, genom att föreställa sig en betydande andra över bänken. Vid bordet kommer upplevare att påbörja en unik musikalisk resa varje gång de lyssnar, vilket leder dem att möta sig själva och varandra i nuvarande ögonblick.</p><p>\"Med vårt arbete vill vi rikta medveten uppmärksamhet till den mänskliga inre världen, där man kan känna en koppling som överskrider motsättningarna i vardagen till sig själv och till en annan. Man kan vila vid arbetet.\" - Jaakko och Hilla</p><p>Verket handlar om kärlek och mötet mellan två på ett mjukt lekfullt sätt med tarotkort och ljudkonst. \"Bord för två\" presenterar lyssnare med frågor och imaginära uppgifter, och drar slumpmässigt låtar anpassade från tarotkort. Dessa speglar upplevarens personliga eftertanke, erbjuder en reflekterande yta där ens nuvarande själv kan avslöja sig. Det finns över en halv miljon möjliga sekvenser.</p><p>Ljudkonstnärer: Jaakko Autio och Hilla Väyrynen / Manus: Jaakko Autio och Hilla Väyrynen / Musik och berättelse: Hilla Väyrynen / Qlab och Arduino programmering: Jaakko Autio / Arbetet har stödts av Regional konstfrämjande centrum i sydvästra Finland, staden Åbo, och Valco.</p><p>Längd: ca 15 min.<br>Språk: Finska.</p><p>Om skaparna:</p><p><b>Jaakko Autio</b> (f. 1981) är en ljudkonstnär och Master of Arts, vars installationer har visats på platser som Mikkeli Art Museum, Retretti, Seinäjoki Art Hall, och Tallinn Music Week i Estland. Han arbetar också som ljuddesigner inom teaterfältet.</p><p>https://www.jaakkoautio.com</p><p><b>Hilla Väyrynen</b> (f. 1985) är en teaterkompositör-ljuddesigner från Åbo, en dockteaterartist och masterstudent i psykologi.</p><p>https://www.hillavayrynen.com</p>", "en": "<p>\"Table for Two\" is an interactive sound installation and sonic tarot reading by sound artist Jaakko Autio and music maker Hilla Väyrynen, which invites pairs - lovers and friends - to explore the presence and intimacy between them.</p><p>The work can also be experienced alone, imagining a significant other across the bench. At the table, the experiencers will embark on a unique musical journey each time they listen, leading them to encounter themselves and each other in the present moment.</p><p>\"With our work, we want to direct conscious attention to the human inner world, where one can feel a connection that transcends the contradictions of everyday life to oneself and to another. One can rest by the work.\" - Jaakko and Hilla</p><p>The work deals with love and the encounter between two in a gently playful way with tarot cards and sound art. \"Table for Two\" presents listeners questions and imaginary tasks, and randomly draws songs adapted from tarot cards. These mirror the experiencer's personal contemplation, offering a reflective surface where one's current self can reveal itself. There are over half a million possible sequences.</p><p>Sound Artists: Jaakko Autio and Hilla Väyrynen / Script: Jaakko Autio and Hilla Väyrynen / Music and Narration: Hilla Väyrynen / Qlab and Arduino programming: Jaakko Autio / The work has been supported by the Regional Art Promotion Center of Southwest Finland, the city of Turku, and Valco.</p><p>Duration: approx. 15 min.<br>Language: Finnish</p><p>About the creators:</p><p><b>Jaakko Autio</b> (b. 1981) is a sound artist and Master of Arts, whose installations have been exhibited at places like the Mikkeli Art Museum, Retretti, Seinäjoki Art Hall, and Tallinn Music Week in Estonia. He also works as a sound designer in the theater field.</p><p>https://www.jaakkoautio.com</p><p><b>Hilla Väyrynen</b> (b. 1985) is a theatre composer-sound designer from Turku, a puppet theatre artist, and a master's student in psychology.</p><p>https://www.hillavayrynen.com</p>" }, "name": { "fi": "Jaakko Autio & Hilla Väyrynen: Pöytä kahdelle", "sv": "Jaakko Autio & Hilla Väyrynen: Bord för två", "en": "Jaakko Autio & Hilla Väyrynen: Table for two" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60741/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267208", "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:34:52.222255Z", "last_modified_time": "2023-10-30T07:21:56.119410Z", "date_published": "2023-08-29T15:55:00Z", "start_time": "2023-09-29T07:00:00Z", "end_time": "2023-09-29T08: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:267208/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60661", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "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": 4113, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:38.328388Z", "last_modified_time": "2023-09-07T14:20:38.328411Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735094.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4113/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:37.895578Z", "last_modified_time": "2023-10-29T21:13:30.662123Z", "date_published": null, "start_time": "2023-08-30T15: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": "Elämä Barbiemaassa on täydellistä. Paitsi jos sinulla on eksistentiaalinen kriisi. Tai jos olet Ken.", "en": "To live in Barbie Land is to be a perfect being in a perfect place. Unless you have a full-on existential crisis. Or you’re a Ken." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/819BED9DF90BC52EF9CB40FAD82BC228/Barbie_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/819BED9DF90BC52EF9CB40FAD82BC228/Barbie_7_", "en": "http://www.malmitalo.fi/en/events/event/819BED9DF90BC52EF9CB40FAD82BC228/Barbie_7_" }, "description": { "fi": "<p>Elämä Barbiemaassa on täydellistä. Paitsi jos sinulla on eksistentiaalinen kriisi. Tai jos olet Ken.</p><p>Oscar-ehdokas ohjaaja-käsikirjoittaja Greta Gerwig tuo valkokankaille elokuvan ”Barbie”. Oscar-ehdokas Margot Robbie on Barbie ja Ryan Gosling on Ken. Muissa rooleissa nähdään America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Rhea Perlman ja Will Ferrell.</p><p>Elokuvaa tähdittävät lisäksi Cruz Kayne, Emma Mackey, Hari Nef, Alexandra Shipp, Kingsley Ben-Adir, Simu Liu, Ncuti Gatwa, Scott Evans, Jamie Demetriou, Connor Swindells, Sharon Rooney, Nicola Coughlan, Ritu Arya, Grammyn voittanut laulaja-lauluntekijä Dua Lipa sekä Oscar-voittaja Helen Mirren.<br> <br>Ikäraja 7 <br>Kesto 114 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>Längd: 1 h 54 min</p><p>Distributör: Warner Bros. Finland Oy</p><p>Regi: Greta Gerwig</p><p>Skådespelare: Margot Robbie, Ryan Gosling, America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Will Ferrell, Helen Mirren</p><p>Åldersgränsen 7</p>", "en": "<p>To live in Barbie Land is to be a perfect being in a perfect place. Unless you have a full-on existential crisis. Or you’re a Ken.</p><p>From Oscar-nominated writer/director Greta Gerwig comes “Barbie,” starring Oscar-nominees Margot Robbie and Ryan Gosling as Barbie and Ken, alongside America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Rhea Perlman, and Will Ferrell.</p><p>Gerwig directed “Barbie” from a screenplay by Gerwig & Oscar nominee Noah Baumbach, based on Barbie by Mattel.</p><p>Age rating: 7<br>Duration: 114 min</p>" }, "name": { "fi": "Barbie (7) – Kino Helios", "sv": "Barbie (7) – Kino Helios", "en": "Barbie (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60661/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266434", "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:10592/?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:11194/?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": 3526, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-22T14:25:57.964776Z", "last_modified_time": "2023-08-22T14:25:57.964808Z", "url": "https://www.helmet.fi/download/noname/{F5470EFF-8E13-404E-9C7F-DECA4FF70356}/105162", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3526/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-22T14:29:36.704288Z", "last_modified_time": "2023-10-29T15:21:40.107126Z", "date_published": "2022-11-22T06:57:00Z", "start_time": "2023-09-28T14:30:00Z", "end_time": "2023-09-28T16: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": "Helsingin työväenopiston työpajassa saat tukea ja ideoita kirjoitusharrastukseesi, opit muokkaamaan havaintoja ja tuntemuksia tekstiksi sekä tutustut henkilökuvauksen ja tarinankerronnan perusteisiin." }, "info_url": null, "description": { "fi": "<p> <strong>Malmin kirjasto klo 17.30-19.00 (monitoimitila)</strong> </p><p>Avoimet kirjoittajatreffit on kaikille avoin kirjoittamisen työpaja, jossa kirjoitetaan lyhyitä kirjoituksia opettajan tehtävien mukaan.</p><p>Kirjoitetaan, luetaan ääneen tekstejä toisille ja jaetaan yhdessä kannustavaa palautetta. Työpajassa saat tukea ja ideoita kirjoitusharrastukseesi, opit muokkaamaan havaintoja ja tuntemuksia tekstiksi: minuuttinovelleiksi, runoiksi, kertomuksiksi...</p><p>Voit tuoda mukanasi yhden lyhyen tekstin, jonka haluat lukea toisille ääneen, mutta työpajan pääpaino on kuitenkin yhteisissä kirjoitusharjoituksissa.</p><p>Voit osallistua niin moneen Avointen kirjoittajatreffien työpajaan kuin sinulle sopii.</p><p>Tapaamiset: 14.9., 28.9., 12.10. (kieliluokka 1. krs), 2.11., 16.11. ja 30.11. </p><p> <strong>Huom! 12.10. opetuspaikkana työväenopiston kieliluokka</strong> </p><p>Opetuskieli: suomi</p><p>Opettaja: <strong>Sari Pauloma</strong></p><p>Vapaa pääsy. Tervetuloa kokeilemaan ja jatkamaan kirjoittamista.Ota kirjoitusvälineet ja tule mukaan kirjoittamaan! Ei etukäteisilmoittautumista eikä kurssimaksua. Max. osallistujamäärä: 16</p><p>Helsingin työväenopiston <a href=\"https://ilmonet.fi/course/H235292\">https://ilmonet.fi/course/H235292</a></p><p>Kuva: Pixabay</p>" }, "name": { "fi": "Avoimet kirjoittajatreffit" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266434/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265427", "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:10592/?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:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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": 2779, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:47.118243Z", "last_modified_time": "2024-02-06T13:38:35.671638Z", "url": "https://www.helmet.fi/download/noname/{7DE0FD9B-E3A3-42C8-9794-22B07F501D2A}/88205", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2779/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:40:33.097030Z", "last_modified_time": "2023-10-29T11:21:23.943757Z", "date_published": "2023-08-14T21:00:00Z", "start_time": "2023-09-28T12:00:00Z", "end_time": "2023-09-28T12: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": "Malmin kirjaston kielikahvila" }, "info_url": null, "description": { "fi": "<p>Tervetuloa Malmin kirjaston kielikahvilaan!</p><p>Kielikahvilassa keskustelemme suomeksi kiinnostavista aiheista. Osaathan jo jonkin verran suomea?</p><p>Kokoonnumme <strong>torstaisin klo 15-16</strong>. Ensimmäinen tapaaminen on 31.8.</p>" }, "name": { "fi": "Kielikahvila" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265427/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269198", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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:10595/?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:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5030, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-05T11:03:48.182008Z", "last_modified_time": "2023-10-05T11:03:48.182031Z", "url": "https://www.helmet.fi/download/noname/{CE36D360-27C0-499A-B888-36F15940D816}/106486", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5030/?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:p4354/?format=api" } ], "created_time": "2023-10-05T11:03:47.504329Z", "last_modified_time": "2023-10-29T06:22:27.046073Z", "date_published": "2023-10-05T09:00:00Z", "start_time": "2023-10-28T10:00:00Z", "end_time": "2023-10-28T12: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": "Halloween-teemainen perhelauantai Tapanilan kirjastossa, tervetuloa koko perheen voimin!" }, "info_url": null, "description": { "fi": "<p>Syksyn toisena perhelauantaina Tapanilan kirjastossa on halloween-tunnelmaa. Sadut, askartelut ja kirjasuositukset virittävät kurpitsojen, kummitusten ja muiden jännittävien teemojen pariin.<br><br> Piirrä hupsuja hirviöitä, 3D-tulosta karmiva kirjanmerkki tai osallistu vitsikilpailuun! Tapahtuman alussa klo 13 on satutuokio.<br><br> Tervetuloa koko perheen voimin! <br><br> </p><p>Kuva: Unsplash / David Menidrey</p>" }, "name": { "fi": "Perhelauantai: Halloween" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269198/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261566", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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:10594/?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:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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": 2618, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:27:59.658852Z", "last_modified_time": "2024-02-06T13:38:10.910269Z", "url": "https://www.helmet.fi/download/noname/{D655650A-BD46-4087-8999-57508B6C8EA2}/99122", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2618/?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:p16485/?format=api" } ], "created_time": "2023-08-15T15:39:50.669764Z", "last_modified_time": "2023-10-28T10:21:00.645165Z", "date_published": "2023-06-16T08:00:00Z", "start_time": "2023-09-27T10:00:00Z", "end_time": "2023-09-27T12: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": "Tule keskiviikkoisin koulun jälkeen kirjastolle pelaamaan ja askartelemaan!" }, "info_url": null, "description": { "fi": "Tule keskiviikkoisin kirjastolle pelaamaan ja askartelemaan! Kerran viikossa kirjastolla järjestetään iltapäiväohjelmaa koululaisille: pelattavana on lautapelejä ja Nintendo Switch ja lisäksi on vaihtelevasti askartelua tai muuta puuhaa." }, "name": { "fi": "Koululaisten keskiviikot" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261566/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266401", "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:10673/?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:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 3595, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-24T14:31:30.339981Z", "last_modified_time": "2023-08-24T14:31:30.340003Z", "url": "https://www.helmet.fi/download/noname/{79AE7F4B-64F6-4DFF-87DD-428FC40A1B93}/105149", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3595/?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:p11617/?format=api" } ], "created_time": "2023-08-24T14:31:30.198425Z", "last_modified_time": "2023-10-27T15:22:08.717154Z", "date_published": "2023-08-24T13:18:00Z", "start_time": "2023-09-26T13:00:00Z", "end_time": "2023-09-26T16: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": "Helsingin pohjoisen alueen kirjastot järjestävät yhteisen FIFA-turnauksen 13-18 vuotiaille nuorille.\nKuusi eri kirjastoa ottavat mittaa toisistaan tässä kisassa, jossa selviää alueen paras pelaaja." }, "info_url": null, "description": { "fi": "<p>Helsingin pohjoisen alueen kirjastot järjestävät yhteisen FIFA-turnauksen <strong>13-18 vuotiaille nuorille</strong>.<br> Kuusi eri kirjastoa ottavat mittaa toisistaan tässä kisassa, jossa selviää alueen paras FIFA-pelaaja!</p><p> <br> Kunkin kirjaston karsintapelien voittaja etenee finaaliin, joka järjestetään Malmin kirjastossa.<br> Finaalin parhaimmistolle on luvassa palkintoja.<br> </p><p> <strong>Ilmoittautuminen</strong> alkaa 18.9. osoitteessa <strong><a href=\"http://bit.ly/kirjastonfifa\">bit.ly/kirjastonfifa</a></strong>. Voit halutessasi ilmoittautua mukaan myös turnaukseen osallistuvassa kirjastossa.<br> Kuhunkin karsintaan mahtuu mukaan noin 8 pelaajaa. Pelinä toimii FIFA23 (Playstation 4, Viikin kirjastossa Playstation 5).</p><p> <br> <strong>Turnauksen aikataulu</strong> </p><p>Karsinnat:<br> Malmi ti 26.9. klo 16-19.45 <br> Viikki ke 27.9. klo 16-19.45 <br> Tapuli ke 27.9. klo 16-19.45 <br> Puistola to 28.9. klo 16-19.45 <br> Pukinmäki ti 3.10. klo 16-19.45 <br> Jakomäki ke 4.10. klo 16-19.45 <br> <br> Finaali:<br> Malmi ke 11.10. klo 16-19.45 </p>" }, "name": { "fi": "FIFA-turnauksen karsinta Malmin kirjastossa" }, "provider_contact_info": null, "location_extra_info": { "fi": "monitoimitila" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266401/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261578", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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:10592/?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:11689/?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": 2743, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:30:59.045477Z", "last_modified_time": "2023-08-15T15:30:59.045500Z", "url": "https://www.helmet.fi/download/noname/{6C79680D-C080-4F8D-B3B5-F0FE633F272A}/75016", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2743/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:39:02.692155Z", "last_modified_time": "2023-10-26T13:21:40.746937Z", "date_published": "2022-12-27T08:00:00Z", "start_time": "2023-09-25T14:00:00Z", "end_time": "2023-09-25T16: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": "Kiinnostaako huovutus, kirjonta, tekstaus tai tuunaus? Tutustutaan erilaisiin askartelu- ja käsityötekniikoihin yhdessä teekupin äärellä." }, "info_url": null, "description": { "fi": "<p>Kiinnostaako huovutus, kirjonta, tekstaus tai tuunaus? Tapanilan kirjaston askartelukerhossa tutustutaan erilaisiin askartelu- ja käsityötekniikoihin yhdessä teekupin äärellä. Tervetuloa näpräämään! Lisätietoja: anni.forselius@hel.fi</p><p> <strong>Aikuisten askartelukerho kokoontuu joka kuun viimeisenä maanantaina klo 17-19:</strong> </p><p>28.8. Näkyvä paikkaus: opetellaan tapoja paikata vaatteita niin, että paikka saa näkyä. Voit tuoda oman paikattavan vaatteen tai tekstiilin mukaan halutessasi.</p><p>25.9.. Neulahuovutusta: tutustutaan neulahuovutukseen koristelutekniikkana. Voit tuoda oman villaisen vaatteen, kankaan, laukun ym ja huovutusvälineitä, jos sinulla on, tai kokeilla kerhon välineillä.</p><p>30.10. Heijastimet: askarrellaan heijastimia itselle tai lahjaksi. Voit ottaa mukaan omia heijastavia lankoja ym.</p><p>27.11. Jouluaskartelua: tehdään lehtileikkeistä joulukortteja, pakettikortteja, koristeita ja magneetteja. Et tarvitse mitään mukaan.</p><ul></ul>" }, "name": { "fi": "Aikuisten askartelukerho" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261578/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59803", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4093, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:25.118837Z", "last_modified_time": "2023-09-07T14:20:25.118860Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730195.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4093/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:24.917298Z", "last_modified_time": "2023-10-25T20:13:40.431615Z", "date_published": null, "start_time": "2023-08-26T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kissa on yhdistelmä glitterin kyllästämää 70-luvun glam-spektaakkelia, dekatenttia kapinaa kapinaa vastaan ja kiihkeää rakkautta.", "sv": "Kissa är en kombination av ett 70-tals glamspektakel med en överdos av glitter, ett dekadent uppror mot upproret och passionerad kärlek.", "en": "Kissa is a combination of an authentic 70s glam rock spectacle, a decadent rebellion against rebellion and passionate love." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1C404A044C27F2BE8FE3966299015CB9/Kissa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1C404A044C27F2BE8FE3966299015CB9/Kissa", "en": "http://www.malmitalo.fi/en/events/event/1C404A044C27F2BE8FE3966299015CB9/Kissa" }, "description": { "fi": "<p>Kissa on yhdistelmä glitterin kyllästämää 70-luvun glam-spektaakkelia, dekatenttia kapinaa kapinaa vastaan ja kiihkeää rakkautta.</p><p>Yhtye ammentaa musiikillisen ja lyyrisen voimansa huolettomasta rock ’n’ rollin alkulähteestä, herkästä ja kuplivasta pop-estetiikasta sekä voimapopin isoista harmonisista kitaroista ja melodiakoukuista.</p><p>Livenä Kissa on päällekäyvän riehakasta, leveiden haara-asentojen ja armottomana vinkuvien kitaroiden kuorruttamaa poprock-unelmaa. Talla on pohjassa ja hiki pinnassa, ja hurmos pitää otteessaan alusta loppuun.</p><p>Värivalojen ristitulesta ja vaaleanpunaisesta usvasta nousee persoonallinen, värikäs ja räiskyvä eriskummallinen sekstetti, josta on mahdoton irrottaa katsettaan. Tunnelma on kutkuttavan arvaamaton, kaahataan lähellä reunaa silläkin uhalla, että käydään ojan puolella. Kissa viekoittelee ehdoitta katsojan mukanaan tulikuumaan ja hikiseen sykkeeseen. Sydän on tehty napalmista – tätä kissaa ei voi pysäyttää mikään.</p><p>Kissan debyyttilevy Vaarallinen bändi julkaistiin 4. kesäkuuta 2021 Svart Recordsin kautta. Eheä ja voimaa uhkuva levykokonaisuus koostuu harkituista koukuista, raikkaista ja rajuista riffeistä, massiivisista synaverhoista sekä sopivasti kieli poskessa kirjoitetuista tarinoista. Kepeän kuplivan pinnan alla asuu silti herkkä ja hellä rakastaja. Bändi on moniaistinen kokemus, joka tarjoaa silmiä hivelevän shown.</p><p>Yhtye julkaisi keväällä 2023 toisen albuminsa, joka kantaa nimeä Apinalinna. Kissan toinen näytös on herkkä, hienostunut ja kunnianhimoinen. Siinä on aiempaa enemmän syvyyttä. Luvassa on kovaa rokkia, tarttuvaa pop-sensibiliteettiä, isoja sovituksia ja suuria tunteita huolellisesti yhteen liimattuna.<br> <br>Vapaa pääsy</p><p><b>Malmin tapahtumakesä 9.–17.6. ja 17.–26.8.</b><br>Ala-Malmin puisto</p><p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille. Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Tutustu Malmin tapahtumakesän koko ohjelmaan täällä:</b></p><p>https://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "sv": "<p>Kissa är en kombination av ett 70-tals glamspektakel med en överdos av glitter, ett dekadent uppror mot upproret och passionerad kärlek.</p><p>Bandet hämtar sin musikaliska och lyriska kraft från rock ’n’ rollens bekymmerslösa urkälla, sensitiv och bubblande popestetik samt powerpopens stora harmoniska gitarrer och melodislingor.<br> <br>Kissas liveuppträdanden är en gåpåigt uppsluppen poprockdröm med bredbenta scenposer och skoningslöst vinande gitarrer. Plattan är i mattan och svetten lackar – ren och skär extas från start till slut.</p><p><b>Malms evenemangssommar</b><br>Nedre Malms park<br> <br>Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar. Det utlovas fantastiska spelningar, allsång, cirkuskonst, karnevalsstämning och mångahanda verkstäder.<br> <br>Välkommen att titta, prova och inspireras!<br> <br>Inträdet till evenemangen i parken är fritt.</p><p><b>Här kan du se hela programmet:</b></p><p>https://www.malmitalo.fi/sv/evenemangen/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "en": "<p>Kissa is a combination of an authentic 70s glam rock spectacle, a decadent rebellion against rebellion and passionate love.</p><p>The band takes its musical and lyrical inspiration from free-flowing font of rock ‘n’ roll, tender and bubbly pop aesthetics and the big guitar harmonies and melodic hooks of power pop.<br> <br>Kissa’s raucous live performances are like a hazy pop rock dream complete with rock poses and relentlessly screeching guitars. Be prepared for some sweaty high-octane fun from start to finish.</p><p><b>Malmi Summer of Events</b><br>Ala-Malmin puisto park<br> <br>Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events! The programme will include a variety of activities for people of all ages: amazing live music, sing-alongs, a carnival atmosphere and a wealth of workshops.<br> <br>Come by and experience the excitement!<br> <br>Free admission to all park events.</p><p><b>You can find the programme here:</b></p><p>https://www.malmitalo.fi/en/events/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>" }, "name": { "fi": "Kissa – Malmin tapahtumakesä", "sv": "Kissa – Malms evenemangssommar", "en": "Kissa – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59803/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59802", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4091, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:23.930293Z", "last_modified_time": "2023-09-07T14:20:23.930336Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730194.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4091/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:23.268578Z", "last_modified_time": "2023-10-25T20:13:40.260075Z", "date_published": null, "start_time": "2023-08-26T15: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": "Asfalttia on nuoltu ja bensa-asemia nähty. Nyt nelikko vihdoin samassa kokoonpanossa!", "sv": "Asfalten har nötts och många bensinmackar setts. Nu är alla fyra äntligen tillsammans!", "en": "After seeing a lot of roads and petrol stations, the four of them are finally in the same band!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/76AAD5A65F688F5ED5817C079AF73BDF/Suosikki", "sv": "http://www.malmitalo.fi/sv/evenemang/event/76AAD5A65F688F5ED5817C079AF73BDF/Suosikki", "en": "http://www.malmitalo.fi/en/events/event/76AAD5A65F688F5ED5817C079AF73BDF/Suosikki" }, "description": { "fi": "<p>Asfalttia on nuoltu ja bensa-asemia nähty. Nyt nelikko vihdoin samassa kokoonpanossa!</p><p>Soittamisen ilo on edelleen samalla tasolla kuin 90-luvun puolessavälissä, kun bändin jätkät ekan kerran tapasivat.</p><p>Suosikin musassa uniikiksi komboksi yhdistyvät Bob Mouldin yhtyeiden, The Jesus Lizardin jenkkialternative ja uuden polven Ruotsi-punk (Masshysteri).</p><p>90-luvun puolessa välissä Jussi, Antti ja Sakke soittivat kaikki bändeineen samalla treeniksellä ja pari vuotta myöhemmin Jamppa perusti Ylöjärvellä Abduktion. Nyt ollaan tilanteessa, jossa nelikko soittaa ensimmäistä kertaa samassa kokoonpanossa!</p><p>Vapaa pääsy</p><p><b>Malmin tapahtumakesä 9.–17.6. ja 17.–26.8.</b><br>Ala-Malmin puisto</p><p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille. Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Tutustu Malmin tapahtumakesän koko ohjelmaan täällä:</b></p><p>https://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "sv": "<p>Asfalten har nötts och många bensinmackar setts. Nu är alla fyra äntligen tillsammans!</p><p>Suosikkis musik är en unik kombo av Bob Moulds band, The Jesus Lizards alternativa amerikanska rock och nya generationens Sverigepunk (Masshysteri).<br> <br>I mitten av 90-talet spelade Jussi, Antti och Sakke i samma replokal med sina respektive band och ett par år senare satte Jamppa ihop Abduktio i Ylöjärvi. Och nu har vi kommit till den punkt att alla fyra för första gången spelar tillsammans!</p><p><b>Malms evenemangssommar</b><br>Nedre Malms park<br> <br>Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar. Det utlovas fantastiska spelningar, allsång, cirkuskonst, karnevalsstämning och mångahanda verkstäder.<br> <br>Välkommen att titta, prova och inspireras!<br> <br>Inträdet till evenemangen i parken är fritt.</p><p><b>Här kan du se hela programmet:</b></p><p>https://www.malmitalo.fi/sv/evenemangen/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "en": "<p>After seeing a lot of roads and petrol stations, the four of them are finally in the same band!</p><p>Suosikki concocts a unique blend from the music of Bob Mould’s groups, the American alternative rock of The Jesus Lizard and the new wave of Swedish punk (Masshysteri).<br> <br>In the mid-90s, Jussi, Antti and Sakke were playing at the same rehearsal facility and, a couple of years later, Jamppa established Abduktio in Ylöjärvi. Now the four men are playing in the band for the first time ever!</p><p><b>Malmi Summer of Events</b><br>Ala-Malmin puisto park<br> <br>Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events! The programme will include a variety of activities for people of all ages: amazing live music, sing-alongs, a carnival atmosphere and a wealth of workshops.<br> <br>Come by and experience the excitement!<br> <br>Free admission to all park events.</p><p><b>You can find the programme here:</b></p><p>https://www.malmitalo.fi/en/events/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>" }, "name": { "fi": "Suosikki – Malmin tapahtumakesä", "sv": "Suosikki – Malms evenemangssommar", "en": "Suosikki – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59802/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59801", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4083, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:18.693634Z", "last_modified_time": "2023-09-07T14:20:18.693665Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730193.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4083/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:18.371882Z", "last_modified_time": "2023-10-24T20:13:53.790363Z", "date_published": null, "start_time": "2023-08-25T16: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": "Terhi Kokkonen, Joel Melasniemi ja Antti Lehtinen tunnelmoivat elokuussa Ala-Malmin puistossa.", "sv": "Terhi Kokkonen, Joel Melasniemi och Antti Lehtinen på en stämningsfull konsert i Nedre Malms park.", "en": "Terhi Kokkonen, Joel Melasniemi and Antti Lehtinen will play some atmospheric music at Ala-Malmin puisto park in August." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1EE8D308092BAADF0316C3ABA4279A31/Scandinavian_Music_Group_Trio", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1EE8D308092BAADF0316C3ABA4279A31/Scandinavian_Music_Group_Trio_", "en": "http://www.malmitalo.fi/en/events/event/1EE8D308092BAADF0316C3ABA4279A31/Scandinavian_Music_Group_Trio_" }, "description": { "fi": "<p>Terhi Kokkonen, Joel Melasniemi ja Antti Lehtinen tunnelmoivat elokuussa Ala-Malmin puistossa.</p><p>Syksyllä 2021 Scandinavian Music Groupin alkuperäisjäsenet <b>Terhi Kokkonen</b>, <b>Joel Melasniemi</b> ja <b>Antti Lehtinen</b> esittivät Helsingissä <i>Superwood</i>-festivaalilla tulevan albuminsa kappaleita harvinaisella kolmen hengen kokoonpanolla.</p><p>Esiintymisestä jäi itämään haave tehdä vastaavia keikkoja enemmänkin ja keväällä 2023 Kokkonen, Melasniemi ja Lehtinen suuntasivat ensimmäistä kertaa erityiselle trio-kiertueelle. Keikat olivat lähes järjestään loppuunmyytyjä.</p><p>Scandinavian Music Group Trio nähdään elokuussa 2023 myös Ala-Malmin puistossa. Luvassa on tunnelmallinen keikka, jossa kuullaan <i>Ikuinen ystävä</i> -levyn laulujen lisäksi vanhempaa materiaalia varta vasten triolle sovitettuina versioina.<br> <br>Terhi Kokkonen – sanoitukset ja laulu<br>Joel Melasniemi – sävellykset, sovitukset ja kitara <br>Antti Lehtinen – syntetisaattorit, samplet, luupit ja sovitukset<br> <br>Mäksä Mäkinen – valot<br>Jukka Nykänen – miksaus<br> <br>Vapaa pääsy</p><p><b>Malmin tapahtumakesä 9.–17.6. ja 17.–26.8.</b><br>Ala-Malmin puisto</p><p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille. Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Tutustu Malmin tapahtumakesän koko ohjelmaan täällä:</b></p><p>https://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "sv": "<p>Terhi Kokkonen, Joel Melasniemi och Antti Lehtinen på en stämningsfull konsert i Nedre Malms park.</p><p>Hösten 2021 framförde de ursprungliga medlemmarna i <i>Scandinavian Music Group</i>, <b>Terhi Kokkonen</b>, <b>Joel Melasniemi</b> och <b>Antti Lehtinen</b>, låtar från sitt kommande album på festivalen Superwood i Helsingfors med en sällsynt sammansättning av tre personer.</p><p>Uppträdandet väckte en dröm om att göra fler liknande spelningar och våren 2023 styrde Kokkonen, Melasniemi och Lehtinen ut på sin första speciella turné som trio.</p><p><b>Malms evenemangssommar</b><br>Nedre Malms park<br> <br>Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar. Det utlovas fantastiska spelningar, allsång, cirkuskonst, karnevalsstämning och mångahanda verkstäder.<br> <br>Välkommen att titta, prova och inspireras!<br> <br>Inträdet till evenemangen i parken är fritt.</p><p><b>Här kan du se hela programmet:</b></p><p>https://www.malmitalo.fi/sv/evenemangen/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "en": "<p>Terhi Kokkonen, Joel Melasniemi and Antti Lehtinen will play some atmospheric music at Ala-Malmin puisto park in August.</p><p>In the autumn of 2021, the original members of <i>Scandinavian Music Group</i> <b>Terhi Kokkonen</b>, <b>Joel Melasniemi</b> and <b>Antti Lehtinen</b> performed songs off their upcoming album as a three-piece ensemble at the Superwood festival.</p><p>This sparked the desire to play more similar gigs, which is why Kokkonen, Melasniemi and Lehtinen started their first tour as a trio in spring 2023.</p><p><b>Malmi Summer of Events</b><br>Ala-Malmin puisto park<br> <br>Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events! The programme will include a variety of activities for people of all ages: amazing live music, sing-alongs, a carnival atmosphere and a wealth of workshops.<br> <br>Come by and experience the excitement!<br> <br>Free admission to all park events.</p><p><b>You can find the programme here:</b></p><p>https://www.malmitalo.fi/en/events/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>" }, "name": { "fi": "Scandinavian Music Group Trio – Malmin tapahtumakesä", "sv": "Scandinavian Music Group Trio – Malms evenemangssommar", "en": "Scandinavian Music Group Trio – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59801/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }