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/?format=api&page=746&show_all=true
{ "meta": { "count": 33093, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=747&show_all=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=745&show_all=true" }, "data": [ { "id": "kulke:64374", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152077, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-12T13:14:37.739469Z", "last_modified_time": "2024-08-12T13:14:37.739488Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748895.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152077/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2024-08-12T13:14:37.700308Z", "last_modified_time": "2024-08-29T05:13:26.220698Z", "date_published": null, "start_time": "2024-09-19T14: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E2715EDDB35322DA9CC11A8969FD8FC8/Kipina_x_Stoa" }, "provider": null, "description": { "fi": "<p>Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa syksyllä 2024!</p><p>Lavalle nousevat mm. Helsinki Unity Musicin artistit ja muut Kipinän toimijat.</p><p>Kipinä x Stoa -tapahtumien sisällöt ja aikataulut tarkentuvat myöhemmin.</p><p>Tsekkaa ajankohtaisin tieto Nuorten toimintatalo Kipinän Instagramissa @kipina_official sekä nettisivuilla https://nuorten.hel.fi/nuorisotalot/nuorten-toimintatalo-kipina-itakeskus/</p>" }, "short_description": { "fi": "Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa syksyllä 2024!" }, "location_extra_info": null, "name": { "fi": "Kipinä x Stoa" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64374/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61738", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/3558548", "sv": "https://www.lippu.fi/eventseries/3558548", "en": "https://www.lippu.fi/eventseries/3558548" }, "price": { "fi": "48,50/52 €", "sv": "48,50/52 €", "en": "48,50/52 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6749, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-20T13:14:36.540159Z", "last_modified_time": "2024-02-06T13:23:44.306661Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742583.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6749/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-20T13:14:36.490244Z", "last_modified_time": "2024-08-29T05:13:26.113879Z", "date_published": null, "start_time": "2024-09-18T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/DFF14E9FE836F435B0A1E92D8F77DCE9/NITS_NIT50", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/DFF14E9FE836F435B0A1E92D8F77DCE9/NITS_NIT50", "en": "http://www.savoyteatteri.fi/en/events/event/DFF14E9FE836F435B0A1E92D8F77DCE9/NITS_NIT50" }, "provider": { "fi": "Rockadillo Production Oy", "sv": "Rockadillo Production Oy", "en": "Rockadillo Production Oy" }, "description": { "fi": "<p>Rakastettu hollantilaisyhtye NITS tulee 50-vuotisjuhlakiertueellaan Helsinkiin</p><p>Vuonna 1974 perustettu hollantilaisyhtye NITS tekee 50-vuotisjuhlansa kunniaksi kiertueen NITS – NIT50. Se alkaa keväällä 2024 Hollannissa, Belgiassa, Ranskassa ja Sveitsissä ja saapuu Suomeen syyskuussa.</p><p>Rakastettu hollantilaisyhtye NITS nähdään Savoy-teatterissa jälleen legendaarisella kokoonpanollaan Henk Hofstede (laulu, kitara), Robert Jan Stips (koskettimet, laulu) ja Rob Kloet (rummut, lyömäsoittimet). Mukana ovat tietysti myös lähes yhtä legendaariset ääni- ja valosuunnittelijat Paul ja Tom Telman.</p><p>NITS julkaisee tammikuussa minialbumin Tree House Fire, jonka kuusi erittäin henkilökohtaista laulua käsittelevät toukokuussa 2022 tulipalossa tuhoutunutta yhtyeen studiona, harjoitustilana ja varastona toiminutta taloa Amsterdamissa.</p><p>Konsertin kesto n. 2 h 30 min. sis. väliajan.</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "sv": "<p>Det älskade holländska bandet NITS besöker Helsingfors under sin 50-årsjubileumsturné</p><p>Det holländska bandet NITS grundades år 1974 och ger turnén NITS – NIT50 för att fira sitt 50-årsjubileum. Turnén inleds våren 2024 i Holland, Belgien, Frankrike och Schweiz, och anländer till Finland i september.</p><p>Det älskade holländska bandet NITS ses återigen på Savoy-teatern med den legendariska ensemblen Henk Hofstede (sång, gitarr), Robert Jan Stips (keyboard, sång) och Rob Kloet (trummor, slagverk). Med finns naturligtvis även de nästan lika legendariska ljud- och ljusdesignerna Paul och Tom Telman.</p><p>I januari släpper NITS minialbumet Tree House Fire med sex mycket personliga låtar om bandets studio, repetitionsutrymme och lager i Amsterdam, som förstördes i en brand i maj 2022.</p><p>Konsertens längd ca 2 h 30 min. inklusive paus.</p><p>Parkett F18 servering av alkoholdrycker. Balkong T, ingen servering av alkoholdrycker.</p>", "en": "<p>The beloved Dutch band NITS is coming to Helsinki on their 50th anniversary tour.</p><p>The Dutch band NITS, founded in 1974, is celebrating its 50th anniversary with the NITS – NIT50 tour. The tour starts in spring 2024 in the Netherlands, Belgium, France and Switzerland and will arrive in Finland in September.</p><p>The beloved Dutch band NITS will perform again at the Savoy Theatre with its legendary line-up of Henk Hofstede (vocals, guitar), Robert Jan Stips (keyboard, vocals) and Rob Kloet (drums, percussion). Of course, they will be joined by the almost equally legendary sound and lighting designers Paul and Tom Telman.</p><p>In January, NITS will release a mini-album, Tree House Fire, featuring six highly personal songs about the house that had been the band’s studio, rehearsal space, and warehouse in Amsterdam that was destroyed in a fire in May 2022.</p><p>Concert duration: approx. 2 h 30 min, including an intermission.</p><p>Stalls 18+, a licensed (alcohol-serving) area. The balcony is a non-licensed area without an age limit.</p>" }, "short_description": { "fi": "Rakastettu hollantilaisyhtye NITS tulee 50-vuotisjuhlakiertueellaan Helsinkiin", "sv": "Det älskade holländska bandet NITS besöker Helsingfors under sin 50-årsjubileumsturné", "en": "The beloved Dutch band NITS is coming to Helsinki on their 50th anniversary tour." }, "location_extra_info": null, "name": { "fi": "NITS – NIT50", "sv": "NITS – NIT50", "en": "NITS – NIT50" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61738/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64208", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/pikku-papun-orkesteri/pikku-papun-orkesteri-umo-helsinki-jazz-orchestra-3677411/", "sv": "https://www.lippu.fi/artist/pikku-papun-orkesteri/pikku-papun-orkesteri-umo-helsinki-jazz-orchestra-3677411/", "en": "https://www.lippu.fi/artist/pikku-papun-orkesteri/pikku-papun-orkesteri-umo-helsinki-jazz-orchestra-3677411/" }, "price": { "fi": "15 € / 7 €", "sv": "15 € / 7 €", "en": "15 € / 7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151769, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T11:13:05.853345Z", "last_modified_time": "2024-07-22T11:13:05.853361Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755816.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151769/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-07-22T11:13:05.791513Z", "last_modified_time": "2024-08-29T05:13:26.062700Z", "date_published": null, "start_time": "2024-09-18T15:00:00Z", "end_time": "2024-09-18T15:40: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B0D143DCD1708B01E469AD073A0C1AE7/UMO_Pikku_Papun_orkesteri", "sv": "http://www.vuotalo.fi/sv/evenemang/event/B0D143DCD1708B01E469AD073A0C1AE7/UMO_Pikku_Papun_orkesteri", "en": "http://www.vuotalo.fi/en/events/event/B0D143DCD1708B01E469AD073A0C1AE7/UMO_Pikku_Papun_orkesteri" }, "provider": null, "description": { "fi": "<p>Kun yhdistetään Pikku Papun Orkesteri ja UMO Helsinki Jazz Orchestra, saadaan iiiiiiiso koko perheen lastenmusiikkikonsertti Vuotalolla keskiviikkona 18. syyskuuta!</p><p>Pikku Papun supersuositut hitit kuullaan nyt ihka ensimmäistä kertaa sovitettuna isolle, yli 20-henkiselle kokoonpanolle! Sovituksista vastaa mm. Värttinästä tuttu Mikko Hassinen, joka toimii myös konsertin kapellimestarina.</p><p>Konsertissa perheen pienimmätkin pääsevät mukaan lauluihin ja leikkeihin. Myös riemunkiljahtelu ja tanssiminen on sallittua – jopa toivottavaa!</p><p><b>Pikku Papun Orkesteri:</b><br>Heli Kajo, laulu<br>Maiju Kopra, laulu, ksylofoni<br>Juho Puronaho, kitara, viulu, mandola<br>Tarmo Anttila, kontrabasso</p><p><b>UMO Helsinki Jazz Orchestra:</b><br>Mikko Hassinen, kapellimestari ja sovitukset</p><p>Konsertin kesto n. 40 min</p>", "sv": "<p>Kombinera Pikku Papun Orkesteri och UMO Helsinki Jazz Orchestra och du får du en fantastisk barnmusikkonsert för hela familjen på Nordhuset onsdagen den 18 september!</p><p>Nu får vi för första gången höra Pikku Papus superpopulära hittar arrangerade för en stor ensemble med över 20 musiker! För arrangemangen svarar Mikko Hassinen, bland annat känd från Värttinä. Han fungerar också som kapellmästare för konserten.</p><p>På konserten får även familjens minsta vara med i sångerna och lekarna. Även glädjetjut och dans är tillåtna – till och med önskvärda!</p><p><b>Pikku Papun Orkesteri:</b><br>Heli Kajo, sång<br>Maiju Kopra, sång, xylofon<br>Juho Puronaho, gitarr, violin, mandola<br>Tarmo Anttila, kontrabas</p><p><b>UMO Helsinki Jazz Orchestra:</b><br>Mikko Hassinen, kapellmästare och arrangemang</p>", "en": "<p>When you combine Pikku Papun Orkesteri and UMO Helsinki Jazz Orchestra, we get a big children's music concert for the whole family at Vuotalo on Wednesday, 18 September!</p><p>This is the first time Pikku Papu’s super-popular hits have been arranged for a large, 20-man band! Arrangements are the handiwork of Mikko Hassinen, known for Värttinä, who also acts as the conductor of the concert, among others.</p><p>This concert is one where even the little tykes will get to join the songs and games. Shouts for joy and dancing is allowed – even encouraged!</p><p><b>Pikku Papun Orkesteri:</b><br>Heli Kajo, vocals<br>Maiju Kopra, vocals, xylophone<br>Juho Puronaho, guitar, violin, mandola<br>Tarmo Anttila, double bass</p><p><b>UMO Helsinki Jazz Orchestra:</b><br>Mikko Hassinen, conductor and arrangements</p>" }, "short_description": { "fi": "Kun yhdistetään Pikku Papun Orkesteri ja UMO Helsinki Jazz Orchestra, saadaan iiiiiiiso koko perheen lastenmusiikkikonsertti Vuotalolla keskiviikkona 18. syyskuuta!", "sv": "Kombinera Pikku Papun Orkesteri och UMO Helsinki Jazz Orchestra och du får du en fantastisk barnmusikkonsert för hela familjen på Nordhuset onsdagen den 18 september!", "en": "When you combine Pikku Papun Orkesteri and UMO Helsinki Jazz Orchestra, we get a big children's music concert for the whole family at Vuotalo on Wednesday, 18 September!" }, "location_extra_info": null, "name": { "fi": "UMO & Pikku Papun orkesteri", "sv": "UMO & Pikku Papun orkesteri", "en": "UMO & Pikku Papun orkesteri" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64208/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64192", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151699, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-12T13:13:32.457492Z", "last_modified_time": "2024-07-12T13:13:32.457507Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751720.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151699/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-12T13:13:32.441774Z", "last_modified_time": "2024-08-29T05:13:26.010511Z", "date_published": null, "start_time": "2024-09-18T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7F37E7F6ED470F4FE7B981AAE6461B57/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/7F37E7F6ED470F4FE7B981AAE6461B57/Stoas_kor_", "en": "http://www.stoa.fi/en/events/event/7F37E7F6ED470F4FE7B981AAE6461B57/Stoa_Choir_" }, "provider": null, "description": { "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea!</p><p>Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18–19.30.</p><p>Lämpimästi tervetuloa!</p><p>Syksyn kuorokerrat: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Lisätiedot ja ilmoittautuminen: sanna.nuutinen@hel.fi</p>", "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel.</p><p>Varmt välkommen!</p><p>På onsdagar kl. 18–19.30.</p><p>Datum: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>", "en": "<p>Would you like to learn Finnish by singing in Finnish? If so, please join us!</p><p>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.</p><p>Rehearsals on Wednesdays 6–7.30pm at Stoa music hall.</p><p>Spring season: <br>Sept 11.9.<br>Sept 18.9.<br>Sept 25.9.<br>Oct 2.10.<br>Oct 9.10.<br>Oct 30.10.<br>Nov 6.11.<br>Nov 13.11.<br>Nov 27.11.</p><p>More info and registration: sanna.nuutinen@hel.fi</p>" }, "short_description": { "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?", "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?", "en": "Would you like to learn Finnish by singing in Finnish? If so, please join us!" }, "location_extra_info": null, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64192/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63676", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151638, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T14:13:20.055696Z", "last_modified_time": "2024-07-03T14:13:20.055711Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751991.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151638/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-03T14:13:20.037670Z", "last_modified_time": "2024-08-29T05:13:25.839193Z", "date_published": null, "start_time": "2024-09-18T10:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5A0C8C662D4BD50F9E75D0A32228F45E/Hyvan_tuulen_hetket", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5A0C8C662D4BD50F9E75D0A32228F45E/Stunder_med_god_stamning", "en": "http://www.kanneltalo.fi/en/events/event/5A0C8C662D4BD50F9E75D0A32228F45E/Moments_of_happiness" }, "provider": null, "description": { "fi": "<p>Muusikko Mari Kätkä laulattaa ja kuvittaja Sari Airola kuvittaa rakastetuimpia yhteislauluja tarinallisiksi kuviksi.</p><p>Rakkaimpien yhteislaulujen soidessa kaikki saavat laulamisen lomassa piirtää omia kuviaan tai kirjoittaa vaikka omia musiikkimuistojaan. Kokonaisuudesta syntyy monitaiteellinen elämys, johon saa osallistua laulaen, piirtäen, kuunnellen ja katsellen. Hetket rakennetaan joka kerta eri teeman ympärille lauluvalikoiman ja piirrosten aiheiden avulla.</p><p>Esitystä voi seurata maksutta kulttuuripalvelu Lämpiön kanavalla https://lampio.fi/</p><p>Tallenne esityksestä on katsottavissa kaksi viikkoa esityksen jälkeen.</p><p><b>Syyskauden lauluteemat:</b></p><p>18.9. Kerro se kukkasin!<br>16.10. Se hetki!<br>13.11. Juhlatunnelmaa<br>11.12. Meidän joulu</p><p>Kesto n. 30 min</p><p>Vapaa pääsy</p>", "sv": "<p>Musikern Mari Kätkä lockar till sång medan illustratören Sari Airola gör bildberättelser av våra mest älskade allsångslåtar.</p><p>Medan de mest älskade allsångslåtarna spelas kan även deltagarna rita sina egna bilder eller kanske skriva ner sina egna musikminnen. Av helheten uppstår en mångkonstnärlig upplevelse som man kan delta i genom att sjunga, rita eller lyssna och titta. Med hjälp av sångurvalet och bilderna byggs stunderna varje gång upp runt ett visst tema.</p><p>Du kan följa uppträdandet kostnadsfritt via kulturtjänsten Lämpiös kanal https://lampio.fi/ och en inspelning av uppträdandet finns att se i två veckor därefter.</p>", "en": "<p>Musician Mari Kätkä leads the most beloved sing-along songs while illustrator Sari Airola illustrates them into narrative images.</p><p>While the most beloved sing-along songs are playing, even the singers can draw or write down their own pictures and musical memories. The performance creates a multi-artistic experience which you can take part in by singing, drawing, or listening and watching. Each moment is built around a different theme with the help of a selection of songs and drawing themes.</p><p>The performance can be followed free of charge on cultural service Lämpiö’s channel at https://lampio.fi/, and a recording of the performance will be available two weeks after the performance.</p>" }, "short_description": { "fi": "Muusikko Mari Kätkä laulattaa ja kuvittaja Sari Airola kuvittaa rakastetuimpia yhteislauluja tarinallisiksi kuviksi.", "sv": "Musikern Mari Kätkä lockar till sång medan illustratören Sari Airola gör bildberättelser av våra mest älskade allsångslåtar.", "en": "Musician Mari Kätkä leads the most beloved sing-along songs while illustrator Sari Airola illustrates them into narrative images." }, "location_extra_info": null, "name": { "fi": "Hyvän tuulen hetket – iltapäiväohjelmaa ikäihmisille", "sv": "Stunder med god stämning", "en": "Moments of happiness" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63676/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64190", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/carola/", "sv": "https://www.lippu.fi/artist/carola/", "en": "https://www.lippu.fi/artist/carola/" }, "price": { "fi": "10 €", "sv": "10 €", "en": "10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151686, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-10T14:13:04.324284Z", "last_modified_time": "2024-07-10T14:13:04.324298Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750042.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151686/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-10T14:13:04.289241Z", "last_modified_time": "2024-08-29T05:13:25.712410Z", "date_published": null, "start_time": "2024-09-17T11: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/49C7837B1346D860D654BA7A5164B634/CAROLA_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/49C7837B1346D860D654BA7A5164B634/CAROLA_", "en": "http://www.vuotalo.fi/en/events/event/49C7837B1346D860D654BA7A5164B634/CAROLA_" }, "provider": null, "description": { "fi": "<p>CAROLA! – Tribuutti Carolan musiikille on keväällä 2013 perustettu helsinkiläisistä ammattimuusikoista koottu yhtye.</p><p>Ohjelmisto koostuu Carola Standertskjöldin rakastetuimmista levytyksistä ja tuntemattomammista helmistä. Kokoonpanon jäseniä yhdistää rakkaus Carolan ja muiden hänen aikalaistensa musiikkiin, mikä välittyy esityksestä.</p><p>CAROLA!:n muusikoita ovat työllistäneet mm. Danny, Agents, Marion Rung, Fredi, Jiri Nikkinen,<br>Jani Jalkanen, Hanna Pakarinen, ja Mariko. Tervetuloa nostalgiselle matkalle laaja-alaisen<br>tulkitsijan tuotantoon!</p><p>Carola Christina Standertskjöld-Liemola, (o.s. Standertskjöld, 23. maaliskuuta 1941 Helsinki – 12. marraskuuta 1997 Kirkkonummi) oli 1960-luvun suosituimpia suomalaisia laulajia. Hän esitti jazzahtavaa iskelmämusiikkia, jossa oli usein myös blues- ja soul-vaikutteita. Hänen suosituimpia kappaleitaan olivat mm. Rakkauden jälkeen, Penkki, puu ja puistotie sekä Kielletyt leikit.</p><p><b>Jäsenet:</b><br>Katri Silolahti, laulu<br>Tuukka Vainiola, kitara<br>Jani Jalkanen, basso<br>Janne Levy, koskettimet<br>Juho Hurskainen, saksofoni<br>Jarkko Rantanen, rummut</p>", "sv": "<p>CAROLA! – Hyllningen till Carolas musik grundades våren 2013 av en ensemble av professionella musiker.</p><p>Programmet består av Carola Standertskjölds mest älskade inspelningar och mindre kända pärlor. Ensemblens medlemmar delar en kärlek till Carolas och hennes samtida musik, vilket förmedlas i framförandet.</p><p>Musikerna i CAROLA! har sysselsatts av bland annat Danny, Agents, Marion Rung, Fredi, Jiri Nikkinen,<br>Jani Jalkanen, Hanna Pakarinen och Mariko. Välkommen på en nostalgisk resa genom den vidsträckta<br>tolkarens produktion!</p><p>Carola Christina Standertskjöld-Liemola (född Standertskjöld, 23 mars 1941 i Helsingfors – 12 november 1997 i Kyrkslätt) var en av 1960-talets populäraste finländska sångerskor. Hon framförde jazzig schlagermusik, ofta med blues- och soulinfluenser. Bland hennes populäraste låtar räknas Rakkauden jälkeen, Penkki, puu ja puistotie och Kielletyt leikit.</p><p><b>Medlemmar:</b><br>Katri Silolahti, sång<br>Tuukka Vainiola, gitarr<br>Jani Jalkanen, bas<br>Janne Levy, keyboard<br>Juho Hurskainen, saxofon<br>Jarkko Rantanen, trummor</p>", "en": "<p>CAROLA! – A tribute to Carola's music is a band of professional musicians, established in spring 2013 by Helsinki residents.</p><p>The programme consists of Carola Standertskjöld's most beloved songs and lesser known gems. The members of the ensemble are united by a love for Carola’s music and her contemporaries, which is conveyed in the performance.</p><p>CAROLA!'s musicians have been employed by Danny, Agents, Marion Rung, Fredi, Jiri Nikkinen,<br>Jani Jalkanen, Hanna Pakarinen, and Mariko. Join this nostalgic journey to the wide-ranged<br>vocalist's material!</p><p>Carola Christina Standertskjöld-Liemola, (née Standertskjöld, 23 March 1941 Helsinki – 12 November 1997 Kirkkonummi) was one of the most popular Finnish singers of the 1960s. She performed jazzy pop music, often with blues and soul influences. Her most popular songs include Rakkauden jälkeen, Penkki, puu ja puistotie, as well as Kielletyt leikit.</p><p><b>Members:</b><br>Katri Silolahti, vocals<br>Tuukka Vainiola, guitar<br>Jani Jalkanen, bass<br>Janne Levy, keyboard<br>Juho Hurskainen, saxophone<br>Jarkko Rantanen, drums</p>" }, "short_description": { "fi": "CAROLA! – Tribuutti Carolan musiikille on keväällä 2013 perustettu helsinkiläisistä ammattimuusikoista koottu yhtye.", "sv": "CAROLA! – Hyllningen till Carolas musik grundades våren 2013 av en ensemble av professionella musiker.", "en": "CAROLA! – A tribute to Carola's music is a band of professional musicians, established in spring 2013 by Helsinki residents." }, "location_extra_info": null, "name": { "fi": "CAROLA! – Tiistaimatineakonsertti", "sv": "CAROLA! – Tisdagsmatinékonsert", "en": "CAROLA! – Tuesday Matinee" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64190/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63483", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151622, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T13:13:22.404108Z", "last_modified_time": "2024-07-03T13:13:22.404120Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751051.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151622/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2024-07-03T13:13:22.389777Z", "last_modified_time": "2024-08-29T05:13:25.659238Z", "date_published": null, "start_time": "2024-09-16T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FC349EC7559A3A11EEFBDE2EF197F67D/Nyt_lauletaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FC349EC7559A3A11EEFBDE2EF197F67D/Nu_sjunger_vi_", "en": "http://www.kanneltalo.fi/en/events/event/FC349EC7559A3A11EEFBDE2EF197F67D/Let_us_sing_" }, "provider": null, "description": { "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko <b>Mari Kätkä.</b></p><p>Kesto: 1 t<br>Vapaa pääsy</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. <b>Mari Kätkä</b> leder allsången.</p><p>Längd: 1 timme</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by <b>Mari Kätkä.</b></p><p>Duration: 1 hour</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "short_description": { "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!", "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!", "en": "Nothing is more fun than singing – except for singing together!" }, "location_extra_info": null, "name": { "fi": "Nyt lauletaan! – Maksuttomat maanantait", "sv": "Nu sjunger vi! – Kostnadsfria måndagar", "en": "Let us sing! – Free Mondays" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63483/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63423", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151560, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T14:13:40.135212Z", "last_modified_time": "2024-06-27T14:13:40.135226Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749877.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151560/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T14:13:40.101961Z", "last_modified_time": "2024-08-29T05:13:25.499946Z", "date_published": null, "start_time": "2024-09-16T06:00:00Z", "end_time": "2024-09-16T06: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/94E8FD75C7C66942CA86642F2907C212/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/94E8FD75C7C66942CA86642F2907C212/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/94E8FD75C7C66942CA86642F2907C212/Musical_Art_Adventure" }, "provider": null, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 45 min <br>Ikäryhmä: 3–5-vuotiaat<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä noin 12 osallistujaa kerralla, 6 lasta ja 6 aikuista.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 30.9.2024 klo 9–9.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 14.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Konstäventyren ordnas två måndagar i månaden.<br>Sessionens längd är ca 45 min <br>Åldersgrupp: 3–5-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 6 barn och 6 vuxna.</p><p><b>Anmälningslänkar:</b><br>Mån 2 september, anmäl dig här: <u>https://link.webropol.com/ep/Musiikillinentaideseikkailu1</u><br>Mån 19 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/698DC8FF0E0DF334</u><br>Mån 30 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/391AFEC18D9C9840</u><br>Mån 14 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/0170408FEA72C33A</u><br>Mån 28 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/F00843A72BA8396A</u><br>Mån 11 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/D2F49BEB81810254</u><br>Mån 25 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE</u></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: <u>https://link.webropol.com/s/Taideseikkailunjono</u></p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 45 min <br>Age group: Ages 3–5<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p><b>Mon 2 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">Register here</u></a></p><p><b>Mon 16 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">Register here </u></a></p><p><b>Mon 30 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">Register here</u></a></p><p><b>Mon 14 October at 9 am to 9:45 am</b> <br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">Register here</u></a></p><p><b>Mon 28 October at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">Register here</u></a></p><p><b>Mon 11 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">Register here</u></a></p><p><b>Mon 25 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">Register here</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>" }, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "location_extra_info": null, "name": { "fi": "Musiikillinen taideseikkailu – 3–5-vuotiaille", "sv": "Musikaliskt konstäventyr – för 3–5-åringar", "en": "Musical Art Adventure – for 3–5-year-olds" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63423/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63518", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/onnin-orkesteri/", "sv": "https://www.lippu.fi/artist/onnin-orkesteri/", "en": "https://www.lippu.fi/artist/onnin-orkesteri/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151672, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-05T15:13:23.935943Z", "last_modified_time": "2024-07-05T15:13:23.935958Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751174.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151672/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-07-05T15:13:23.920255Z", "last_modified_time": "2024-08-29T05:13:25.441498Z", "date_published": null, "start_time": "2024-09-15T11: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/892A7EC0A4497344415E66285CCC969D/Onni-orkesterin_lastenkonsertti", "sv": "http://www.annantalo.fi/sv/evenemang/event/892A7EC0A4497344415E66285CCC969D/Barnkonsert_med_Onnis_orkester", "en": "http://www.annantalo.fi/en/events/event/892A7EC0A4497344415E66285CCC969D/Onni_Orchestra_Children_s_Concert" }, "provider": null, "description": { "fi": "<p>Kuuletko, kuinka laivankansi narisee? Oletko nähnyt yksisarvisen? Hyppää mukaan leikkiin yhdessä Onni Orkesterin kanssa!</p><p>Konsertissa kuullaan Sibelius-Akatemian musiikkikasvattajien säveltämiä, Sanna Pelliccionin Onni-kirjoista inspiroituneita kappaleita.</p><p>Lastenmusiikkiyhtye Onnin orkesteri on kahdeksan nuoren musiikin ammattilaisen muodostama yhtye, jonka ohjelmisto kiinnittyy Annantalolla esillä olevaan Sanna Pelliccionin näyttelyyn Onni on olla!</p><p>Kesto: 30 min<br>Ikäsuositus: kaikenikäisille</p><p>Liput: 6 € Lippu.fi</p>", "sv": "<p>Kan du höra hur fartygsdäcket knarrar? Har du sett en enhörning? Hoppa med i leken med Onnis orkester!</p><p>På konserten får vi höra låtar som komponerats av musikpedagoger vid Sibelius-Akademin, och som inspirerats av Sanna Pelliccionis Onni-böcker.</p><p>Barnmusikbandet Onnis orkester är en ensemble bestående av åtta unga musikproffs, vars repertoar är kopplad till Sanna Pelliccionis utställning Onni on olla! på Annegården.</p><p>Längd: 30 min.<br>Åldersrekommendation: alla åldrar</p><p>Biljetter: 6 € Lippu.fi</p>", "en": "<p>Can you hear the ship deck creaking? Have you ever seen a unicorn? Get involved with the Onni Orchestra!</p><p>The concert will feature compositions by Sibelius Academy music educators inspired by Sanna Pelliccioni's Onni books.</p><p>Children's music group Onni Orchestra is a group of eight young music professionals whose repertoire is linked to the Sanna Pelliccion exhibition at Annantalo!</p><p>Duration: 30 mins.<br>Recommended age: all ages</p><p>Tickets: €6 from Lippu.fi</p>" }, "short_description": { "fi": "Kuuletko, kuinka laivankansi narisee? Oletko nähnyt yksisarvisen? Hyppää mukaan leikkiin yhdessä Onni Orkesterin kanssa!", "sv": "Kan du höra hur fartygsdäcket knarrar? Har du sett en enhörning? Hoppa med i leken med Onnis orkester!", "en": "Can you hear the ship deck creaking? Have you ever seen a unicorn? Get involved with the Onni Orchestra!" }, "location_extra_info": null, "name": { "fi": "Onni-orkesterin lastenkonsertti", "sv": "Barnkonsert med Onnis orkester", "en": "Onni Orchestra Children's Concert" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63518/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63517", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/onnin-orkesteri/", "sv": "https://www.lippu.fi/artist/onnin-orkesteri/", "en": "https://www.lippu.fi/artist/onnin-orkesteri/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151671, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-05T15:13:23.836740Z", "last_modified_time": "2024-07-05T15:13:23.836761Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751173.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151671/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-07-05T15:13:23.817284Z", "last_modified_time": "2024-08-29T05:13:25.390001Z", "date_published": null, "start_time": "2024-09-15T09: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6DBFE296B5986E07EDBFB819B9E74FA6/Onni-orkesterin_lastenkonsertti", "sv": "http://www.annantalo.fi/sv/evenemang/event/6DBFE296B5986E07EDBFB819B9E74FA6/Barnkonsert_med_Onnis_orkester", "en": "http://www.annantalo.fi/en/events/event/6DBFE296B5986E07EDBFB819B9E74FA6/Onni_Orchestra_Children_s_Concert" }, "provider": null, "description": { "fi": "<p>Kuuletko, kuinka laivankansi narisee? Oletko nähnyt yksisarvisen? Hyppää mukaan leikkiin yhdessä Onni Orkesterin kanssa!</p><p>Konsertissa kuullaan Sibelius-Akatemian musiikkikasvattajien säveltämiä, Sanna Pelliccionin Onni-kirjoista inspiroituneita kappaleita.</p><p>Lastenmusiikkiyhtye Onnin orkesteri on kahdeksan nuoren musiikin ammattilaisen muodostama yhtye, jonka ohjelmisto kiinnittyy Annantalolla esillä olevaan Sanna Pelliccionin näyttelyyn Onni on olla!</p><p>Kesto: 30 min<br>Ikäsuositus: kaikenikäisille</p><p>Liput: 6 € Lippu.fi</p>", "sv": "<p>Kan du höra hur fartygsdäcket knarrar? Har du sett en enhörning? Hoppa med i leken med Onnis orkester!</p><p>På konserten får vi höra låtar som komponerats av musikpedagoger vid Sibelius-Akademin, och som inspirerats av Sanna Pelliccionis Onni-böcker.</p><p>Barnmusikbandet Onnis orkester är en ensemble bestående av åtta unga musikproffs, vars repertoar är kopplad till Sanna Pelliccionis utställning Onni on olla! på Annegården.</p><p>Längd: 30 min.<br>Åldersrekommendation: alla åldrar</p><p>Biljetter: 6 € Lippu.fi</p>", "en": "<p>Can you hear the ship deck creaking? Have you ever seen a unicorn? Get involved with the Onni Orchestra!</p><p>The concert will feature compositions by Sibelius Academy music educators inspired by Sanna Pelliccioni's Onni books.</p><p>Children's music group Onni Orchestra is a group of eight young music professionals whose repertoire is linked to the Sanna Pelliccion exhibition at Annantalo!</p><p>Duration: 30 mins.<br>Recommended age: all ages</p><p>Tickets: €6 from Lippu.fi</p>" }, "short_description": { "fi": "Kuuletko, kuinka laivankansi narisee? Oletko nähnyt yksisarvisen? Hyppää mukaan leikkiin yhdessä Onni Orkesterin kanssa!", "sv": "Kan du höra hur fartygsdäcket knarrar? Har du sett en enhörning? Hoppa med i leken med Onnis orkester!", "en": "Can you hear the ship deck creaking? Have you ever seen a unicorn? Get involved with the Onni Orchestra!" }, "location_extra_info": null, "name": { "fi": "Onni-orkesterin lastenkonsertti", "sv": "Barnkonsert med Onnis orkester", "en": "Onni Orchestra Children's Concert" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63517/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63492", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/ritni-raste-pieski-tyoeryhmae-girjai-3669138/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/ritni-raste-pieski-tyoeryhmae-girjai-3669138/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/ritni-raste-pieski-tyoeryhmae-girjai-3669138/" }, "price": { "fi": "15 € / 10 €", "sv": "15 € / 10 €", "en": "15 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151663, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-04T13:13:14.181791Z", "last_modified_time": "2024-07-04T13:13:14.181808Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751102.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151663/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-04T13:13:14.167054Z", "last_modified_time": "2024-08-29T05:13:25.330100Z", "date_published": null, "start_time": "2024-09-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/8D893A20A2C8949539D9E6B84905B44E/Girj_i", "sv": "http://www.caisa.fi/sv/evenemang/event/8D893A20A2C8949539D9E6B84905B44E/Girj_i", "en": "http://www.caisa.fi/en/events/event/8D893A20A2C8949539D9E6B84905B44E/Girj_i" }, "provider": null, "description": { "fi": "<p>Girjái on radikaali dekoloniaalinen queer utopia: yhteisöllinen esityksellinen kokoontuminen, joka järjestetään lávvussa.</p><p>Girjái sukeltaa maailmaan, jossa esivanhempien viisaudet johdattavat eteenpäin muodostaen yhteyden tähän hetkeen ja tulevaan. Teos koostuu joiuista, tanssista, tarinoista, musisoinnista, alter-egoista ja yhdessä unelmoinnista.</p><p>Girjái kutsuu mukaan unelmoimaan – teos on omistettu erityisesti sateenkaarisaamelaisille ja BIPOC-queereille kaikissa ajoissa; edeltäneille, nykyisille ja tuleville.</p><p>We are still here – and we are still queer.</p><p><b>Työryhmä:</b> <br>Ritni Ráste Pieski, Biret-Iŋgá Pieski, Pessi Jouste, Aju Jurvanen, Helmi Hagelin ja Kai Mikkel Balto</p><p>Tukemassa: Saami Council ja Koneen Säätiö</p><p>Kesto: noin 1–1,5 t, ei väliaikaa<br>Ikäsuositus: yli 12-vuotiaille<br>Kieli: pohjoissaame, suomi ja englanti</p><p>Liput: 15 € / 10 € osoitteesta Lippu.fi</p><p>Pressiliput ja lisätiedot: johanna.rissanen@hel.fi</p>", "sv": "<p>Girjái är en radikal dekolonial queerutopi: ett gemenskapligt framställningsmässigt möte som ordnas i en lávvu.</p><p>Girjái dyker in i en värld där förfädernas visdom visar vägen framåt och skapar en koppling mellan nuet och framtiden. Verket består av jojkar, dans, berättelser, musik, alter-egon och gemensamma drömmar.</p><p>Girjái bjuder dig med att drömma – verket är särskilt tillägnat regnbågssamer och BIPOC Queer-folk i alla tider; dåtid, nutid och framtid.</p><p>We are still here – and we are still queer.</p><p><b>Arbetsgrupp:</b> <br>Ritni Ráste Pieski, Biret-Iŋgá Pieski, Pessi Jouste, Aju Jurvanen, Helmi Hagelin och Kai Mikkel Balto</p><p>Stöd: Samerådet och Konestiftelsen</p><p>Längd: ca 1–1,5 timmar, ingen paus<br>Åldersrekommendation: över 12-åringar<br>Språk: nordsamiska, finska och engelska</p>", "en": "<p>Girjái is a radical de-colonial queer utopia: a communal performance gathering held in Lávvu.</p><p>Girjái dives into a world where the wisdom of the ancestors leads the way, connecting to the present and the future. The work consists of joik, dance, stories, music, alter-egos and dreaming together.</p><p>Girjái invites you to join the dream – the work is dedicated especially to LGBT+ Sámi and BIPOC people of all eras; past, present and future.</p><p>We are still here – and we are still queer.</p><p><b>Working group: </b><br>Ritni Ráste Pieski, Biret-Iŋgá Pieski, Pessi Jouste, Aju Jurvanen, Helmi Hagelin and Kai Mikkel Balto<br>Supporting: Saami Council and Kone Foundation</p><p>Duration: approx. 1-1.5 h, no intermission<br>Recommended age: 12+<br>Language: Northern Sami, Finnish and English</p>" }, "short_description": { "fi": "Girjái on radikaali dekoloniaalinen queer utopia: yhteisöllinen esityksellinen kokoontuminen, joka järjestetään lávvussa.", "sv": "Girjái är en radikal dekolonial queerutopi: ett gemenskapligt framställningsmässigt möte som ordnas i en lávvu.", "en": "Girjái is a radical de-colonial queer utopia: a communal performance gathering held in Lávvu." }, "location_extra_info": null, "name": { "fi": "Girjái – Ritni Ráste Pieski & työryhmä", "sv": "Girjái", "en": "Girjái" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63492/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64189", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/skidit-disko-3663677/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/skidit-disko-3663677/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/skidit-disko-3663677/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151685, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-10T13:13:14.541495Z", "last_modified_time": "2024-07-10T13:13:14.541510Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749498.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151685/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-07-10T13:13:14.527450Z", "last_modified_time": "2024-08-29T05:13:25.168860Z", "date_published": null, "start_time": "2024-09-14T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C7E4DFE495EED10E9A6A254D0FFC7C52/Skidit-disko", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C7E4DFE495EED10E9A6A254D0FFC7C52/Skidit-disco", "en": "http://www.vuotalo.fi/en/events/event/C7E4DFE495EED10E9A6A254D0FFC7C52/Skidit_disco" }, "provider": null, "description": { "fi": "<p>Skidit-disko tarjoaa musiikkimatkan lastensävelistä tämän päivän tinkimättömiin hitteihin.</p><p>Lämminhenkisessä diskossa yhdistyvät tanssittavat bängerit, hauskat tanssileikit ja mielikuvituksellinen meno. Hyvä meininki kerää tanssilattialle niin aikuiset kuin lapsetkin. Let’s BAILA!</p><p>Skidit-disko käynnisti lastendiskobuumin Suomessa tuodessaan meille maailmalla suosituksi tulleen konseptin koko perheen päivätansseista ykkösklubeilla. Diskon synnyinpaikka on Kuudes Linja ja Kaiku Helsingin Kalliossa, mutta diskoiltu on myös laivoilla, Musiikkitalolla, museossa, Flow Festivalin perhesunnuntaissa ja Oulussa, johon lennätettiin maailman pienin disko.</p><p>Kesto: 1 tunti<br>Kohderyhmä: Lapsiperheet<br>Paikka: Vuotalon Vuosalissa</p><p>Liput: 6 €</p>", "sv": "<p>Skiditdiscot bjuder på en musikresa från barnmelodier till dagens orubbliga hittar.</p><p>På det välkomnande discot kombineras roliga danslekar och fantasifulla aktiviteter med bangers som får en att vilja dansa. Den goda stämningen får både vuxna och barn att samlas på dansgolvet. Let’s PARTY!</p><p>Skiditdisco satte igång barndisco-boomen i Finland genom att introducera konceptet med dagsdans för hela familjen på toppklubbar som blivit populärt världen över. Discot föddes på klubbarna Kuudes Linja och Kaiku i Berghäll i Helsingfors, men discon har också hållits på båtar, i Musikhuset, på museum, på Flow-festivalens familjesöndag och i Uleåborg, dit världens minsta disco flögs in</p><p>Längd: 1 t</p>", "en": "<p>The Skidit Disco is a musical journey from children’s songs to the best modern hits.</p><p>In the warm-hearted disco, danceable bangers, fun dance games and imaginative atmosphere come together. The good vibes bring both adults and kids to the dance floor. Let’s BAILA!</p><p>Skidit Disco started the children’s disco boom in Finland by introducing the concept of daytime family dances at top clubs, which had become popular worldwide. The disco’s birthplace is Kuudes Linja and Kaiku in Helsinki’s Kallio district, but it has also been held on ships, at Musiikkitalo, in a museum, at the Flow Festival’s family Sunday and in Oulu, where the world’s smallest disco was flown in.</p><p>Duration: 1 hour</p>" }, "short_description": { "fi": "Skidit-disko tarjoaa musiikkimatkan lastensävelistä tämän päivän tinkimättömiin hitteihin.", "sv": "Skiditdiscot bjuder på en musikresa från barnmelodier till dagens orubbliga hittar.", "en": "The Skidit Disco is a musical journey from children’s songs to the best modern hits." }, "location_extra_info": null, "name": { "fi": "Skidit-disko – Back to school!", "sv": "Skidit-disco – Back to school!", "en": "Skidit disco – Back to school!" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64189/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64168", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151648, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-04T09:13:46.346347Z", "last_modified_time": "2024-07-04T09:13:46.346364Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753204.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151648/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-04T09:13:46.304128Z", "last_modified_time": "2024-08-29T05:13:25.066680Z", "date_published": null, "start_time": "2024-09-14T06:30:00Z", "end_time": "2024-09-14T13: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, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B6717E6F1AA596BC50AC4864D0566E2E/Kanteleen_paiva_Kanneltalossa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B6717E6F1AA596BC50AC4864D0566E2E/Kantelens_dag_pa_Gamlasgarden_", "en": "http://www.kanneltalo.fi/en/events/event/B6717E6F1AA596BC50AC4864D0566E2E/Kantele_Day_in_Kanneltalo_" }, "provider": null, "description": { "fi": "<p>Kanteleen päivää vietetään tänä vuonna kansainvälisen Matka Unescoon alkaa -juhlaseminaarin ja webinaarin merkeissä.</p><p>Lauantaina 14.9. Kanteleen päivänä Kanneltalossa järjestetään juhlaseminaarin lisäksi myös matalan kynnyksen pop-up-kanteletyöpajoja sekä joogaa kanteleen säestämänä.</p><p><b>Päivän ohjelma:</b></p><p>Klo 9.30–16 Matka Unescoon alkaa -seminaari <br>Klo 11–14 Työpajoja (aikataulu alla)<br>Klo 15–16 Kantelejoogatuokiot, Galleria, Arja Kastinen</p><p>Hybridimuodossa toteutettavan kansainvälisen juhlaseminaarin vieraana nähdään Baltian kanteleyhteisöjen edustajia. Seminaarin puhujiksi saapuvat muun muassa <b>Leena Marsio</b> Museovirastosta sekä <b>Matti Hakamäki</b> Kansanmusiikki-instituutista.</p><p>Työpajoihin ei ole ennakkoilmoittautumista, mutta osallistujien toivotaan ottavan omat kanteleet mukaan.</p><p>Kanteletaiteilija <b>Arja Kastisen</b> kantelejooga kutsuu rentoutumaan kansallissoittimen lumoavan äänen äärelle. Kantele on meidän kaikkien soitin! Kastinen on Sibelius-Akatemian kansanmusiikin osaston kasvattina perehtynyt usean vuosikymmenen ajan karjalaiseen kanteleimprovisaatioon, sen historiallisiin juuriin ja ilmentymiin nykymusiikissa. Tällä hetkellä Kastinen toimii Taideyliopiston vierailevana tutkijana hankkeessa ”Runolaulukulttuurin kantele ja luovuuden dialogi”.</p><p><b>5-kielisen kanteleen soittopajat</b><br>Tule rohkeasti tutustumaan 5-kielisen kanteleen soittamiseen. Ota mukaan oma 5-kielisesi tai lainaa opiston 5-kielistä kanteletta ja seikkailu alkaa!</p><p>Soittopajat järjestetään kirjaston Tempo-tilassa (1. krs) kanteleensoiton opettaja Anna Kattaisen (MuM) johdolla.</p><p>Klo 11–11.20 Kantelepaja A<br>Klo 11.30–11.50 Kantelepaja B<br>Klo 12.30–12.50 Kantelepaja C<br>Klo 13.00–13.30 Anna Kattainen esittelee pienkanteleita</p><p>Tapahtuman järjestävät yhteistyössä Kanteleliitto, Kanneltalo, Kannelmäen kirjasto ja Helsingin työväenopisto.</p>", "sv": "<p>I år firas Kantelens dag i samband med det internationella jubileumsseminariet och webbinariet Matka Unescoon alkaa (Resan till Unesco börjar).</p><p>Lördag 14.9. Utöver jubileumsseminariet ordnas under Kantelens dag även pop-up kantele-workshoppar och yoga till kantelemusik med låg tröskel på Gamlasgården.</p><p><b>Dagens program:</b></p><p>Kl. 9.30–16 Seminariet Matka Unescoon alkaa <br>Kl. 11–14 Workshoppar (schema nedan)<br>Kl. 15–16 Yogastunder till kantele, Galleriet, Arja Kastinen</p><p>Representanter för kantelegemenskaper från Baltikum gästar det internationella jubileumsseminariet som ordnas i hybridformat. Talarna på seminariet är bland annat Leena Marsio från Museiverket och <b>Matti Hakamäki</b> från Kansanmusiikki-instituutti.</p><p>Ingen förhandsanmälan till workshoppen behövs, men deltagarna uppmanas ta med sig en egen kantele.</p><p>Kantelekonstnären <b>Arja Kastinens</b> kanteleyoga inbjuder dig att slappna av till nationalinstrumentets förtrollande toner. Kantelen är allas vårt instrument! Kantinen har utexaminerats från folkmusikavdelningen vid Sibelius-Akademin, och har i flera decennier studerat karelsk kanteleimprovisation, dess historiska rötter och dess uttryck i samtidsmusiken. För närvarande är Kastinen gästforskare vid Konstuniversitetet i projektet \"Runolaulukulttuurin kantele ja luovuuden dialogi\" (Kantelen i runosångens kultur och kreativitetens dialog).</p><p><b>Spelworkshoppar för 5-strängad kantele</b><br>Kom och bekanta dig med den 5-strängade kantelen. Ta med din egen 5-strängade kantele eller låna en från institutet och kom med på äventyr!</p><p>Workshopparna ordnas i bibliotekets Tempo-utrymme (första våningen) och handleds av kanteleläraren Anna Kattainen (MuM).</p><p>Kl. 11–11.20 Kanteleworkshop A<br>Kl. 11.30–11.50 Kanteleworkshop B<br>Kl. 12.30–12.50 Kanteleworkshop C<br>Kl. 13.00–13.30 Anna Kattainen presenterar små kanteler</p><p>Evenemanget ordnas i samarbete med Kanteleförbundet, Gamlasgården, Gamlas bibliotek och Helsingfors finska arbetarinstitut.</p>", "en": "<p>This year, Kantele Day will be celebrated with an international seminar and webinar, Road to UNESCO.</p><p>On Saturday, 14 September, Kantele Day, in addition to a festive seminar, easy-to-join pop-up kantele workshops and kantele-accompanied yoga sessions are held in Kanneltalo.</p><p><b>Agenda of the day:</b></p><p>9:30 am – 4:00 pm Road to UNESCO seminar <br>11 am – 2 pm Workshops (schedule below)<br>3-4 pm Kantele Yoga Classes, Gallery, Arja Kastinen</p><p>Representatives of the Baltic kantele communities are welcomed as guests at the international celebration seminar in a hybrid format. Speakers at the seminar include Leena Marsio, from the National Board of Antiquities, and Matti Hakamäki from the Folk Music Institute.</p><p>Advance registration to the workshops is not required, but participants are encouraged to bring their own kantele.</p><p>Kantele artist Arja Kastinen’s kantele yoga invites you to relax with the enchanting sound of our national instrument. Kantele is our instrument, of all Finland! As an educator in the Sibelius Academy’s Folk Music Department, Kastinen has spent decades studying Karelian kantele improvisation, its historical roots and manifestations in contemporary music. Currently, Kastinen works as a visiting researcher at the University of the Arts Helsinki in the \"Kantele as a part of verse song culture and creative dialogue\" project.</p><p><b>5-string kantele workshops</b><br>Don’t be shy and get to know how a 5-string kantele is played. Bring your own 5-string or borrow the Education Centre's 5-string kantele, and your adventure can begin!</p><p>The workshops will be held in the library's Tempo room (1st floor) under the guidance of kantele teacher, MMus Anna Kattainen.</p><p>11–11:20 am Kantele workshop A<br>11:30–11:50 am Kantele workshop B<br>12:30–12:50 pm Kantele workshop C<br>1:00–1:30 pm Anna Kattainen presents smaller kanteles</p><p>The event is organised in cooperation with the Kantele Association, Cultural Centre Kanneltalo, Kannelmäki Library and the Helsinki Adult Education Centre.</p>" }, "short_description": { "fi": "Kanteleen päivää vietetään tänä vuonna kansainvälisen Matka Unescoon alkaa -juhlaseminaarin ja webinaarin merkeissä.", "sv": "I år firas Kantelens dag i samband med det internationella jubileumsseminariet och webbinariet Matka Unescoon alkaa (Resan till Unesco börjar).", "en": "This year, Kantele Day will be celebrated with an international seminar and webinar, Road to UNESCO." }, "location_extra_info": null, "name": { "fi": "Kanteleen päivä Kanneltalossa", "sv": "Kantelens dag på Gamlasgården", "en": "Kantele Day in Kanneltalo" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64168/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63491", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/ritni-raste-pieski-tyoeryhmae-girjai-3669138/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/ritni-raste-pieski-tyoeryhmae-girjai-3669138/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/ritni-raste-pieski-tyoeryhmae-girjai-3669138/" }, "price": { "fi": "15 € / 10 €", "sv": "15 € / 10 €", "en": "15 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151662, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-04T13:13:14.038246Z", "last_modified_time": "2024-07-04T13:13:14.038259Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751100.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151662/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-04T13:13:14.023645Z", "last_modified_time": "2024-08-29T05:13:24.951958Z", "date_published": null, "start_time": "2024-09-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/8A8D5DA84EAA315976F44A478D549CE3/Girj_i", "sv": "http://www.caisa.fi/sv/evenemang/event/8A8D5DA84EAA315976F44A478D549CE3/Girj_i", "en": "http://www.caisa.fi/en/events/event/8A8D5DA84EAA315976F44A478D549CE3/Girj_i" }, "provider": null, "description": { "fi": "<p>Girjái on radikaali dekoloniaalinen queer utopia: yhteisöllinen esityksellinen kokoontuminen, joka järjestetään lávvussa.</p><p>Girjái sukeltaa maailmaan, jossa esivanhempien viisaudet johdattavat eteenpäin muodostaen yhteyden tähän hetkeen ja tulevaan. Teos koostuu joiuista, tanssista, tarinoista, musisoinnista, alter-egoista ja yhdessä unelmoinnista.</p><p>Girjái kutsuu mukaan unelmoimaan – teos on omistettu erityisesti sateenkaarisaamelaisille ja BIPOC-queereille kaikissa ajoissa; edeltäneille, nykyisille ja tuleville.</p><p>We are still here – and we are still queer.</p><p><b>Työryhmä:</b> <br>Ritni Ráste Pieski, Biret-Iŋgá Pieski, Pessi Jouste, Aju Jurvanen, Helmi Hagelin ja Kai Mikkel Balto</p><p>Tukemassa: Saami Council ja Koneen Säätiö</p><p>Kesto: noin 1–1,5 t, ei väliaikaa<br>Ikäsuositus: yli 12-vuotiaille<br>Kieli: pohjoissaame, suomi ja englanti</p><p>Liput: 15 € / 10 € osoitteesta Lippu.fi</p><p>Pressiliput ja lisätiedot: johanna.rissanen@hel.fi</p>", "sv": "<p>Girjái är en radikal dekolonial queerutopi: ett gemenskapligt framställningsmässigt möte som ordnas i en lávvu.</p><p>Girjái dyker in i en värld där förfädernas visdom visar vägen framåt och skapar en koppling mellan nuet och framtiden. Verket består av jojkar, dans, berättelser, musik, alter-egon och gemensamma drömmar.</p><p>Girjái bjuder dig med att drömma – verket är särskilt tillägnat regnbågssamer och BIPOC Queer-folk i alla tider; dåtid, nutid och framtid.</p><p>We are still here – and we are still queer.</p><p><b>Arbetsgrupp:</b> <br>Ritni Ráste Pieski, Biret-Iŋgá Pieski, Pessi Jouste, Aju Jurvanen, Helmi Hagelin och Kai Mikkel Balto</p><p>Stöd: Samerådet och Konestiftelsen</p><p>Längd: ca 1–1,5 timmar, ingen paus<br>Åldersrekommendation: över 12-åringar<br>Språk: nordsamiska, finska och engelska</p>", "en": "<p>Girjái is a radical de-colonial queer utopia: a communal performance gathering held in Lávvu.</p><p>Girjái dives into a world where the wisdom of the ancestors leads the way, connecting to the present and the future. The work consists of joik, dance, stories, music, alter-egos and dreaming together.</p><p>Girjái invites you to join the dream – the work is dedicated especially to LGBT+ Sámi and BIPOC people of all eras; past, present and future.</p><p>We are still here – and we are still queer.</p><p><b>Working group: </b><br>Ritni Ráste Pieski, Biret-Iŋgá Pieski, Pessi Jouste, Aju Jurvanen, Helmi Hagelin and Kai Mikkel Balto<br>Supporting: Saami Council and Kone Foundation</p><p>Duration: approx. 1-1.5 h, no intermission<br>Recommended age: 12+<br>Language: Northern Sami, Finnish and English</p>" }, "short_description": { "fi": "Girjái on radikaali dekoloniaalinen queer utopia: yhteisöllinen esityksellinen kokoontuminen, joka järjestetään lávvussa.", "sv": "Girjái är en radikal dekolonial queerutopi: ett gemenskapligt framställningsmässigt möte som ordnas i en lávvu.", "en": "Girjái is a radical de-colonial queer utopia: a communal performance gathering held in Lávvu." }, "location_extra_info": null, "name": { "fi": "Girjái – Ritni Ráste Pieski & työryhmä", "sv": "Girjái", "en": "Girjái" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63491/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63749", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/ben-granfelt-live-malmitalo-18646180/", "sv": "https://www.lippu.fi/event/ben-granfelt-live-malmitalo-18646180/", "en": "https://www.lippu.fi/event/ben-granfelt-live-malmitalo-18646180/" }, "price": { "fi": "24,50 €", "sv": "24,50 €", "en": "24,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151711, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-12T14:13:31.572124Z", "last_modified_time": "2024-07-12T14:13:31.572136Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752461.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151711/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-12T14:13:31.554165Z", "last_modified_time": "2024-08-29T05:13:24.898473Z", "date_published": null, "start_time": "2024-09-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A6619F7E340CB8982842FE7F098BDE2D/Ben_Granfelt_LIVE", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A6619F7E340CB8982842FE7F098BDE2D/Ben_Granfelt_LIVE", "en": "http://www.malmitalo.fi/en/events/event/A6619F7E340CB8982842FE7F098BDE2D/Ben_Granfelt_LIVE" }, "provider": null, "description": { "fi": "<p>50 vuotta kitaranvarressa viihtynyt Ben Granfelt soittaa uutta ja vanhaa tuotantoa – edelleen yhtä innoissaan.</p><p>Ben Granfelt täytti viime vuonna 60 vuotta ja julkaisi kahdenkymmenen sololevynsä ”Gratitude”, joka oli kunnianosoitus legendaarisille kitaristeille Gary Moorelle, Jeff Beckille ja Robin Trowerille.</p><p>”Oli huikea keikkavuosi, yhteensä 99 keikkaa tuli tehtyä Suomessa ja Euroopassa”, Granfelt kertoo.</p><p>Tänä vuonna hän on soittanut kitaraa 50 vuotta! ”Eli olen joko helvetin vanha tai suhtkoht hyvä kitaristi, päätelkää itse.”</p><p>Granfelt kertoo tehneensä uusia biisejä, joita kuullaan myös keikkasetissä. ”Settilistaa on muutettu ja muokattu, ettei toisteta viime vuosien tuttua ja turvallista meininkiä”, Granfelt kertoo.</p><p>”Uusi studiolevy on tulossa 2025. Olen yhtä innoissani kuin ennenkin. Soittaminen on parasta elämässäni, ja bändi hyvässä vedossa, joka paranee joka keikalla. Triossa on niin paljon vapautta jammailla ja sitä tehdäänkin.”</p><p>Ben Granfelt – kitara, laulu <br>Masa Maijanen – basso, laulu <br>Jari Salminen – rummut, laulu<br>Jarmo Nikku – kitara</p><p>Kesto: 2 t, sis. 20 min väliajan<br>Liput: 24,50 €</p>", "sv": "<p>Efter 50 år vid gitarren spelar Ben Granfelt nytt och gammalt material – med lika stor entusiasm som förr.</p><p>I fjol fyllde Ben Granfelt 60 år och släppte då sitt tjugonde soloalbum \"Gratitude\", en hyllning till de legendariska gitarristerna Gary Moore, Jeff Beck och Robin Trower.</p><p>“Det var ett bra spelningsår, med totalt 99 spelningar i Finland och Europa”, berättar Granfelt.</p><p>I år har han spelat gitarr i 50 år! “Därmed är jag är antingen gammal som fan eller en relativt bra gitarrist, ni får avgöra själva.”</p><p>Granfelt berättar att han har skrivit nya låtar, som vi också får höra i livesetet. “Setlistan har ändrats och justerats för att undvika att upprepa det välkända och säkra från de senaste åren”, berättar Granfelt.</p><p>“Ett nytt studioalbum utkommer 2025. Jag är lika entusiastisk som förr. Att spela är det bästa i mitt liv och bandet är i bra form, det blir bättre för varje spelning. I en trio finns det så mycket frihet att jamma, och det är precis vad vi gör.\"</p><p>Ben Granfelt – gitarr, sång <br>Masa Maijanen – bas, sång <br>Jari Salminen – trummor, sång<br>Jarmo Nikku – gitarr</p>", "en": "<p>After 50 years on the guitar, Ben Granfelt plays new and old material – as excited as ever.</p><p>Ben Granfelt turned 60 last year and released his twenty solo album “Gratitude”, a tribute to legendary guitarists Gary Moore, Jeff Beck and Robin Trower.</p><p>\"It was a huge touring year, a total of 99 gigs in Finland and Europe,\" Granfelt says.</p><p>This year, he will have been playing guitar for 50 years! \"So either I'm fucking old or I'm a good pretty guitarist. You decide.”</p><p>Granfelt says that he has written new songs that are included in the set list. \"The set list has been changed and modified so that I don’t repeat the familiar and safe atmosphere of the last few years,\" Granfelt says.</p><p>“A new studio album is coming out in 2025. I'm as excited as ever. Playing is the best thing in my life, and the band is in good shape. Getting better with every gig, too. There is so much freedom in this trio to jam, and that's what they do.”</p><p>Ben Granfelt – guitar, vocals <br>Masa Maijanen – bass, vocals <br>Jari Salminen – drums, vocals<br>Jarmo Nikku – guitar</p>" }, "short_description": { "fi": "50 vuotta kitaranvarressa viihtynyt Ben Granfelt soittaa uutta ja vanhaa tuotantoa – edelleen yhtä innoissaan.", "sv": "Efter 50 år vid gitarren spelar Ben Granfelt nytt och gammalt material – med lika stor entusiasm som förr.", "en": "After 50 years on the guitar, Ben Granfelt plays new and old material – as excited as ever." }, "location_extra_info": null, "name": { "fi": "Ben Granfelt LIVE – With Special Guest Jarmo Nikku", "sv": "Ben Granfelt LIVE – With Special Guest Jarmo Nikku", "en": "Ben Granfelt LIVE – With Special Guest Jarmo Nikku" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63749/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63733", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3651333", "sv": "https://www.lippu.fi/eventseries/name-3651333", "en": "https://www.lippu.fi/eventseries/name-3651333" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151637, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T14:13:19.701587Z", "last_modified_time": "2024-07-03T14:13:19.701611Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752365.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151637/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-03T14:13:19.665979Z", "last_modified_time": "2024-08-29T05:13:24.784071Z", "date_published": null, "start_time": "2024-09-13T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/218B39B2E9537BFF509BF9EF733C4078/Pavel_Semchenko_50_Tanssikollektiivi_222_Wrong_Movements", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/218B39B2E9537BFF509BF9EF733C4078/Pavel_Semchenko_Danskollektivet_50_222_Wrong_Movements", "en": "http://www.kanneltalo.fi/en/events/event/218B39B2E9537BFF509BF9EF733C4078/Pavel_Semchenko_50_Dance_Collective_222_Wrong_Movements" }, "provider": null, "description": { "fi": "<p>Väärien liikkeiden ihmeitä kahdeksalle ei-aivan-nuorelle tanssijalle, valolle, ajatuksille ja äänille.</p><p>Suomalaisen tanssin kentällä kääntyy uusi sivu. 50+Tanssikollektiivi astuu yleisön eteen ensimmäisellä näyttämöteoksellaan 222 Wrong Movements, jonka ohjaa palkittu taiteilija ja teatteriohjaaja Pavel Semchenko.</p><p>Kuinka jokin menee väärin, toisin kuin joku ajatteli? Milloin sen piti tapahtua ja miten? Pitikö sen?</p><p>Lavan ottaa haltuun kahdeksan yli 50-vuotiasta tanssijaa. 222 Wrong Movements avaa vaihtoehtoisia näkökulmia oikeiden ja väärien valintojen tekemiseen ja tulkitsemiseen sekä mahdollisiin tapoihin reagoida elolliseen ja elottomaan ympäristöön. Mikä on luonnotonta tai liian luonnollista, ennakoimatonta tai epätavallista, muttei välttämättä epäonnistuminen? Sanallinen ilmaisu kääntyy kehojen ja esineiden liikkeen kieleksi, ääni- ja valoilmiöiksi. <br> <br>Teoksen kesto: noin 1 t<br>Ikäsuositus: Yli 7-vuotiaille</p><p><b>Työryhmä:</b><br>Ohjaus: Pavel Semchenko<br>Koreografia ja tanssi: Pirkko Ahjo, Kaisa Hahl, Maikki Hauru, Marja Korhola, Kiki Molander, Anna Palmio, Tiina Salmi, Nina Viitamäki<br>Valosuunnittelu: Mirkka Saari, Kanneltalo<br>Yhteistyössä: 50+Tanssikollektiivi, Nomadi ry, Kanneltalo</p><p><b>Pavel Semchenko</b> on pitkän linjan visuaalinen taiteilija, ohjaaja, näyttelijä, lavastus- ja graafinen suunnittelija, joka kuuluu pietarilaisen AKHE-teatterin perustajajäseniin. Semchenko kehittää sanatonta taiteellista ilmaisuaan lavasteiden, nukkien ja erilaisten liikkuvien näyttämöelementtien avulla. Suomessa hänet on palkittu Säde-palkinnolla videosuunnittelustaan Neuvostoihmisen loppu -teoksessa (2023). AKHE-teatteri on esiintynyt festivaaleilla ja näyttämöillä ympäri maailman.</p><p><b>50+Tanssikollektiivi</b> on 50 vuoden iän saavuttaneiden tanssijoiden ryhmä. Taiteellisen toimintansa kautta kollektiivi avartaa tanssijoiden ammatillisia uranäkymiä ja pyrkii lisäämään yhteistyötä eri ikäpolvien ja taiteenalojen välillä. Keväällä 2023 perustettu 50+Tanssikollektiivi toimii tanssiyhteisö Nomadi ry:n alla, joka hallinnoi myös Alpo Aaltokoski Companyn toimintaa.</p>", "sv": "<p>Underverk av felaktiga rörelser för åtta inte-alldeles-unga dansare, ljus, tankar och ljud.</p><p>Ett nytt blad vänds på den finländska dansscenen. Danskollektivet 50+ stiger framför publiken med sin första scenproduktion 222 Wrong Movements i regi av den prisbelönte konstnären och teaterregissören Pavel Semchenko.</p><p>Hur går något fel, på ett annat sätt än man hade tänkt sig? När var det meningen att hända och hur? Hände det?</p><p>Åtta över 50-åriga dansare tar över scenen. 222 Wrong Movements öppnar upp alternativa synvinklar på rätt och fel val och tolkningar samt möjliga sätt att reagera på den levande och livlösa miljön. Vad är onaturligt eller för naturligt, oförutsett eller ovanligt, men inte nödvändigtvis ett misslyckande? Det verbala uttrycket översätts till ett språk för kropparnas och föremålens rörelser, ljud- och ljusfenomen. <br> <br>Verkets längd: ca 1 timme<br>Åldersrekommendation: Över 7-åringar</p><p><b>Arbetsgrupp:</b><br>Regi: Pavel Semchenko<br>Koreografi och dans: Pirkko Ahjo, Kaisa Hahl, Maikki Hauru, Marja Korhola, Kiki Molander, Anna Palmio, Tiina Salmi, Nina Viitamäki<br>Ljusdesign: Mirkka Saari, Gamlasgården<br>I samarbete: Danskollektivet 50+, Nomadi ry, Gamlasgården</p><p><b>Pavel Semchenko</b> är en erfaren visuell konstnär, regissör, skådespelare, scenograf och grafisk formgivare och en av grundarna av AKHE-teatern i S:t Petersburg. Semchenko utvecklar sitt icke-verbala konstnärliga uttryck genom att använda sig av kulisser, dockor och olika rörliga scenelement. I Finland har han tilldelats Sädepriset för sin videodesign till verket Neuvostoihmisen loppu (2023). AKHE-teatern har uppträtt på festivaler och scener runt om i världen.</p><p><b>Danskollektivet 50+</b> är en grupp dansare som har fyllt 50 år. Genom sin konstnärliga verksamhet breddar kollektivet dansarnas karriärutsikter och strävar efter att öka samarbetet mellan olika generationer och konstarter. Danskollektivet 50+ som grundades våren 2023 verkar inom ramen för danskollektivet Nomadi ry, som också förvaltar verksamheten för Alpo Aaltokoski Company.</p>", "en": "<p>Miracles of false movements for eight not-quite-young dancers, light, thoughts and sounds.</p><p>Turning a new leaf in the field of Finnish dance. The 50+ Dance Collective presents its first stage work, 222 Wrong Movements, directed by award-winning artist and theatre director Pavel Semchenko.</p><p>How does something go wrong, differently from what someone thought? When was it supposed to happen and how? Did it?</p><p>The stage is taken over by eight dancers, all over 50 years old. 222 Wrong Movements introduces alternative perspectives for making and interpreting right and wrong choices, as well as possible ways to react to the natural and unnatural environment. What is unnatural or too natural, unpredictable or unusual, but not necessarily a failure? Verbal expression translates into the language of movement of bodies and objects, sound and light phenomena. <br> <br>Duration of the work: approx. 1 h<br>Age recommendation: 7+</p><p><b>Working group:</b><br>Director: Pavel Semchenko<br>Choreography and dance: Pirkko Ahjo, Kaisa Hahl, Maikki Hauru, Marja Korhola, Kiki Molander, Anna Palmio, Tiina Salmi, Nina Viitamäki<br>Lighting: Mirkka Saari, Kanneltalo<br>In cooperation with: 50+Dance Collective, Nomadi ry, Kanneltalo</p><p><b>Pavel Semchenko</b> is a longtime visual artist, director, actor, stage and graphic designer, and a founding member of the AKHE Theatre in St. Petersburg. Semchenko develops his non-verbal artistic expression with the help of sets, dolls and various moving stage elements. In Finland, he has been awarded the Säde Award for his video design for his work, Neuvostoihmisen loppu (2023). The AKHE Theatre has performed at festivals and stages around the world.</p><p><b>The 50+ Dance Collective</b> is a group of dancers who have reached the age of 50. Through its artistic activities, the collective expands the professional career prospects of dancers and strives to increase cooperation between different generations and fields of art. Founded in the spring of 2023, the 50+ Dance Collective operates under dance association Nomadi ry, which also manages the operations of the Alpo Aaltokoski Company.</p>" }, "short_description": { "fi": "Väärien liikkeiden ihmeitä kahdeksalle ei-aivan-nuorelle tanssijalle, valolle, ajatuksille ja äänille.", "sv": "Underverk av felaktiga rörelser för åtta inte-alldeles-unga dansare, ljus, tankar och ljud.", "en": "Miracles of false movements for eight not-quite-young dancers, light, thoughts and sounds." }, "location_extra_info": null, "name": { "fi": "Pavel Semchenko & 50+Tanssikollektiivi: 222 Wrong Movements", "sv": "Pavel Semchenko & Danskollektivet 50+: 222 Wrong Movements", "en": "Pavel Semchenko & 50+ Dance Collective: 222 Wrong Movements" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63733/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63490", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/ritni-raste-pieski-tyoeryhmae-girjai-3669138/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/ritni-raste-pieski-tyoeryhmae-girjai-3669138/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/ritni-raste-pieski-tyoeryhmae-girjai-3669138/" }, "price": { "fi": "15 € / 10 €", "sv": "15 € / 10 €", "en": "15 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151661, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-04T13:13:13.879698Z", "last_modified_time": "2024-07-04T13:13:13.879713Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751098.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151661/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-04T13:13:13.864011Z", "last_modified_time": "2024-08-29T05:13:24.620547Z", "date_published": null, "start_time": "2024-09-12T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/BCBA115D43091C8932882655ACBF16C2/Girj_i", "sv": "http://www.caisa.fi/sv/evenemang/event/BCBA115D43091C8932882655ACBF16C2/Girj_i", "en": "http://www.caisa.fi/en/events/event/BCBA115D43091C8932882655ACBF16C2/Girj_i" }, "provider": null, "description": { "fi": "<p>Girjái on radikaali dekoloniaalinen queer utopia: yhteisöllinen esityksellinen kokoontuminen, joka järjestetään lávvussa.</p><p>Girjái sukeltaa maailmaan, jossa esivanhempien viisaudet johdattavat eteenpäin muodostaen yhteyden tähän hetkeen ja tulevaan. Teos koostuu joiuista, tanssista, tarinoista, musisoinnista, alter-egoista ja yhdessä unelmoinnista.</p><p>Girjái kutsuu mukaan unelmoimaan – teos on omistettu erityisesti sateenkaarisaamelaisille ja BIPOC-queereille kaikissa ajoissa; edeltäneille, nykyisille ja tuleville.</p><p>We are still here – and we are still queer.</p><p><b>Työryhmä:</b> <br>Ritni Ráste Pieski, Biret-Iŋgá Pieski, Pessi Jouste, Aju Jurvanen, Helmi Hagelin ja Kai Mikkel Balto</p><p>Tukemassa: Saami Council ja Koneen Säätiö</p><p>Kesto: noin 1–1,5 t, ei väliaikaa<br>Ikäsuositus: yli 12-vuotiaille<br>Kieli: pohjoissaame, suomi ja englanti</p><p>Liput: 15 € / 10 € osoitteesta Lippu.fi</p><p>Pressiliput ja lisätiedot: johanna.rissanen@hel.fi</p>", "sv": "<p>Girjái är en radikal dekolonial queerutopi: ett gemenskapligt framställningsmässigt möte som ordnas i en lávvu.</p><p>Girjái dyker in i en värld där förfädernas visdom visar vägen framåt och skapar en koppling mellan nuet och framtiden. Verket består av jojkar, dans, berättelser, musik, alter-egon och gemensamma drömmar.</p><p>Girjái bjuder dig med att drömma – verket är särskilt tillägnat regnbågssamer och BIPOC Queer-folk i alla tider; dåtid, nutid och framtid.</p><p>We are still here – and we are still queer.</p><p><b>Arbetsgrupp:</b> <br>Ritni Ráste Pieski, Biret-Iŋgá Pieski, Pessi Jouste, Aju Jurvanen, Helmi Hagelin och Kai Mikkel Balto</p><p>Stöd: Samerådet och Konestiftelsen</p><p>Längd: ca 1–1,5 timmar, ingen paus<br>Åldersrekommendation: över 12-åringar<br>Språk: nordsamiska, finska och engelska</p>", "en": "<p>Girjái is a radical de-colonial queer utopia: a communal performance gathering held in Lávvu.</p><p>Girjái dives into a world where the wisdom of the ancestors leads the way, connecting to the present and the future. The work consists of joik, dance, stories, music, alter-egos and dreaming together.</p><p>Girjái invites you to join the dream – the work is dedicated especially to LGBT+ Sámi and BIPOC people of all eras; past, present and future.</p><p>We are still here – and we are still queer.</p><p><b>Working group: </b><br>Ritni Ráste Pieski, Biret-Iŋgá Pieski, Pessi Jouste, Aju Jurvanen, Helmi Hagelin and Kai Mikkel Balto<br>Supporting: Saami Council and Kone Foundation</p><p>Duration: approx. 1-1.5 h, no intermission<br>Recommended age: 12+<br>Language: Northern Sami, Finnish and English</p>" }, "short_description": { "fi": "Girjái on radikaali dekoloniaalinen queer utopia: yhteisöllinen esityksellinen kokoontuminen, joka järjestetään lávvussa.", "sv": "Girjái är en radikal dekolonial queerutopi: ett gemenskapligt framställningsmässigt möte som ordnas i en lávvu.", "en": "Girjái is a radical de-colonial queer utopia: a communal performance gathering held in Lávvu." }, "location_extra_info": null, "name": { "fi": "Girjái – Ritni Ráste Pieski & työryhmä", "sv": "Girjái", "en": "Girjái" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63490/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63748", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/malmijazz-elifantree-malmitalo-18621794/", "sv": "https://www.lippu.fi/event/malmijazz-elifantree-malmitalo-18621794/", "en": "https://www.lippu.fi/event/malmijazz-elifantree-malmitalo-18621794/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151453, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-13T12:13:11.046952Z", "last_modified_time": "2024-06-13T12:13:11.046969Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752460.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151453/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-13T12:13:11.017015Z", "last_modified_time": "2024-08-29T05:13:24.560372Z", "date_published": null, "start_time": "2024-09-12T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/58401FD21A0B68C2790A3B12AF59075E/Elifantree", "sv": "http://www.malmitalo.fi/sv/evenemang/event/58401FD21A0B68C2790A3B12AF59075E/Elifantree", "en": "http://www.malmitalo.fi/en/events/event/58401FD21A0B68C2790A3B12AF59075E/Elifantree" }, "provider": null, "description": { "fi": "<p>Elifantree tekee paluun keikkalavoille ja jatkaa musiikillisten rajojen murtamista!</p><p>Elektro-akustinen ja eklektinen Elifantree on laulun ja koskettimien (Anni Elif), saksofonin (Pauli Lyytinen) ja rumpujen (Olavi Louhivuori) päälle rakentuva trio, joka laajentaa äänimaailmaansa värikkäällä kirjolla soittimia. Elifantreen musiikkia on verrattu Pablo Picasson, Charlie Chaplinin ja David Lyncin töihin, runsaudensarveen, mystiseen satumetsään ja ties mihin, mutta ennen kaikkea kyse on kolmen taiteilijan näkemyksestä siitä, mitä (jazz)musiikki voi tänä päivänä olla kategoriat unohtaen. Yhtyeen tavaramerkkejä ovat elastiset groovet, mielikuvitukselliset äänimaailmat sekä virtuoottiset improvisaatiot.</p><p>Elifantree on keikkailut ahkerasti ympäri maailmaa vuodesta 2007 lähtien ja julkaissut kuusi albumia. ”Blood Moon” (2019) oli yhteislevy nykyklassisen Tölöläb-kvartetin kanssa. Viimeisin levytys ”Hachi” (2021) äänitettiin juuri ennen pandemiaa kahdeksassa eri maassa kahdeksan eri rumpalin ja lyömäsoittajan kanssa.</p><p>Elifantree on aktivoitunut vuosien 2023–24 aikana säveltämään uutta materiaalia perustriolle, jota kuullaan jo syksyn 2024 konserteissa tulevaa levytystä ennakoiden. Malmitalon konsertti on Elifantreen ensimmäinen esiintyminen Suomessa sitten vuoden 2022.</p><p>MalmiJazz tarjoilee monipuolisesti jazz-musiikin eri tyylilajeja ensiluokkaisessa konserttisaliympäristössä. Nouseva, numeroitu katsomo tarjoaa jokaiselle konserttivieraalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Malmisalin erinomaiset akustiset, äänentoistolliset ja valaistukselliset puitteet takaavat laadukkaan keikkaelämyksen.</p><p>Kesto: 1 t 15 min</p>", "sv": "<p>Elifantree återvänder till scenen och fortsätter att spränga musikaliska gränser!</p><p>Elektroakustiska och eklektiska Elifantree är en trio som bygger på sång och keyboard (Anni Elif), saxofon (Pauli Lyytinen) och trummor (Olavi Louhivuori), och som vidgar sitt sound med en färgstark uppsättning instrument. Elifantrees musik har jämförts med Pablo Picassos, Charlie Chaplins och David Lynchs verk, ymnighetshornet, en mystisk sagoskog och mycket mer, men framför allt handlar det om tre artisters vision av vad (jazz)musik kan vara i dag, bortom kategorier. Bandets kännetecken är en elastisk groove, fantasifulla ljudlandskap och virtuosa improvisationer.</p><p>Sedan 2007 har Elifantree turnerat flitigt runt om i världen och släppt sex album. \"Blood Moon\" (2019) var ett samarbete med den samtida klassiska kvartetten Tölöläb. Deras senaste album \"Hachi\" (2021) spelades in strax före pandemin i åtta olika länder med åtta olika trummisar och slagverkare.</p><p>Under 2023–24 har Elifantree aktiverats att komponera nytt material för grundtrion, som i väntan på den kommande inspelningen kommer att framföras på konserterna under hösten 2024. Konserten i Malms kulturhus blir Elifantrees första framträdande i Finland sedan 2022.</p><p>MalmiJazz bjuder på ett brett utbud av jazzmusikens stilarter i en förstklassig konserthusmiljö. Den upphöjningsbara, numrerade läktaren erbjuder varje konsertbesökare en bekväm sittplats och en bra utsikt över scenen. De utmärkta akustik-, ljudåtergivnings- och ljusförhållandena i Malmsalen garanterar en konsertupplevelse av hög kvalitet.</p>", "en": "<p>Elifantree returns to the stages and continues to break musical boundaries!</p><p>The electro-acoustic and eclectic Elifantree is a trio built around vocals and keyboards (Anni Elif), saxophone (Pauli Lyytinen) and drums (Olavi Louhivuori), which expands its sound with a colourful variety of musical instruments. Elifantree's music has been compared to the works of Pablo Picasso, Charlie Chaplin and David Lynch, a cornucopia, a mystical fairytale forest and who knows what, but above all, it is about what today’s (jazz)music can be, without labels. The band's trademarks include elastic grooves, imaginative soundscapes and virtuoso improvisation.</p><p>Elifantree has been touring heavily around the world since 2007, releasing six albums. \"Blood Moon\" (2019) was a joint album with the contemporary classical Tölöläb Quartet. Their latest album, \"Hachi\" (2021), was recorded just before the pandemic in eight different countries with eight different drummers and percussionists.</p><p>Elifantree has begun to compose new material during 2023–24 for their base trio, which will be played at the autumn 2024 concerts in anticipation of the upcoming album. The Malmitalo concert is Elifantree's first performance in Finland since 2022.</p><p>MalmiJazz provides a wide range of jazz music genres in a first-class concert hall environment. The ascending, numbered auditorium provides each concert guest with their own comfortable seat and a good view of the stage. The excellent acoustic, sound and lighting equipment of Malmisali guarantee a high-quality concert experience.</p>" }, "short_description": { "fi": "Elifantree tekee paluun keikkalavoille ja jatkaa musiikillisten rajojen murtamista!", "sv": "Elifantree återvänder till scenen och fortsätter att spränga musikaliska gränser!", "en": "Elifantree returns to the stages and continues to break musical boundaries!" }, "location_extra_info": null, "name": { "fi": "Elifantree – MalmiJazz", "sv": "Elifantree – MalmiJazz", "en": "Elifantree – MalmiJazz" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63748/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64187", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/i-lasses-koelvatten-3712859/", "sv": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/i-lasses-koelvatten-3712859/", "en": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/i-lasses-koelvatten-3712859/" }, "price": { "fi": "15 € / 11 €", "sv": "15 € / 11 €", "en": "15 € / 11 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151680, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-10T13:13:11.047743Z", "last_modified_time": "2024-07-10T13:13:11.047762Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750133.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151680/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-10T13:13:11.013532Z", "last_modified_time": "2024-08-29T05:13:24.503552Z", "date_published": null, "start_time": "2024-09-12T15: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7BE34454F662DB3540CC9F2E1AED9F1D/Sofia_Finnila_Trio_Lassen_vanavedessa_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/7BE34454F662DB3540CC9F2E1AED9F1D/Sofia_Finnila_Trio_I_Lasses_kolvatten_", "en": "http://www.vuotalo.fi/en/events/event/7BE34454F662DB3540CC9F2E1AED9F1D/Sofia_Finnila_Trio_Lassen_vanavedessa_In_Lasse_s_wake_" }, "provider": null, "description": { "fi": "<p>Tänä vuonna Lasse Mårtenson olisi täyttänyt 90 vuotta. Juhlistamme hänen unohtumattomia säveliään uudella konserttisarjalla.</p><p>Lassen vanavedessä -combo on räätälöity juuri tätä konserttisarjaa varten. Kaikki sen jäsenet ovat soittaneet yhdessä eri kokoonpanoissa, ja tunteneet toisensa jo kauan. Viimeisin yhteinen produktion oli dramatisoitu konsertti ”Vie meren tuoksuun” Porin Teatterissa 2021–2023. Myös se perustui Lasse Mårtensonin säveliin, ja kun esityskausi päättyi, syntyi ajatus lähteä kiertämään saaristoa ja konserttisaleja Lassen musiikkia esittäen.<br> <br>Sofia Finnilä on arvostettu jazzlaulaja. Hän on voittanut Lady Summertime -laulukilpailun 1999 ja valmistunut Sibelius-Akatemiasta musiikin kasvatuksen osastolta. Hän on tehnyt paljon yhteistyötä eri jazzmuusikoiden kanssa niin Suomessa kuin ulkomailla. Oman Sofia Finnilä Septetin lisäksi hän on toiminut mm. UMOn ja Lasse Mårtenson trion solistina. Nykyään hänet tunnetaan myös työstään teatterimusiikin parissa, ja hän on säveltänyt ja sovittanut musiikkia niin HKT:lle kun teattereille ympäri Suomen.</p><p><b>Lavalla:</b><br>Sofia Finnilä – laulu ja tarinat<br>Sampo Hiukkanen – viulu ja saksofoni<br>Henrik Wikström – piano ja harmonikka<br>Hannu Rantanen – basso</p><p>Kesto: n. 70 min., ei väliaikaa <br>Kieli: ruotsi, suomi</p><p>Liput: 15 € / 11 €, Lippu.fi ja lippuautomaatilta ovella. <br>Järj. Sofia Finnilä Trio yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>I år skulle Lasse Mårtenson ha fyllt 90 år. Vi vill fira hans oförglömliga musik med en ny musikproduktion.</p><p>I Lasses kölvatten -combon är skräddarsydd för denna konsertserie. Alla dess medlemmar har jobbat med varandra i olika sammanhang. Det senaste var under den omtyckta dramatiserade konserten ”Vie Meren tuoksuun” på Porin teatteri 2021–2023. Den grundade sig på Lasse Mårtensons musik, och efter att produktionen var färdig spelad, föddes tanken att föra Lasses musik ut till skärgården. och konsertsalar. <br>Sofia Finnilä är en mångsidig musiker som som avlagt magisters examen vid Sibelius-Akademin. Efter att hon vann Lady Summertime jazzsångstävlingen 1999, har hon varit en mycket anlitad solist såväl i Finland som utomlands. Utöver sin egna septett, har hon bla agerat som solist för bla UMO och Lasse Mårtenson trio. Idag är hon också känd för sitt arbete inom teatermusik, och har bla komponerat och arrangerat musik för Helsingfors stadsteater, som flera teatrar runtom Finland.</p><p><b>På scen:</b><br>Sofia Finnilä – sång och berättelser<br>Sampo Hiukkanen – fiol och saxofon<br>Henrik Wikström – piano och dragspel<br>Hannu Rantanen – bas</p><p>Längd: ca 70 min., ingen paus.</p><p>Språk: svenska, finska.</p><p>Biljetter: 15 € /11 € via Lippu.fi eller från biljettautomaten vid dörren. <br>Arr: Sofia Finnilä Trio i samarbete med Nordhuset.</p>", "en": "<p>This year, Lasse Mårtenson would have turned 90. We are celebrating his unforgettable music with a new concert series.</p><p>The Lassen vanavedessä combo is tailored just for this concert series. All of its members have played together in different ensembles and have known each other for a long time. Their most recent joint production was a dramatized concert \"Vie meren tuoksuun\" at Pori Theatre in 2021–2023. It, too, was based on the melodies of Lasse Mårtenson, and when the performance season ended, the idea arose to go on a tour of the archipelago and concert halls, performing Lasse's music.<br> <br>Sofia Finnilä is a respected jazz singer. She won the Lady Summertime Singing Competition in 1999, and graduated from the Sibelius Academy Department of Music Education. She has collaborated a great deal with various jazz musicians both in Finland and abroad. In addition to her own group, the Sofia Finnilä Septet, she has worked as a soloist for UMO and the Lasse Mårtenson trio. Today, she is also known for her work in theatre music, and she has composed and arranged music for both the Helsinki City Theatre as well as theatres all over Finland.</p><p><b>On stage:</b><br>Sofia Finnilä – vocals and stories<br>Sampo Hiukkanen – violin and saxophone<br>Henrik Wikström – piano and accordion<br>Hannu Rantanen – bass</p><p>Duration: apx. 70 min, no intermission. <br>Language: Swedish, Finnish</p><p>Tickets: 15 € / 11 € from Lippu.fi and also from the ticket machine at the door. <br>Org. Sofia Finnilä Trio in cooperation with Vuotalo.</p>" }, "short_description": { "fi": "Tänä vuonna Lasse Mårtenson olisi täyttänyt 90 vuotta. Juhlistamme hänen unohtumattomia säveliään uudella konserttisarjalla.", "sv": "I år skulle Lasse Mårtenson ha fyllt 90 år. Vi vill fira hans oförglömliga musik med en ny musikproduktion.", "en": "This year, Lasse Mårtenson would have turned 90. We are celebrating his unforgettable music with a new concert series." }, "location_extra_info": null, "name": { "fi": "Sofia Finnilä Trio: Lassen vanavedessä – Sofia Finnilä Trio soittaa Lasse Mårtensonin musiikkia", "sv": "Sofia Finnilä Trio: I Lasses kölvatten – Sofia Finnilä Trio spelar Lasse Mårtenson", "en": "Sofia Finnilä Trio: Lassen vanavedessä (In Lasse's wake) – Sofia Finnilä Trio plays Lasse Mårtenson" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64187/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64202", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151710, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-12T14:13:31.292513Z", "last_modified_time": "2024-07-12T14:13:31.292526Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745832.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151710/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-12T14:13:31.271726Z", "last_modified_time": "2024-08-29T05:13:24.453586Z", "date_published": null, "start_time": "2024-09-12T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/574AA136AF7DD7A653C04CE4D6373927/Yleison_suosikit_Barbie_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/574AA136AF7DD7A653C04CE4D6373927/Barbie_7_", "en": "http://www.malmitalo.fi/en/events/event/574AA136AF7DD7A653C04CE4D6373927/Barbie_7_" }, "provider": null, "description": { "fi": "<p>Yleisön suosikit on Kino Helioksen uusi elokuvasarja, jossa nähdään Kino Helioksen aiempien kausien yleisömenestyselokuvia ilmaisnäytöksinä.</p><p>Elämä Barbiemaassa on täydellistä. Paitsi jos sinulla on eksistentiaalinen kriisi. Tai jos olet Ken.</p><p>Barbie ja Ken viettävät elämänsä aikaa Barbielandin värikkäässä ja näennäisen täydellisessä maailmassa. Kun he saavat mahdollisuuden mennä todelliseen maailmaan, he löytävät nopeasti ihmisten parissa elämisen ilot ja vaarat.</p><p>Oscar-ehdokas Margot Robbie on Barbie ja Ryan Gosling on Ken ohjaaja-käsikirjoittaja Greta Gerwigin huippusuositussa, nokkelassa elokuvassa, josta muodostui maailmanlaajuinen ilmiö.</p><p>Muissa rooleissa nähdään America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Rhea Perlman ja Will Ferrell. 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.</p><p>Käsikirjoitus on Greta Gerwigin ja Noah Baumbachin käsialaa.</p><p>Kesto 114 min<br>Ikäraja 7<br>Ensi-ilta 21.7.2023</p><p>Vapaa pääsy!</p>", "sv": "<p>Barbie och Ken har sitt livs tid i den färgstarka och till synes perfekta världen Barbie Land.</p><p>Men när de får en chans att gå till den verkliga världen upptäcker de snart glädjen och farorna med att leva bland människor.</p>", "en": "<p>Barbie and Ken are having the time of their lives in the colorful and seemingly perfect world of Barbie Land.</p><p>However, when they get a chance to go to the real world, they soon discover the joys and perils of living among humans.</p>" }, "short_description": { "fi": "Yleisön suosikit on Kino Helioksen uusi elokuvasarja, jossa nähdään Kino Helioksen aiempien kausien yleisömenestyselokuvia ilmaisnäytöksinä.", "sv": "Barbie och Ken har sitt livs tid i den färgstarka och till synes perfekta världen Barbie Land.", "en": "Barbie and Ken are having the time of their lives in the colorful and seemingly perfect world of Barbie Land." }, "location_extra_info": null, "name": { "fi": "Yleisön suosikit: Barbie (7) – Kino Helios", "sv": "Barbie (7) – Kino Helios", "en": "Barbie (7+) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64202/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }