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=242&weekday=6%2C7
{ "meta": { "count": 7187, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=243&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=241&weekday=6%2C7" }, "data": [ { "id": "kulke:63316", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@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": [], "info_url": { "fi": "https://www.lippu.fi/event/gasthaus-orkesteri-malmitalo-18621894/", "sv": "https://www.lippu.fi/event/gasthaus-orkesteri-malmitalo-18621894/", "en": "https://www.lippu.fi/event/gasthaus-orkesteri-malmitalo-18621894/" }, "description": null, "price": { "fi": "24,50 € / 19,50 €", "sv": "24,50 € / 19,50 €", "en": "24,50 € / 19,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151878, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T15:15:02.759347Z", "last_modified_time": "2024-07-25T15:15:02.759366Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748962.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151878/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-25T15:15:02.717731Z", "last_modified_time": "2024-08-29T05:13:35.613882Z", "date_published": null, "start_time": "2024-10-19T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Gasthaus Orkesteri", "sv": "Gasthaus Orkester", "en": "Gasthaus Orchestra" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Samaan aikaan kaunista ja outoa – Gasthaus Orkesteri on täydellinen soundtrack valon ja pimeyden välillä kulkeville uneksijoille.", "sv": "Vackert och märkligt på samma gång – Gasthaus Orkesteri är det perfekta soundtracket för drömmare som vandrar mellan ljuset och mörkret.", "en": "Beautiful and strange at the same time – Gasthaus Orchestra is the perfect soundtrack for dreamers wandering between light and darkness." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5220ADBEB85AC177799AFB99A908E73B/Gasthaus_Orkesteri", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5220ADBEB85AC177799AFB99A908E73B/Gasthaus_Orkester", "en": "http://www.malmitalo.fi/en/events/event/5220ADBEB85AC177799AFB99A908E73B/Gasthaus_Orchestra" }, "description": { "fi": "<p>Samaan aikaan kaunista ja outoa – Gasthaus Orkesteri on täydellinen soundtrack valon ja pimeyden välillä kulkeville uneksijoille.</p><p>Kahdeksanhenkinen yhtye on tehnyt hurmioituneita keikkoja Twin Peaksin jalanjäljissä ja vakiinnuttanut asemansa Angelo Badalamentin selittämättömän musiikin tulkitsijana.</p><p>Nyt on aika rikkoa raiteet: Gasthaus Orkesteri tuo mukanaan uuden suunnan omaleimaiselle, elokuvalliselle tyylilleen, unohtamatta kuitenkaan juuriaan. Gasthaus Orkesteri sukeltaa yöhön ja salaisuuksiin, laulaa ja raastaa, repäisee riehuvat sydämet paikalleen. Luvassa on uusia omia kappaleita ja sopivasti vanhaa.</p>", "sv": "<p>Vackert och märkligt på samma gång – Gasthaus Orkesteri är det perfekta soundtracket för drömmare som vandrar mellan ljuset och mörkret.</p><p>Åttamannabandet har gjort extatiska spelningar i Twin Peaks fotspår, och etablerat sin ställning som tolkare av Angelo Badalamentis oförklarliga musik.</p><p>Nu är det dags att byta spår: Gasthaus Orkesteri för med sig en ny riktning i sin särpräglade, filmatiska stil, dock utan att glömma sina rötter. Gasthaus Orchestra dyker ner i natten och hemligheterna, sjunger och sliter, river vilda hjärtan på plats. Nya originallåtar och en lämplig mängd gamla låtar utlovas.</p>", "en": "<p>Beautiful and strange at the same time – Gasthaus Orchestra is the perfect soundtrack for dreamers wandering between light and darkness.</p><p>The eight-piece band has played enchanting gigs in the footsteps of Twin Peaks and established themselves as interpreters of Angelo Badalamenti's inexplicable music.</p><p>Now, it’s time for a new path: The Gasthaus Orchestra introduces a new direction to its distinctive, cinematic style, without forgetting its roots. The Gasthaus Orchestra dives headfirst into the night and the secrets, sings and tears, tears the raging hearts into place. Their set includes a nice mix of new and old material.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63316/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64441", "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:350/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-115/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152203, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-23T12:13:30.066369Z", "last_modified_time": "2024-08-23T12:13:30.066393Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757174.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152203/?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-08-23T12:13:30.056812Z", "last_modified_time": "2024-08-29T05:13:35.508886Z", "date_published": null, "start_time": "2024-10-19T11: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, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Inkluderande danslektion för barn", "en": "Children’s Inclusive Dance Class" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.", "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/32C7FAC5427B745DC521A894C54E03E2/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/32C7FAC5427B745DC521A894C54E03E2/Inkluderande_danslektion_for_barn", "en": "http://www.annantalo.fi/en/events/event/32C7FAC5427B745DC521A894C54E03E2/Children_s_Inclusive_Dance_Class_" }, "description": { "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen.</p><p>Ohjauskielet: suomi/englanti<br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Tila: Tanssiluokka</p><p>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi</p>", "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad. Fri entré, förhandsanmälning.</p><p>Antal deltagare: max 18 (barn och vuxna tillsammans)<br>Lokal: Dansklassrummet<br>Undervisningsspråk: Finska, engelska</p><p>Anmäl dig på förhand via e-post: info@kaaoscompany.fi</p>", "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability.</p><p>The lesson lasts one hour. <br>The space is accessible. <br>The lessons are free.</p><p>Languages: Finnish and English<br>Number of participants: max 18 (children and adults together)</p><p>Register in advance by email: info@kaaoscompany.fi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64441/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64315", "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: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:47/?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": [], "info_url": { "fi": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805296/", "sv": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805296/", "en": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805296/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151962, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-30T09:13:56.802408Z", "last_modified_time": "2024-07-30T09:13:56.802421Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751577.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151962/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-30T09:13:56.787731Z", "last_modified_time": "2024-08-29T05:13:35.453217Z", "date_published": null, "start_time": "2024-10-19T10:00:00Z", "end_time": "2024-10-19T11: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, "name": { "fi": "Back 2 The Future – Global Club lapsille", "sv": "Back 2 The Future – Global Club för barn", "en": "Back 2 The Future – Global Club for kids – Family Concert" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Back 2 The Future -konsertti käy läpi samplepohjaisen musiikin historian soul- ja funk-musiikin kultakaudesta hip hopin ja housen kautta elektroniseen rytmimusiikkiin.", "sv": "Konserten Back 2 The Future skildrar den samplingsbaserade musikens historia från soul- och funkmusikens guldålder via hiphop och house till elektronisk rytmmusik.", "en": "The concert goes through the history of sample-based music from the golden age of soul and funk music through hip hop and house to electronic rhythm music." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/CDE9DBCF2EC1B05346795CF8D9FBED4C/Back_2_The_Future", "sv": "http://www.caisa.fi/sv/evenemang/event/CDE9DBCF2EC1B05346795CF8D9FBED4C/Back_2_The_Future", "en": "http://www.caisa.fi/en/events/event/CDE9DBCF2EC1B05346795CF8D9FBED4C/Back_2_The_Future" }, "description": { "fi": "<p>Back 2 The Future -konsertti käy läpi samplepohjaisen musiikin historian soul- ja funk-musiikin kultakaudesta hip hopin ja housen kautta elektroniseen rytmimusiikkiin.</p><p>Back 2 The Future -konsertissa matka alkaa 70-luvun New Yorkista ja päättyy 80-luvun Chicagon ja vuosituhannen vaihteen Pariisin kautta tulevaisuuteen! Tässä musiikin, tanssin, laulun, tarinankerronnan, rapin ja improvisoinnin (eli freestylen) hulluttelussa yleisö pääsee osallistumaan konsertin ja hyppimään rytmin tahtiin.</p><p>Konsertissa esiintyy ryhmä palkittuja, monissa liemissä keitettyjä esiintyjiä, tanssin ja musiikin huippunimiä Suomessa sekä pitkän linjan hiphop-pedagogeja, joten yleisö on varmasti turvallisissa ja osaavissa käsissä.</p><p>Simeoni Juoperi – tanssi, rap <br>Elias Niskanen – tanssi, esitystaide<br>Linda Ilves – laulu, tanssi, looper<br>Joose Kyyrö – saksofoni <br>Arttu Rintakumpu – sampleri, levysoittimet, tanssi, rap</p><p>Kesto: 45 min<br>Ikä: kaiken ikäisille<br>Kieli: englanti, suomi</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa. Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p>", "sv": "<p>Konserten Back 2 The Future skildrar den samplingsbaserade musikens historia från soul- och funkmusikens guldålder via hiphop och house till elektronisk rytmmusik.</p><p>Resan börjar i New York på 70-talet och går via 80-talets Chicago och millennieskiftets Paris och slutar i framtiden!</p><p>I denna galna blandning av musik, dans, sång, historieberättande, rap och improvisation (det vill säga freestyle) får publiken delta i konserten och hoppa i takt till rytmen.</p><p>På konserten framträder en grupp prisbelönta och mycket erfarna artister, toppnamn inom den finländska dansen och musiken och erfarna hiphop-pedagoger. Därmed är publiken är i trygga och skickliga händer.</p><p>Simeoni Juoperi – dans, rap <br>Elias Niskanen – dans, scenkonst<br>Linda Ilves – sång, dans, looper<br>Joose Kyyrö – saxofon <br>Arttu Rintakumpu – sampler, skivspelare, dans, rap</p><p>Längd: 45 min.<br>Ålder: alla åldrar<br>Språk: engelska, finska</p><p>Global Club Nights har producerats genom samarbete mellan Sibelius-Akademins avdelning för global musik och kulturcentret Caisa. Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans. Klubbarna strävar efter att skapa en trygg, inkluderande och kreativ miljö. Genom livemusik, radioprogram, seminarier och workshoppar har evenemangen som mål att bygga broar mellan alla musikälskare och deras gemenskaper.</p>", "en": "<p>The concert goes through the history of sample-based music from the golden age of soul and funk music through hip hop and house to electronic rhythm music.</p><p>The journey starts in New York of the 70s and ends in the future through Chicago of the 80s and Paris at the turn of the millennium!</p><p>In this madhouse of live music, dancing, singing, storytelling, rapping and improvisation (i.e. freestyle), the audience gets to participate in the course of the concert and jump to the beat.</p><p>The group consists of award-winning performers cooked in many broths, top names in dance and music in Finland and long-time hip-hop pedagogues, so the audience is certainly in safe and competent hands.</p><p>Simeoni Juoperi – dance, rap <br>Elias Niskanen – dance, performance art<br>Linda Ilves – song, dance, looper<br>Joose Kyyrö – saxophone <br>Arttu Rintakumpu – sampler, turntables, dance, rap</p><p>Duration: 45 min<br>Age: For all ages<br>Language: English, Finnish</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64315/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64375", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152078, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-12T13:14:43.128498Z", "last_modified_time": "2024-08-12T13:14:43.128517Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756002.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152078/?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:43.105728Z", "last_modified_time": "2024-08-29T05:13:35.253138Z", "date_published": null, "start_time": "2024-10-18T14: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, "name": { "fi": "Kipinä x Stoa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa syksyllä 2024!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/86044483E0E2393847198555165DEA27/Kipina_x_Stoa" }, "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. 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ä nettisivuilta https://nuorten.hel.fi/nuorisotalot/nuorten-toimintatalo-kipina-itakeskus/</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64375/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64331", "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: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: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:752/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151996, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-30T16:15:56.223911Z", "last_modified_time": "2024-07-30T16:15:56.223932Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751771.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151996/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-30T16:15:56.196369Z", "last_modified_time": "2024-08-29T05:13:35.145057Z", "date_published": null, "start_time": "2024-10-18T11: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, "name": { "fi": "Satukino | Kaunotar ja Kulkuri (S) – Satumainen syysloma", "sv": "Satukino | Lady och Lufsen (S) – Ett sagolikt höstlov", "en": "Fairy tale theatre Satukino | Beauty and the Tramp (S) – Fabulous autumn holiday" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Klassikkoelokuvia kahvilatilassa! Syyslomaviikon elokuvateatteri Satukino siirtyy loppuviikosta Annantalon kahvilatilaan, jossa katsotaan perjantaina elokuva Kaunotar ja Kulkuri (1955).", "sv": "Filmklassiker i caféutrymmet! I slutet av höstlovsveckan flyttar Satukino till Annegårdens caféutrymme, där filmen Lady och Lufsen (1955) visas på fredag.", "en": "Classic movies at the café! Later in during the autumn holiday week, Satukino will move to the café area at Annantalo, where the Disney film Beauty and the Tramp (1955) will be screened on Friday." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5BE8C127A68FFB88C13C205CE32EF6D7/Satukino_Kaunotar_ja_Kulkuri_S_", "sv": "http://www.annantalo.fi/sv/evenemang/event/5BE8C127A68FFB88C13C205CE32EF6D7/Satukino_Lady_och_Lufsen_S_", "en": "http://www.annantalo.fi/en/events/event/5BE8C127A68FFB88C13C205CE32EF6D7/Fairy_tale_theatre_Satukino_Beauty_and_the_Tramp_S_" }, "description": { "fi": "<p>Klassikkoelokuvia kahvilatilassa! Syyslomaviikon elokuvateatteri Satukino siirtyy loppuviikosta Annantalon kahvilatilaan, jossa katsotaan perjantaina elokuva Kaunotar ja Kulkuri (1955).</p><p>Kaunotar ja Kulkuri on Disney-animaatioelokuva, joka kertoo rakastetun tarinan ylhäisestä Belle-koirasta ja Kulkurista, hurmaavasta, vapaasta kulkukoirasta. Eräänä päivänä itsensä ulkopuoliseksi tunteva Belle tapaa Kulkurin, joka auttaa häntä pakenemaan kaupungin kurjuutta ja tylsyyttä.</p><p>Kaunotar ja Kulkuri on klassikkoelokuva, joka on lumonnut katsojiaan vuosikymmenten ajan tarinallaan rakkaudesta, seikkailuista ja elämän pienistä iloista. Elokuvassa korostetaan ennakkoluulojen voittamista ja erilaisten maailmojen yhdistämistä. Se jättää katsojan miettimään, miten pienet hetket voivat muuttaa elämän suunnan.</p><p>Hahmot puhuvat suomea. Tekstitys englanniksi. Kaikenikäisille</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Tulethan kuitenkin hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuvaan mahtuu noin 50 katsojaa.</p><p>Elokuvan kesto: 76 min<br>Ikäsuositus: S<br>Kieli: Suomi, englanti</p>", "sv": "<p>Filmklassiker i caféutrymmet! I slutet av höstlovsveckan flyttar Satukino till Annegårdens caféutrymme, där filmen Lady och Lufsen (1955) visas på fredag.</p><p>Lady och Lufsen är en animerad Disney-film som berättar den älskade historien om den ädla hunden Lady och den charmiga herrelösa hunden Lufsen. Lady, som ofta känner sig utanför, träffar en dag Lufsen som hjälper henne att fly stadens elände och tristess.</p><p>Lady och Lufsen är en filmklassiker som har fängslat publiken i årtionden med sin berättelse om kärlek, äventyr och livets små nöjen. Filmen betonar vikten av att övervinna fördomar och föra samman olika världar. Åskådarna får begrunda hur livets riktning kan förändras av små ögonblick.</p><p>Karaktärerna talar finska. Textning på engelska. För alla åldrar</p><p>Fritt inträde, ingen förhandsanmälan. Kom på plats i god tid, vi tar in publiken i ankomstordning. Det finns plats för cirka 70 personer att se filmerna.</p><p>Filmens längd: 76 minuter<br>Åldersrekommendation: S<br>Språk: Finska, engelska</p>", "en": "<p>Classic movies at the café! Later in during the autumn holiday week, Satukino will move to the café area at Annantalo, where the Disney film Beauty and the Tramp (1955) will be screened on Friday.</p><p>Beauty and the Tramp is a Disney animated film that tells the beloved story of the noble dog, Belle, and the Tramp, a charming, free-spirited stray. One day, feeling like an outsider, Belle meets Tramp, who helps her escape the misery and boredom of the city.</p><p>Beauty and the Tramp is a classic film that has enchanted its viewers for decades with its story about love, adventure and the little joys of life. The film focuses on overcoming prejudices and connecting different worlds. It leaves the viewer wondering how small moments can change the direction your life.</p><p>The characters speak Finnish. English subtitles. For all ages</p><p>Free admission, no advance registration. Please arrive on time as entry is on a first-come, first-served basis. The cinema can accommodate 70 spectators.</p><p>Movie duration: 76min<br>Age recommendation: All ages<br>Language: Finnish, English</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64331/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63556", "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: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/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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152084, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-12T15:13:28.559094Z", "last_modified_time": "2024-08-12T15:13:28.559106Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751312.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152084/?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-08-12T15:13:28.548161Z", "last_modified_time": "2024-08-29T05:13:32.927148Z", "date_published": null, "start_time": "2024-10-13T11: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, "name": { "fi": "Päistikka-duo – Satumainen syysloma", "sv": "Päistikka duo – Ett sagolikt höstlov", "en": "Päistikka duo – Fabulous autumn holiday" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun ja mielikuvitusmaailmaan.", "sv": "I denna glädjefyllda konsert kastar vi oss in i äventyr och fantasi tillsammans med duon Päistikka.", "en": "The joyful concert of the Päistikka duo takes the plunge into adventure and the world of imagination." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/011B687685E200A5DFF8F4735C428DBD/Paistikka-duo", "sv": "http://www.annantalo.fi/sv/evenemang/event/011B687685E200A5DFF8F4735C428DBD/Paistikka_duo", "en": "http://www.annantalo.fi/en/events/event/011B687685E200A5DFF8F4735C428DBD/Paistikka_duo" }, "description": { "fi": "<p>Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun ja mielikuvitusmaailmaan.</p><p>On aika tanssia robottidiskossa tai ryhtyä vaikka hirviöhippaan! Musiikin ja tarinoiden täyttämässä show’ssa tarvitaan välillä myös yleisön apua.</p><p>Tuukka Martiskainen – laulu, ukulele, samplet<br>Elina Vehkaoja – laulu, koskettimet</p><p>Kesto: 30 min<br>Ikäsuositus: 1+ ja koko perhe<br>Kieli: suomi</p><p>Vapaa pääsy</p>", "sv": "<p>I denna glädjefyllda konsert kastar vi oss in i äventyr och fantasi tillsammans med duon Päistikka.</p><p>Det är dags att dansa på robotdisco eller leka monstertafatt! I showen som är fylld av musik och berättelser behövs ibland även publikens hjälp.</p><p>Tuukka Martiskainen – sång, ukulele, samplingar<br>Elina Vehkaoja – sång, keyboard</p><p>Längd: 30 min.<br>Åldersrekommendation: 1+ och hela familjen<br>Språk: finska<br>Fritt inträde</p>", "en": "<p>The joyful concert of the Päistikka duo takes the plunge into adventure and the world of imagination.</p><p>Dance in the robot disco or play tag with monsters! In a show filled with music and stories, you sometimes need the help of the audience.</p><p>Tuukka Martiskainen – vocals, ukulele, samples<br>Elina Vehkaoja – vocals, keyboards</p><p>Duration: 30 mins.<br>Age recommendation: 1+ and the whole family<br>Language: Finnish</p><p>Free of charge</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63556/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63555", "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: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/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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152083, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-12T15:13:28.483061Z", "last_modified_time": "2024-08-12T15:13:28.483075Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751311.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152083/?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-08-12T15:13:28.470262Z", "last_modified_time": "2024-08-29T05:13:32.871340Z", "date_published": null, "start_time": "2024-10-13T09: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, "name": { "fi": "Päistikka-duo – Satumainen syysloma", "sv": "Päistikka duo – Ett sagolikt höstlov", "en": "Päistikka duo – Fabulous autumn holiday" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun ja mielikuvitusmaailmaan.", "sv": "I denna glädjefyllda konsert kastar vi oss in i äventyr och fantasi tillsammans med duon Päistikka.", "en": "The joyful concert of the Päistikka duo takes the plunge into adventure and the world of imagination." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C3F9BA22070F725844D221D8D44E73B1/Paistikka-duo", "sv": "http://www.annantalo.fi/sv/evenemang/event/C3F9BA22070F725844D221D8D44E73B1/Paistikka_duo", "en": "http://www.annantalo.fi/en/events/event/C3F9BA22070F725844D221D8D44E73B1/Paistikka_duo" }, "description": { "fi": "<p>Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun ja mielikuvitusmaailmaan.</p><p>On aika tanssia robottidiskossa tai ryhtyä vaikka hirviöhippaan! Musiikin ja tarinoiden täyttämässä show’ssa tarvitaan välillä myös yleisön apua.</p><p>Tuukka Martiskainen – laulu, ukulele, samplet<br>Elina Vehkaoja – laulu, koskettimet</p><p>Kesto: 30 min<br>Ikäsuositus: 1+ ja koko perhe<br>Kieli: suomi</p><p>Vapaa pääsy</p>", "sv": "<p>I denna glädjefyllda konsert kastar vi oss in i äventyr och fantasi tillsammans med duon Päistikka.</p><p>Det är dags att dansa på robotdisco eller leka monstertafatt! I showen som är fylld av musik och berättelser behövs ibland även publikens hjälp.</p><p>Tuukka Martiskainen – sång, ukulele, samplingar<br>Elina Vehkaoja – sång, keyboard</p><p>Längd: 30 min.<br>Åldersrekommendation: 1+ och hela familjen<br>Språk: finska<br>Fritt inträde</p>", "en": "<p>The joyful concert of the Päistikka duo takes the plunge into adventure and the world of imagination.</p><p>Dance in the robot disco or play tag with monsters! In a show filled with music and stories, you sometimes need the help of the audience.</p><p>Tuukka Martiskainen – vocals, ukulele, samples<br>Elina Vehkaoja – vocals, keyboards</p><p>Duration: 30 mins.<br>Age recommendation: 1+ and the whole family<br>Language: Finnish</p><p>Free of charge</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63555/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63627", "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": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3650116", "sv": "https://www.lippu.fi/eventseries/name-3650116", "en": "https://www.lippu.fi/eventseries/name-3650116" }, "description": null, "price": { "fi": "33,50-43,50 €", "sv": "33,50-43,50 €", "en": "33,50-43,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151063, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-10T08:12:48.909506Z", "last_modified_time": "2024-05-10T08:12:48.909526Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751848.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151063/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-10T08:12:48.874684Z", "last_modified_time": "2024-08-29T05:13:32.755398Z", "date_published": null, "start_time": "2024-10-12T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Imelda May & Darrel Higham: The Reunion – Loppuunmyyty", "sv": "Imelda May & Darrel Higham: The Reunion – Utsåld", "en": "Imelda May & Darrel Higham: The Reunion – Sold out" }, "location_extra_info": null, "provider": { "fi": "Deelen Consultancies", "sv": "Deelen Consultancies", "en": "Deelen Consultancies" }, "short_description": { "fi": "Together again for the first time in 10 years!", "sv": "Together again for the first time in 10 years!", "en": "Together again for the first time in 10 years!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5BB6221DD3549B52D36B915C124523FA/Imelda_May_Darrel_Higham_The_Reunion", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/5BB6221DD3549B52D36B915C124523FA/Imelda_May_Darrel_Higham_The_Reunion", "en": "http://www.savoyteatteri.fi/en/events/event/5BB6221DD3549B52D36B915C124523FA/Imelda_May_Darrel_Higham_The_Reunion" }, "description": { "fi": "<p>Together again for the first time in 10 years!</p><p>Olemme ylpeitä saadessamme esittää tämän ainutlaatuisen konsertin: kahden rock & roll -jättiläisen jälleennäkemisen, <b>Imelda May</b> ja <b>Darrel Higham</b>. Kyseessä on heidän ensimmäinen yhteiskonserttinsa 10 vuoteen ja tämä huomattava show tulee tapahtumaan Savoy-teatterissa.</p><p>Kun irlantilaissyntyinen laulaja ja lauluntekijä Imelda May ja brittiläinen rokkari Darrel Higham esiintyivät ensimmäisen kerran yhdessä 30 vuotta sitten, he aiheuttavat aikamoisen kohun ainulaatuisella soundillaan ja rockabilly-asenteellaan. Vertaansa vailla olevalla intohimolla ja intensiivisyydellä merkityt albumit, kuten ”Love Tattoo”, ”Mayhem” ja ”Tribal”, määrittivät uudelleen ihmisten näkemyksen genrestä. Ne eivät ainoastaan saaneet huomattavan määrän kriittistä tunnusta ja kaupallista menestystä, mutta keräsivät myös monen rock-tähden huomion. Tämä johti mielenkiintoisiin yhteisprojekteihin Jeff Beckin ja Jimmy Pagen kaltaisten artistien kanssa.</p><p>Kun unelma romahti 10 vuotta sitten, se yllätti kaikki. Mutta nyt Imelda ja Darrel ovat valmiita sytyttämään liekin uudelleen, joten varaudu aivan erityislaatuiseen iltaan Savoy-teatterissa. Tämä tulee olemaan erityislaatuinen ja ainutlaatuinen tapahtuma, joten älä missaa sitä. He tulevat esittämään yhteistyöaikojensa tunnuskappaleita kuin myös joitakin yllätyksiä.</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p>", "sv": "<p>Together again for the first time in 10 years!</p><p>Vi är stolta över att presentera denna unika konsert: återföreningen mellan två rock & roll-jättar, Imelda May och Darrel Higham. Det är fråga om deras första gemensamma konsert på 10 år, och denna anmärkningsvärda show kommer att gå av stapeln på Savoy-teatern.</p><p>När den irländska sångerskan och låtskrivaren Imelda May och den brittiska rockaren Darrel Higham för första gången uppträdde tillsammans för 30 år sedan väckte de stor uppståndelse med sitt unika sound och sin rockabilly-attityd. De oöverträffat passionerade och intensiva albumen “Love Tattoo”, “Mayhem” och “Tribal” omdefinierade människors uppfattning om genren. Utöver omfattande kritiskt erkännande och kommersiell framgång väckte de även uppmärksamhet bland många rockstjärnor. Detta ledde till intressanta samarbetsprojekt med artister såsom Jeff Beck och Jimmy Page.</p><p>När drömmen krossades för 10 år sedan kom det som en överraskning för alla. Men nu är Imelda och Darrel redo att tända lågan på nytt, så var beredda på en mycket unik kväll på Savoy-teatern. Detta kommer att bli något alldeles speciellt, ett unikt evenemang som bara kommer en gång, så missa det inte. Artisterna kommer att framföra välbekanta låtar från tiden för deras samarbete, och även några överraskningar.</p><p>Längd ca 2 h 15 min., inklusive paus</p><p>Parkett F18 servering av alkoholdrycker. Balkong T, ingen servering av alkoholdrycker.</p>", "en": "<p>Together again for the first time in 10 years!</p><p>We’re proud to present this unique concert: the reunion of two rock & roll giants, Imelda May and Darrel Higham. This will be their first joint concert in 10 years, and this remarkable show will take place at the Savoy Theatre.</p><p>When Irish-born singer and songwriter Imelda May and British rocker Darrel Higham first performed together 30 years ago, they caused quite a stir with their unique sound and rockabilly attitude. Their albums, marked with unparalleled passion and intensity, such as ‘Love Tattoo’, ‘Mayhem’, and ‘Tribal’, redefined the way people perceived the genre. Not only did they receive considerable critical acclaim and commercial success, but they also attracted the attention of many rock stars. This led to interesting collaborations with artists like Jeff Beck and Jimmy Page.</p><p>When the dream collapsed ten years ago, it surprised everyone. But now, Imelda and Darrel are ready to rekindle the spark, so be prepared for a truly special evening at the Savoy Theatre. This is sure to be something special, a once-in-a-lifetime event you won’t want to miss. They will perform the signature songs from their years of collaboration, as well as some surprises.</p><p>Duration approx. 2 h 15 min, including intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. The balcony is a non-licensed area without an age limit.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63627/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64299", "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: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": [], "info_url": { "fi": "https://www.lippu.fi/event/name-18533777", "sv": "https://www.lippu.fi/event/name-18533777", "en": "https://www.lippu.fi/event/name-18533777" }, "description": null, "price": { "fi": "30 € / 25 €", "sv": "30 € / 25 €", "en": "30 € / 25 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151908, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-26T07:14:25.994526Z", "last_modified_time": "2024-07-26T07:14:25.994542Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749161.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151908/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-26T07:14:25.960822Z", "last_modified_time": "2024-08-29T05:13:32.696703Z", "date_published": null, "start_time": "2024-10-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, "name": { "fi": "Arppa LOPPUUNMYYTY", "sv": "Arppa SLUTSÅLD", "en": "Arppa SOLD OUT" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Energisistä, improvisaatioon perustuvista keikoistaan tunnettu Arppa yhtyeineen on yksi tämänhetkisen Suomi-indien kärkinimistä. Arpan ihastuttava musiikki on ajatonta ja tekstit kuin liikkuvaa kuvaa. Nyt Arppa tuo konserttisalikiertueensa Kanneltaloon!", "sv": "Arppa och hans band är kända för sina energiska gigs som baserar sig på inspiration. Arppa är ett av toppnamnen i dagens indie i Finland. Arppas förtjusande musik är tidlös och texterna är som levande bilder. Nu kommer Arppa med sin konsertturné till Gamlasgården!", "en": "Arppa and his band are known for their high-energy concerts that are heavy on improvisation, and have become one of the top names of the current Finnish indie scene. Arppa’s enchanting music is timeless and his lyrics evoke the cinema. Now, Arppa is bringing his concert tour to Kanneltalo!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D729D9886BF5AEAEFF1A799398AF660D/Arppa_LOPPUUNMYYTY", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D729D9886BF5AEAEFF1A799398AF660D/Arppa_SLUTSALD", "en": "http://www.kanneltalo.fi/en/events/event/D729D9886BF5AEAEFF1A799398AF660D/Arppa_SOLD_OUT" }, "description": { "fi": "<p>Energisistä, improvisaatioon perustuvista keikoistaan tunnettu Arppa yhtyeineen on yksi tämänhetkisen Suomi-indien kärkinimistä. Arpan ihastuttava musiikki on ajatonta ja tekstit kuin liikkuvaa kuvaa. Nyt Arppa tuo konserttisalikiertueensa Kanneltaloon!</p><p>Arpan musiikissa oivaltavat, vilpittömät ja tarkkanäköisesti kuvatut tunnelmat liikkuvat Kokkolan Ykspihlajasta aina öisen Helsingin kautta Laila Kinnusen kanssa salakapakkaan heinäkuuhun ’58. Luontevan vaivaton olemus ja yhtyeen esiintymisistä huokuva vilpitön riemu ei voi olla tempaamatta mukaansa.</p><p>Arppa on saanut ympärilleen taitavat ja valovoimaiset muusikot, minkä ansiosta hänen tunnelmallisten tekstiensä ympärille on rakentunut kaunis ja eheä äänimaailma. Hänen yhtyeessään vaikuttavat muusikot Ville-Veikko Airaniemi, Eero Seppä ja Okko Saastamoinen.</p><p>Omakustanteisen debyyttialbuminsa <i>Laavalamppuja</i> elokuussa 2020 julkaissut artisti on kiivennyt vauhdikkaasti artistilupauksen maineesta maamme ajankohtaisimpien ja suosituimpien nimien joukkoon. Arppa julkaisi toisen albuminsa <i>Kinovalon alla</i> syyskuussa 2021. Albumin ensimmäisen painoksen LP:t myytiin loppuun kolmessa viikossa. Albumi vetosi niin yleisöön kuin kriitikoihinkin, ja singlet nousivat kaikki valtakunnalliseen radiosoittoon. Levynjulkaisua seurasi kiertue, jonka keikat olivat pitkälti loppuunmyytyjä useilla paikkakunnilla. Sama vuosi toi artistille neljä Emma-ehdokkuutta (Vuoden tulokas, Vuoden rock, Kriitikoiden valinta, Vuoden artisti -yleisöäänestys) sekä kolmannen sijan Soundin Vuoden 2021 Parhaat albumit -yleisöäänestyksessä. Kolmannen albuminsa <i>Valeria</b> Arppa yhtyeineen julkaisi maaliskuussa 2023.</p><p>Keikka on osa Arpan syksyn konserttisalikiertuetta.</p><p>Keikka on väliajallinen ja ikärajaton.</p>", "sv": "<p>Arppa och hans band är kända för sina energiska gigs som baserar sig på inspiration. Arppa är ett av toppnamnen i dagens indie i Finland. Arppas förtjusande musik är tidlös och texterna är som levande bilder. Nu kommer Arppa med sin konsertturné till Gamlasgården!</p><p>De insiktsfulla, uppriktiga och skarpsynt beskrivna stämningarna varierar mellan Yxpila i Karleby, det nattliga Helsingfors i Laila Kinnunens sällskap och en hemlig krog i juli 1958. Det naturligt lediga väsendet och bandets uppträdande som utstrålar uppriktig glädje rycker oemotståndligt med sig de närvarande.</p><p>Arppa har omgivit sig med skickliga och ljusstarka musiker, och därigenom byggt upp en vacker och sammanhängande ljudbild kring sina stämningsfulla texter. I bandet medverkar musikerna Ville-Veikko Airaniemi, Eero Seppä och Okko Saastamoinen.</p><p>Efter att ha släppt sitt egenutgivna debutalbum <i>Laavalamppuja</i> i augusti 2020 har artisten snabbt klättrat från ett artistlöfte till ett av de mest aktuella och populära namnen i landet. Arppa släppte sitt andra album <i>Kinovalon alla</i> i september 2021. LP-skivorna i den första utgåvan av albumet sålde slut på tre veckor. Albumet tilltalade både publiken och kritikerna, och alla singlarna uppnådde riksomfattande radiospelning. Albumsläppet följdes av en turné som var så gott som utsåld på flera orter. Samma år fick artisten fyra Emma-nomineringar (Årets nykomling, Årets rock, Kritikernas val, publikomröstningen Årets artist) och en tredjeplats i Soundis publikomröstning om årets bästa album 2021. Arppa och hans band släppte sitt tredje album <i>Valeria</b> i mars 2023.</p><p>Konserten är en del av Arppas höstkonsertturné.</p><p>Föreställningen har paus, och ingen åldersgräns.</p>", "en": "<p>Arppa and his band are known for their high-energy concerts that are heavy on improvisation, and have become one of the top names of the current Finnish indie scene. Arppa’s enchanting music is timeless and his lyrics evoke the cinema. Now, Arppa is bringing his concert tour to Kanneltalo!</p><p>Arppa’s insightful, sincere and laser-sharp depictions of atmospheres go from Ykspihlaja in Kokkola to night-time Helsinki and onward to a July ‘58 speakeasy with Laila Kinnunen. It is impossible to not get swept away by Arppa’s natural presence and the band’s palpable, sincere joy of performing.</p><p>Arppa has gathered a group of skilled, expressive musicians, who has allowed his atmospheric texts to be surrounded by a beautiful and harmonious soundscape. His band includes musicians Ville-Veikko Airaniemi, Eero Seppä and Okko Saastamoinen.</p><p>The artist, who released his self-published debut album Laavalamppuja in August 2020, has quickly cashed in the promise of new artist and become one of Finland’s most popular names. Arppa’s second album, Kinovalon alla, was released in September 2021. The LPs of the first edition of the album sold out in three weeks. The album was liked by both audiences and critics, and all of its singles all received airtime on national radio. The album was followed by a tour, the gigs of which were largely sold out in several locations. The same year saw the artist be nominated for four Emma awards (Rookie of the Year, Rock of the Year, Critics' Choice, Artist of the Year Audience Vote) as well as a third place in Soundi magazine’s Best Albums Audience Vote for 2021. Arppa and his band released their third album, Valeria, in March 2023.</p><p>The gig is part of Arppa's autumn concert tour.</p><p>There will be an intermission; no age limit.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64299/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64378", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152081, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-12T15:13:28.119573Z", "last_modified_time": "2024-08-12T15:13:28.119587Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751392.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152081/?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-08-12T15:13:28.090833Z", "last_modified_time": "2024-08-29T05:13:32.531457Z", "date_published": null, "start_time": "2024-10-12T08:00:00Z", "end_time": "2024-10-12T11: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, "name": { "fi": "Annantalon taidelauantai: Lasten kirja – Satumainen syysloma", "sv": "Annegårdens konstlördag: Barnets bok – Ett sagolikt höstlov", "en": "Annantalo Art Saturday: Children's Books – Fabulous autumn holiday" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Satumainen syysloma alkaa taidelauantaina 12.10. yhteisellä Lasten kirja -perhepajalla.", "sv": "Det sagolika höstlovet inleds 12.10. med den gemensamma familjeworkshoppen Barnets bok.", "en": "The fabulous autumn holiday begins on Art Saturday, 12 October, with a shared children's book family workshop." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/200EB00B7417EBAD3BC472492447307C/Annantalon_taidelauantai_Lasten_kirja", "sv": "http://www.annantalo.fi/sv/evenemang/event/200EB00B7417EBAD3BC472492447307C/Annegardens_konstlordag_Barnets_bok", "en": "http://www.annantalo.fi/en/events/event/200EB00B7417EBAD3BC472492447307C/Annantalo_Art_Saturday_Children_s_Books" }, "description": { "fi": "<p>Satumainen syysloma alkaa taidelauantaina 12.10. yhteisellä Lasten kirja -perhepajalla.</p><p>Tule tekemään Lasten kirjaa ja tutustumaan tulevan viikon työpajoihin <b>Minttu-Maaria Makkosen</b> ja <b>Milena Rinteen</b> johdolla. Vapaa pääsy!</p><p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.</p><p>Osallistumiseen ei tarvita ennakkotaitoja eikä täydellistä suomen kielen taitoa. Annantalon taidelauantai on maksuton.<br>Tarjolla kuulosuojaimia ja muita aistiapuvälineitä. Lisäksi käytössä on erillinen rauhallinen tila.</p><p>Tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Det sagolika höstlovet inleds 12.10. med den gemensamma familjeworkshoppen Barnets bok.</p><p>Kom och gör en barnbok och ta del av den kommande veckans workshoppar som leds av <b>Minttu-Maaria Makkonen</b> och <b>Milena Rinne</b>. Fritt inträde!</p><p>På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken. Vi erbjuder non-stop workshopverksamhet som är öppen för alla, där du kan titta in en stund eller stanna längre.</p><p>Inga förkunskaper och ingen anmälan krävs för att delta. Annegårdens konstlördag är avgiftsfri.<br>Workshopparnas språk varierar, men inga kunskaper i finska krävs för att delta. Hörselskydd och andra hjälpmedel finns tillgängliga för barn. Det finns också ett separat tyst utrymme.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>The fabulous autumn holiday begins on Art Saturday, 12 October, with a shared children's book family workshop.</p><p>Come and help create a Children's Book and explore the workshops of the coming week with Minttu-Maaria Makkonen and Milena Rinne. Admission is free!</p><p>At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer. The content of the workshops varies and will be announced on the Annantalo website.</p><p>No advance skills or registration is required to participate. The Annantalo Art Saturday is free of charge.<br>The language of the workshops varies, Finnish language skills are not required to participate. Hearing protection and other aids are available for children. In addition, there is a separate calm space.</p><p>A warm welcome to Annantalo on Saturday!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64378/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64248", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:613/?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:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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": [], "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-soiva-kivi-vuotalo-18900022/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-soiva-kivi-vuotalo-18900022/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-soiva-kivi-vuotalo-18900022/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151815, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-24T13:13:18.000003Z", "last_modified_time": "2024-07-24T13:13:18.000020Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749379.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151815/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-24T13:13:17.976998Z", "last_modified_time": "2024-08-29T05:13:32.360532Z", "date_published": null, "start_time": "2024-10-11T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Soiva Kivi – Juha Hurme – Aleksi Parviainen – Marie Körkkö", "sv": "Soiva Kivi – Juha Hurme – Aleksi Parviainen – Marie Körkkö", "en": "Soiva Kivi | Music and Stories about Kivi – Juha Hurme – Aleksi Parviainen – Marie Körkkö" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Finlandia-palkittu kirjailija ja teatteriohjaaja Juha Hurme, säveltäjä-laulaja Aleksi Parviainen ja pianotaiteilija Marie Körkkö yhdistävät voimansa ainutlaatuisessa, musiikkia ja tarinoita sisältävässä luentokonserttikokonaisuudessa Aleksis Kivestä.", "sv": "Den Finlandiabelönade författaren och teaterregissören Juha Hurme, kompositören och sångaren Aleksi Parviainen och pianisten Marie Körkkö förenar sina krafter i en unik helhet av föreläsning och konsert med musik och berättelser om Aleksis Kivi.", "en": "Finlandia Award-winning author and theatre director Juha Hurme, composer-singer Aleksi Parviainen and pianist Marie Körkkö join forces in a unique lecture concert with music and stories about Aleksis Kivi." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/156F84CB8576FD84024CBF66F0651D1D/Soiva_Kivi", "sv": "http://www.vuotalo.fi/sv/evenemang/event/156F84CB8576FD84024CBF66F0651D1D/Soiva_Kivi", "en": "http://www.vuotalo.fi/en/events/event/156F84CB8576FD84024CBF66F0651D1D/Soiva_Kivi_Music_and_Stories_about_Kivi" }, "description": { "fi": "<p>Finlandia-palkittu kirjailija ja teatteriohjaaja Juha Hurme, säveltäjä-laulaja Aleksi Parviainen ja pianotaiteilija Marie Körkkö yhdistävät voimansa ainutlaatuisessa, musiikkia ja tarinoita sisältävässä luentokonserttikokonaisuudessa Aleksis Kivestä.</p><p>”Sillä katso; suon sumusta, tulen loimusta kohoaa loitsu, tarina...”</p><p>Aleksis Kivi (1834–1872) oli valtavan tuottelias kirjailija, mutta kärsi koko elämänsä ajan myös vakavista mielenterveysongelmista. Kiven henkilökohtainen elämäntarina yhdessä hänen huikean inspiroivan kirjallisen tuotantonsa kanssa ovat toimineet alkusysäyksenä tämän ainutlaatuisen, tarinoista ja musiikista koostuvan esityksen syntyyn.</p><p>Esityksessä kuullaan Juha Hurmeen luennoinnin rinnalla kaksi kantaesitystä: Aleksi Parviaisen säveltämä säestyksetön laulusarja ”Steinklang”, jossa Parviainen tulkitsee Aleksis Kiven runoja modernilla runonlaulannallaan. Marie Körkön säveltämät soolopianokappaleet puolestaan ovat saaneet inspiraationsa Kiven näytelmästä Seitsemän veljestä.</p><p>Ohjelma huipentuu Parviaisen ja Körkön esittämään Einojuhani Rautavaaran harvoin kuultuun laulusarjaan ”Neljä laulua oopperasta Aleksis Kivi” (1996).</p><p>Esitys kunnioittaa kansalliskirjailijamme Aleksis Kiven elämäntyötä tämän 190-vuotispäivänä.</p><p>Soiva Kivi saa ensiesityksensä Kanneltalossa 10.10.2024, jolloin vietetään myös Maailman mielenterveyspäivää.</p><p>Esiintyjät:<br>Juha Hurme<br>Marie Körkkö<br>Aleksi Parviainen</p><p>Kesto: 1 t<br>Kieli: suomi<br>Liput 20 € / 15 €, Lippu.fi</p>", "sv": "<p>Den Finlandiabelönade författaren och teaterregissören Juha Hurme, kompositören och sångaren Aleksi Parviainen och pianisten Marie Körkkö förenar sina krafter i en unik helhet av föreläsning och konsert med musik och berättelser om Aleksis Kivi.</p><p>”Sillä katso; suon sumusta, tulen loimusta kohoaa loitsu, tarina...”</p><p>Aleksis Kivi (1834-1872) var en otroligt produktiv författare, men under hela sitt liv led han även av allvarliga psykiska problem. Kivis personliga livshistoria i kombination med hans häpnadsväckande inspirerande litterära produktion har fungerat som drivkraft för denna unika föreställning som består av berättelser och musik.</p><p>Utöver Juha Hurmes föreläsning får vi under föreställningen höra två uruppföranden: Den oackompanjerade sångserien \"Steinklang\" komponerad av Aleksi Parviainen, där Parviainen tolkar Aleksis Kivis dikter med sin moderna runosång. Solopianostycken som komponerats av Marie Körkkö och inspirerats av Kivis pjäs Sju bröder.</p><p>Programmet kulminerar i den sällan hörda sångserien av Einojuhani Rautavaara “Fyra sånger ur operan Aleksis Kivi” (1996), som framförs av Parviainen och Körkkö.</p><p>Föreställningen är en hyllning till vår nationalförfattare Aleksis Kivis livsverk på 190-årsdagen av hans födelse.</p><p>Soiva Kivi har premiär i Gamlasgården 10.10.2024, vilket sammanfaller med Världsdagen för psykisk hälsa.</p><p>Medverkande:<br>Juha Hurme<br>Marie Körkkö<br>Aleksi Parviainen</p><p>Språk: Finska</p>", "en": "<p>Finlandia Award-winning author and theatre director Juha Hurme, composer-singer Aleksi Parviainen and pianist Marie Körkkö join forces in a unique lecture concert with music and stories about Aleksis Kivi.</p><p>\"Behold; out of the mist of the swamp, out of the blazing fire rises a spell, a story...\"</p><p>Aleksis Kivi (1834–1872) was a hugely prolific writer, who also suffered from serious mental health problems for all his life. Kivi's personal life story, together with his stunningly inspiring literary production, have served as a catalyst for the creation of this unique performance of stories and music.</p><p>In addition to Juha Hurme's lecture, the presentation includes two premieres: Unaccompanied song series \"Steinklang\", composed by Aleksi Parviainen, who interprets Aleksis Kivi’s with his modern poem singing. The solo piano pieces composed by Marie Körkkö are inspired by Kivi's play The Brothers Seven.</p><p>The programme culminates in Einojuhani Rautavaara's rarely heard suite of songs, \"Four Songs from the Opera Aleksis Kivi\" (1996), performed by Parviainen and Körkkö.</p><p>The performance pays tribute to the life's work of Finland’s national author, Aleksis Kivi, on what would be his 190th birthday.</p><p>Music and Stories about Kivi will have its first performance in Kanneltalo on 10 October 2024, which is also the World Mental Health Day.</p><p>Performers:<br>Juha Hurme<br>Marie Körkkö<br>Aleksi Parviainen</p><p>Language: Finnish</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64248/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63763", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@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": [], "info_url": { "fi": "https://www.lippu.fi/event/fat-chance-10-vuotta-juhlakonsertti-malmitalo-18621893/", "sv": "https://www.lippu.fi/event/fat-chance-10-vuotta-juhlakonsertti-malmitalo-18621893/", "en": "https://www.lippu.fi/event/fat-chance-10-vuotta-juhlakonsertti-malmitalo-18621893/" }, "description": null, "price": { "fi": "22,50 € / 17,50 €", "sv": "22,50 € / 17,50 €", "en": "22,50 € / 17,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151864, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T14:14:05.524646Z", "last_modified_time": "2024-07-25T14:14:05.524668Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752500.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151864/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-25T14:14:05.495722Z", "last_modified_time": "2024-08-29T05:13:30.568693Z", "date_published": null, "start_time": "2024-10-04T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Fat Chance 10 vuotta -juhlakonsertti", "sv": "Fat Chance 10-årsjubileumskonsert", "en": "Fat Chance 10th Anniversary Concert" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kymmenvuotisjuhliaan viettävän Fat Chance -yhtyeen albumi Second Chance valittiin suomalaisen Blues News -lehden kriitikoiden vuoden 2023 parhaaksi kotimaiseksi roots-julkaisuksi (jaettu ykköstila).", "sv": "Det tioåriga Fat Chance-bandets album Second Chance valdes till det bästa finländska roots-albumet 2023 (delad förstaplats) av kritikerna i tidningen Finnish Blues News.", "en": "Fat Chance's album Second Chance, which celebrates the band’s tenth anniversary, was selected as the best Finnish roots release of the year 2023 by the critics of Finnish Blues News magazine (shared first space)." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9A2455F62037E8F9936BCB6FCBDD0F73/Fat_Chance_10_vuotta_-juhlakonsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9A2455F62037E8F9936BCB6FCBDD0F73/Fat_Chance_10-arsjubileumskonsert", "en": "http://www.malmitalo.fi/en/events/event/9A2455F62037E8F9936BCB6FCBDD0F73/Fat_Chance_10th_Anniversary_Concert" }, "description": { "fi": "<p>Kymmenvuotisjuhliaan viettävän Fat Chance -yhtyeen albumi Second Chance valittiin suomalaisen Blues News -lehden kriitikoiden vuoden 2023 parhaaksi kotimaiseksi roots-julkaisuksi (jaettu ykköstila).</p>", "sv": "<p>Det tioåriga Fat Chance-bandets album Second Chance valdes till det bästa finländska roots-albumet 2023 (delad förstaplats) av kritikerna i tidningen Finnish Blues News.</p>", "en": "<p>Fat Chance's album Second Chance, which celebrates the band’s tenth anniversary, was selected as the best Finnish roots release of the year 2023 by the critics of Finnish Blues News magazine (shared first space).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63763/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63515", "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: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: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:p4354/?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": [], "info_url": { "fi": "https://www.lippu.fi/artist/routacompany/", "sv": "https://www.lippu.fi/artist/routacompany/", "en": "https://www.lippu.fi/artist/routacompany/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151983, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-30T14:13:54.803667Z", "last_modified_time": "2024-07-30T14:13:54.803681Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751189.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151983/?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-30T14:13:54.790279Z", "last_modified_time": "2024-08-29T05:13:29.140545Z", "date_published": null, "start_time": "2024-09-28T11: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, "name": { "fi": "Routa Company: MUR – Esitys tuulesta, metsästä ja ystävyydestä", "sv": "Routa Company: MUR – En föreställning om vind, skog och vänskap", "en": "Routa Company: MUR – A show about the wind, forests, and friendship" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "MUR kertoo pienestä Mur-karhusta, joka ei aina tunne itseään kovinkaan karhuksi.", "sv": "MUR handlar om en liten björn som heter Mur, som inte alltid känner sig som en riktig björn.", "en": "MUR is about a baby bear, Mur, who doesn't always feel like a bear." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/11559D4B271F6CFF9B605BFFDD2713E7/Routa_Company_MUR", "sv": "http://www.annantalo.fi/sv/evenemang/event/11559D4B271F6CFF9B605BFFDD2713E7/Routa_Company_MUR", "en": "http://www.annantalo.fi/en/events/event/11559D4B271F6CFF9B605BFFDD2713E7/Routa_Company_MUR" }, "description": { "fi": "<p>MUR kertoo pienestä Mur-karhusta, joka ei aina tunne itseään kovinkaan karhuksi.</p><p>Routa Companyn esityksessä Mur kohtaa hakkuuaukean ja Toisen – karhun, joka on melkein kuin Mur itse, samankokoinen ja yhtä utelias. Mutta metsä on muuttunut, ja siellä puhaltaa uudenlainen tuuli.</p><p>MUR-esitys käsittelee lapsentasoisesti metsien nykytilaa. Metsä on eläinten koti, mutta mitä tapahtuu, jos metsää ei enää ole? Tarina ja tanssi yhtyvät saumattomaksi kokonaisuudeksi, joka saa pienen ja ison katsojan pysähtymään. Ihmettelemistä riittää koko metsän täydeltä.</p><p>MUR pohjautuu kirjailija Kaisa Happosen ja kuvittaja Anne Vaskon Mur-kirjasarjaan ja erityisesti sen viimeisimpään osaan Mur ja mitä tuuli toi. Mur-lastenkirjasarja on lumonnut lukijoita ulkomaita myöten, kirjasarjan ensimmäistä osaa on käännetty jo yli 20 kielelle. Mur-karhun maailmaan pääsee tutustumaan Anne Vaskon kirjakuvitusnäyttelyssä Annantalon kahvilassa.</p><p>”Tämä ei ole metsä, mutta me olemme silti karhuja. Metsän pitäisi olla siellä, missä me olemme.”</p><p>Kesto: 35min<br>Ikäsuositus: 2+<br>Kieli: suomi</p><p>Lauantain esitykset on suunnattu perheille, liput 6 € | Lippu.fi</p><p>Koreografia ja ohjaus: Sari Palmgren<br>Tanssijat: Maria Autio ja Johannes Purovaara<br>Alkuperäisteos: Anne Vasko ja Kaisa Happonen<br>Pukusuunnittelu: Iida Ukkola<br>Tila- ja valosuunnittelu: Raisa Kilpeläinen <br>Äänisuunnittelu ja sävellys: Pekko Käppi<br>Laulut: Pekko Käppi, Ringa Manner ja Olavi Uusivirta (Iltalaulu)<br>Laulujen sanat: Kaisa Happonen<br>Mur-kuvat: Anne Vasko<br>Tuotanto: Routa Company / Miia Kauppinen</p>", "sv": "<p>MUR handlar om en liten björn som heter Mur, som inte alltid känner sig som en riktig björn.</p><p>I Routa Companys föreställning stöter Mur på en avverkningsglänta och den Andre – en björn som är nästan som Mur själv, lika stor och lika nyfiken. Men skogen har förändrats och en ny slags vind blåser.</p><p>MUR-föreställningen handlar om skogarnas aktuella läge på barnets nivå. Skogen är djurens hem, men vad händer om skogen försvinner? Berättelsen och dansen smälter samman till en sömlös helhet, som får både unga och gamla att stanna upp och tänka till. Det finns en hel skog av saker att fundera över.</p><p>MUR är baserad på bokserien Mur av författaren Kaisa Happonen och illustratören Anne Vasko, särskilt den senaste delen Mur ja mitä tuuli toi. Barnboksserien Mur har även fängslat läsare utomlands, och den första delen av serien har redan översatts till över 20 språk. Bekanta dig med Mur-björnens värld på Anne Vaskos bokillustrationsutställning i Annegårdens café.</p><p>\"Det här är ingen skog, men vi är ändå björnar. Skogen borde vara där vi är.\"</p><p>Längd: 35 minuter<br>Åldersrekommendation: 2+<br>Språk: finska</p><p>Lördagens föreställningar är avsedda för familjer, biljetter 6 € | Lippu.fi</p><p>Koreografi och regi: Sari Palmgren<br>Dansare: Maria Autio och Johannes Purovaara<br>Originalverk: Anne Vasko och Kaisa Happonen<br>Kostymdesign: Iida Ukkola<br>Utrymmes- och ljusdesign: Raisa Kilpeläinen <br>Ljuddesign och komposition: Pekko Käppi<br>Sånger: Pekko Käppi, Ringa Manner och Olavi Uusivirta (Iltalaulu)<br>Sångtexter: Kaisa Happonen<br>Mur-bilder: Anne Vasko<br>Produktion: Routa Company / Miia Kauppinen</p>", "en": "<p>MUR is about a baby bear, Mur, who doesn't always feel like a bear.</p><p>In this Routa Company show, Mur encounters a logging clearing and the Other – a bear that is almost like Mur himself, of the same size and equally curious. But the forest has changed, and a new wind is blowing.</p><p>The MUR show deals with the current state of the forests at a childish level. The forest is the home of the animals, but what happens if the forest no longer exists? The story and dance merge into a seamless package that makes both small and big viewers stop and think. There is a whole forest to think about.</p><p>MUR is based on the Mur book series by author Kaisa Happonen and illustrator Anne Vasko, and especially its latest instalment, Mur and the Wind. The Mur series of children’s books has enchanted readers abroad, the first part of the book series has already been translated into more than 20 languages. You can explore the world of Mur the Bear in Anne Vasko's book illustration exhibition at the Annantalo café.</p><p>“This is not a forest, but we are still bears. The forest should be where we are.”</p><p>Duration: 35 mins.<br>Age recommendation: 2+<br>Language: Finnish</p><p>Saturday shows are aimed at families, tickets €6 | Lippu.fi</p><p>Choreography and direction: Sari Palmgren<br>Dancers: Maria Autio and Johannes Purovaara<br>Original work: Anne Vasko and Kaisa Happonen<br>Costume design: Iida Ukkola<br>Stage and lighting design: Raisa Kilpeläinen <br>Sound design and composition: Pekko Käppi<br>Songs: Pekko Käppi, Ringa Manner and Olavi Uusivirta (Iltalaulu)<br>Song lyrics: Kaisa Happonen<br>Images of Mur: Anne Vasko<br>Production: Routa Company / Miia Kauppinen</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63515/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63516", "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: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: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:p4354/?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": [], "info_url": { "fi": "https://www.lippu.fi/artist/routacompany/", "sv": "https://www.lippu.fi/artist/routacompany/", "en": "https://www.lippu.fi/artist/routacompany/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151982, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-30T14:13:54.716795Z", "last_modified_time": "2024-07-30T14:13:54.716809Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751190.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151982/?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-30T14:13:54.703205Z", "last_modified_time": "2024-08-29T05:13:29.082866Z", "date_published": null, "start_time": "2024-09-28T09: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, "name": { "fi": "Routa Company: MUR – Esitys tuulesta, metsästä ja ystävyydestä", "sv": "Routa Company: MUR – En föreställning om vind, skog och vänskap", "en": "Routa Company: MUR – A show about the wind, forests, and friendship" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "MUR kertoo pienestä Mur-karhusta, joka ei aina tunne itseään kovinkaan karhuksi.", "sv": "MUR handlar om en liten björn som heter Mur, som inte alltid känner sig som en riktig björn.", "en": "MUR is about a baby bear, Mur, who doesn't always feel like a bear." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/46CFA15C66293E5AD9762E1E34CA73B8/Routa_Company_MUR", "sv": "http://www.annantalo.fi/sv/evenemang/event/46CFA15C66293E5AD9762E1E34CA73B8/Routa_Company_MUR", "en": "http://www.annantalo.fi/en/events/event/46CFA15C66293E5AD9762E1E34CA73B8/Routa_Company_MUR" }, "description": { "fi": "<p>MUR kertoo pienestä Mur-karhusta, joka ei aina tunne itseään kovinkaan karhuksi.</p><p>Routa Companyn esityksessä Mur kohtaa hakkuuaukean ja Toisen – karhun, joka on melkein kuin Mur itse, samankokoinen ja yhtä utelias. Mutta metsä on muuttunut, ja siellä puhaltaa uudenlainen tuuli.</p><p>MUR-esitys käsittelee lapsentasoisesti metsien nykytilaa. Metsä on eläinten koti, mutta mitä tapahtuu, jos metsää ei enää ole? Tarina ja tanssi yhtyvät saumattomaksi kokonaisuudeksi, joka saa pienen ja ison katsojan pysähtymään. Ihmettelemistä riittää koko metsän täydeltä.</p><p>MUR pohjautuu kirjailija Kaisa Happosen ja kuvittaja Anne Vaskon Mur-kirjasarjaan ja erityisesti sen viimeisimpään osaan Mur ja mitä tuuli toi. Mur-lastenkirjasarja on lumonnut lukijoita ulkomaita myöten, kirjasarjan ensimmäistä osaa on käännetty jo yli 20 kielelle. Mur-karhun maailmaan pääsee tutustumaan Anne Vaskon kirjakuvitusnäyttelyssä Annantalon kahvilassa.</p><p>”Tämä ei ole metsä, mutta me olemme silti karhuja. Metsän pitäisi olla siellä, missä me olemme.”</p><p>Kesto: 35min<br>Ikäsuositus: 2+<br>Kieli: suomi</p><p>Lauantain esitykset on suunnattu perheille, liput 6 € | Lippu.fi</p><p>Koreografia ja ohjaus: Sari Palmgren<br>Tanssijat: Maria Autio ja Johannes Purovaara<br>Alkuperäisteos: Anne Vasko ja Kaisa Happonen<br>Pukusuunnittelu: Iida Ukkola<br>Tila- ja valosuunnittelu: Raisa Kilpeläinen <br>Äänisuunnittelu ja sävellys: Pekko Käppi<br>Laulut: Pekko Käppi, Ringa Manner ja Olavi Uusivirta (Iltalaulu)<br>Laulujen sanat: Kaisa Happonen<br>Mur-kuvat: Anne Vasko<br>Tuotanto: Routa Company / Miia Kauppinen</p>", "sv": "<p>MUR handlar om en liten björn som heter Mur, som inte alltid känner sig som en riktig björn.</p><p>I Routa Companys föreställning stöter Mur på en avverkningsglänta och den Andre – en björn som är nästan som Mur själv, lika stor och lika nyfiken. Men skogen har förändrats och en ny slags vind blåser.</p><p>MUR-föreställningen handlar om skogarnas aktuella läge på barnets nivå. Skogen är djurens hem, men vad händer om skogen försvinner? Berättelsen och dansen smälter samman till en sömlös helhet, som får både unga och gamla att stanna upp och tänka till. Det finns en hel skog av saker att fundera över.</p><p>MUR är baserad på bokserien Mur av författaren Kaisa Happonen och illustratören Anne Vasko, särskilt den senaste delen Mur ja mitä tuuli toi. Barnboksserien Mur har även fängslat läsare utomlands, och den första delen av serien har redan översatts till över 20 språk. Bekanta dig med Mur-björnens värld på Anne Vaskos bokillustrationsutställning i Annegårdens café.</p><p>\"Det här är ingen skog, men vi är ändå björnar. Skogen borde vara där vi är.\"</p><p>Längd: 35 minuter<br>Åldersrekommendation: 2+<br>Språk: finska</p><p>Lördagens föreställningar är avsedda för familjer, biljetter 6 € | Lippu.fi</p><p>Koreografi och regi: Sari Palmgren<br>Dansare: Maria Autio och Johannes Purovaara<br>Originalverk: Anne Vasko och Kaisa Happonen<br>Kostymdesign: Iida Ukkola<br>Utrymmes- och ljusdesign: Raisa Kilpeläinen <br>Ljuddesign och komposition: Pekko Käppi<br>Sånger: Pekko Käppi, Ringa Manner och Olavi Uusivirta (Iltalaulu)<br>Sångtexter: Kaisa Happonen<br>Mur-bilder: Anne Vasko<br>Produktion: Routa Company / Miia Kauppinen</p>", "en": "<p>MUR is about a baby bear, Mur, who doesn't always feel like a bear.</p><p>In this Routa Company show, Mur encounters a logging clearing and the Other – a bear that is almost like Mur himself, of the same size and equally curious. But the forest has changed, and a new wind is blowing.</p><p>The MUR show deals with the current state of the forests at a childish level. The forest is the home of the animals, but what happens if the forest no longer exists? The story and dance merge into a seamless package that makes both small and big viewers stop and think. There is a whole forest to think about.</p><p>MUR is based on the Mur book series by author Kaisa Happonen and illustrator Anne Vasko, and especially its latest instalment, Mur and the Wind. The Mur series of children’s books has enchanted readers abroad, the first part of the book series has already been translated into more than 20 languages. You can explore the world of Mur the Bear in Anne Vasko's book illustration exhibition at the Annantalo café.</p><p>“This is not a forest, but we are still bears. The forest should be where we are.”</p><p>Duration: 35 mins.<br>Age recommendation: 2+<br>Language: Finnish</p><p>Saturday shows are aimed at families, tickets €6 | Lippu.fi</p><p>Choreography and direction: Sari Palmgren<br>Dancers: Maria Autio and Johannes Purovaara<br>Original work: Anne Vasko and Kaisa Happonen<br>Costume design: Iida Ukkola<br>Stage and lighting design: Raisa Kilpeläinen <br>Sound design and composition: Pekko Käppi<br>Songs: Pekko Käppi, Ringa Manner and Olavi Uusivirta (Iltalaulu)<br>Song lyrics: Kaisa Happonen<br>Images of Mur: Anne Vasko<br>Production: Routa Company / Miia Kauppinen</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63516/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64215", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:669/?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: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:p39924/?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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151778, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T12:13:02.337217Z", "last_modified_time": "2024-07-22T12:13:02.337232Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751333.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151778/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T12:13:02.320333Z", "last_modified_time": "2024-08-29T05:13:29.015579Z", "date_published": null, "start_time": "2024-09-28T08:00:00Z", "end_time": "2024-09-28T15: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, "name": { "fi": "Kolibri-festivaali", "sv": "Kolibri Festivalen", "en": "Kolibri Festival" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Taiteellinen, monikulttuurinen, ilmainen ja ainutlaatuinen festivaali lapsille ja perheille.", "sv": "Kolibrí Festivalen är en konstnärlig, mångkulturell, avgiftsfri och unik barnfestival för hela familjen.", "en": "A unique multicultural, multilingual, free and open art festival for children and their families." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/ACC70827A71F4DBE07016DDFAA9F7C21/Kolibri-festivaali", "sv": "http://www.vuotalo.fi/sv/evenemang/event/ACC70827A71F4DBE07016DDFAA9F7C21/Kolibri_Festivalen", "en": "http://www.vuotalo.fi/en/events/event/ACC70827A71F4DBE07016DDFAA9F7C21/Kolibri_Festival" }, "description": { "fi": "<p>Taiteellinen, monikulttuurinen, ilmainen ja ainutlaatuinen festivaali lapsille ja perheille.</p><p>Kolibri-festivaali on palannut Vuotaloon! Perinteinen monikulttuurinen, monikielinen, ilmainen ja avoin taidefestivaali on täynnä toimintaa lapsille ja heidän perheilleen.</p><p>Älä missaa hauskaa päivää, jonka ohjelmassa on teatteria, tanssia, musiikkia, esityksiä, kirjallisuutta ja työpajoja, joista nauttii koko perhe.</p><p>Vapaa pääsy!<br>Järj. Ninho ry yhteistyössä Vuotalon kanssa.</p><p>Koko ohjelma 14.8. alkaen: <u><a href=\"https://www.kolibrifestivaali.org/\">Kolibrifestivaali.org</a></u></p>", "sv": "<p>Kolibrí Festivalen är en konstnärlig, mångkulturell, avgiftsfri och unik barnfestival för hela familjen.</p><p>Kolibrí Festival är tillbaka på Vuotalo! Den traditionella mångkulturella, flerspråkiga, fria och öppna konstfestivalen är fullspäckad med aktiviteter för barn och deras familjer.</p><p>Missa inte denna roliga dag med teater, dans, musik, föreställningar, litteratur och alla typer av workshops att njuta av med dina små.</p><p>Fri entré<br>Arr. Ninho rf i samarbete med Nordhuset.</p><p>Program: <u><a href=\"https://www.kolibrifestivaali.org/\">Kolibrifestivaali.org</a></u></p>", "en": "<p>A unique multicultural, multilingual, free and open art festival for children and their families.</p><p>Kolibrí Festival is back at Vuotalo to celebrate Kaleidoscope, its 13th edition. The traditional multicultural, multilingual, free and open art festival is hosting this year’s last Family Day, packed with activities for children and their families.</p><p>Don’t miss this fun day featuring theater, dance, music, performances, literature and all kinds of workshops to enjoy with your little ones.</p><p>Free entrance!</p><p>Full program available from 14.8.2024 at <u><a href=\"https://www.kolibrifestivaali.org/\">Kolibrifestivaali.org</a></u></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64215/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63755", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/a-la-malmi-lyyti-malmitalo-18621644/", "sv": "https://www.lippu.fi/event/a-la-malmi-lyyti-malmitalo-18621644/", "en": "https://www.lippu.fi/event/a-la-malmi-lyyti-malmitalo-18621644/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151451, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-13T11:13:46.181187Z", "last_modified_time": "2024-06-13T11:13:46.181213Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752464.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151451/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-13T11:13:46.152697Z", "last_modified_time": "2024-08-29T05:13:28.893336Z", "date_published": null, "start_time": "2024-09-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lyyti – A la Malmi", "sv": "Lyyti – A la Malmi", "en": "Lyyti – A la Malmi" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lyytin keikoilla niin riemukkaat kuin kipeätkin tunteet eletään yhdessä läpi itkun, naurun, tanssin ja yhteislaulun kautta.", "sv": "På Lyytis spelningar genomlever vi både sprudlande och smärtsamma känslor tillsammans genom gråt, skratt, dans och allsång.", "en": "At Lyyti's gigs, both joyful and painful emotions are experienced together through crying, laughter, dancing and singing together." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0C9ED76D7AC6E8BC2BDF2173A63CCA98/Lyyti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0C9ED76D7AC6E8BC2BDF2173A63CCA98/Lyyti", "en": "http://www.malmitalo.fi/en/events/event/0C9ED76D7AC6E8BC2BDF2173A63CCA98/Lyyti" }, "description": { "fi": "<p>Lyytin keikoilla niin riemukkaat kuin kipeätkin tunteet eletään yhdessä läpi itkun, naurun, tanssin ja yhteislaulun kautta.</p><p>Kolme albumia julkaissut Lyyti on viime vuosina hurmannut yleisöjä ympäri Suomen häikäisevän yhtyeensä kanssa. Lyyti tunnetaan monen ikäisiä koskettavista kappaleistaan sekä eläväisestä esiintymisestään, joka herättää laulujen tarinat henkiin.</p><p>Lyytin musiikissa puhuttelevat tekstit yhdistyvät loisteliaaseen soittoon ja tuotantoon. Palkitut kappaleet kuten ”Mihin voi soittaa?” ja ”Ennätyshelteet” ovat nousseet kuvaamaan nuoren sukupolven kokemusta epävarmaan maailmantilanteeseen kasvamisesta. Silti toivon löytäminen, vaikka pohjamutaan uponneista siemenistä, on Lyytin musiikin pohjimmainen sanoma.</p><p>Lyytin kiitetty kolmas albumi Nousussa taas on lumoava matka pohjalta kohti valoa. Albumi keräsi kolme Emma-ehdokkuutta, ja Ennätyshelteet-kappaleelle myönnettiin Juha Vainio -seuran ”Vuoden sanoitus” -palkinto.</p><p>”Harvoinpa sitä pääsee todistamaan konserttia, jota seuraa täysin haltioituneena, ihmeissään ja täynnä onnea.” Helsingin Sanomat 17.10.2021</p><p>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoille parhaat itsenäisen musiikin tekijät. Laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa.</p><p>Kesto 1 t 15 min</p>", "sv": "<p>På Lyytis spelningar genomlever vi både sprudlande och smärtsamma känslor tillsammans genom gråt, skratt, dans och allsång.</p><p>Lyyti har gett ut tre album under de senaste åren, och har med sitt bländande band charmat publiker över hela Finland. Lyyti är känd för sina sånger som berör människor i olika åldrar och sitt livfulla framträdande som väcker sångernas berättelser till liv.</p><p>Lyytis musik kombinerar stämningsfulla texter med briljant spel och produktion. Prisbelönta låtar såsom ”Mihin voi soittaa?” och ”Ennätyshelteet” har vuxit fram för att beskriva den unga generationens upplevelse av att växa upp i en osäker världssituation. Att finna hopp är dock det centrala budskapet i Lyytis musik, även om man måste dyka ner till bottnen för att finna dess frön.</p><p>Lyytis hyllade tredje album Nousu är däremot en förtrollande resa från bottnen mot ljuset. Albumet fick tre Emmanomineringar och låten Ennätyshelteet belönades med Juha Vainio-sällskapets pris för årets text.</p><p>“Det är sällsynt att bevittna en konsert och bli helt överväldigad, förbluffad och full av lycka.” Helsingin Sanomat 17.10.2021</p>", "en": "<p>At Lyyti's gigs, both joyful and painful emotions are experienced together through crying, laughter, dancing and singing together.</p><p>Lyyti, who has released three albums, has in recent years charmed audiences all over Finland with their dazzling band. Lyyti is known for songs that resonate with people of all ages, as well as lively performances that brings the stories of the songs to life.</p><p>The touching lyrics Lyyti's music are combined with impeccable musicianship and production. Award-winning songs, such as “Mihin voi soittaa?” and “Ennätyshelteet” have emerged to describe a young generation's experience of growing up in an uncertain world. Still, finding hope, even from seeds sowed in mud, is the fundamental message of Lyyti's music.</p><p>On the other hand, Lyyti's acclaimed third album, Nousussa, is an enchanting journey from the bottom towards the light. The album received three Emma nominations, and the \"Ennätyshelteet\" single was awarded the Juha Vainio Society's \"Lyrics of the Year\" award.</p><p>“Rarely do you get to witness a concert that you can be completely enchanted and amazed by, that fills you with happiness.” Helsingin Sanomat 17 October 2021</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63755/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63735", "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": [], "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" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151640, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T14:13:20.385697Z", "last_modified_time": "2024-07-03T14:13:20.385712Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752369.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151640/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-03T14:13:20.363084Z", "last_modified_time": "2024-08-29T05:13:27.182388Z", "date_published": null, "start_time": "2024-09-21T15: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, "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" }, "location_extra_info": null, "provider": null, "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." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/407EB35BF36597194B05A3DBD6DE9947/Pavel_Semchenko_50_Tanssikollektiivi_222_Wrong_Movements", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/407EB35BF36597194B05A3DBD6DE9947/Pavel_Semchenko_Danskollektivet_50_222_Wrong_Movements", "en": "http://www.kanneltalo.fi/en/events/event/407EB35BF36597194B05A3DBD6DE9947/Pavel_Semchenko_50_Dance_Collective_222_Wrong_Movements" }, "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>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63735/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64209", "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": [], "info_url": { "fi": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-premiaer-foer-a77e-3712788/", "sv": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-premiaer-foer-a77e-3712788/", "en": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-premiaer-foer-a77e-3712788/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151770, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T11:13:06.374300Z", "last_modified_time": "2024-07-22T11:13:06.374315Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745241.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151770/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T11:13:06.356370Z", "last_modified_time": "2024-08-29T05:13:27.119113Z", "date_published": null, "start_time": "2024-09-21T15: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, "name": { "fi": "A77E:n ensi-ilta – Klubb Ankdamm", "sv": "Premiär för A77E – Klubb Ankdamm:", "en": "First Night with A77E – Klubb Ankdamm:" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa Vuotalon konserttisaliin, kun A77E esiintyy ensimmäistä kertaa upean yhtyeen kanssa. Koe taianomainen ilta A77E:n ja muiden taitavien soittajien musiikin parissa!", "sv": "Välkommen till Nordhusets konserthall när A77E för första gången intar scenen med en fantastisk ensemble. Upplev en Natt av Musikalisk Magi med A77E och fantastiska musiker!", "en": "Welcome to Nordhuset’s concert hall as A77E takes the stage for the very first time with an amazing ensemble. Experience a Night of Musical Magic with A77E and amazing musicians!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/58FCAC2F92EB7253C40E8AFB46FE283B/_A77E_n_ensi-ilta", "sv": "http://www.vuotalo.fi/sv/evenemang/event/58FCAC2F92EB7253C40E8AFB46FE283B/_Premiar_for_A77E", "en": "http://www.vuotalo.fi/en/events/event/58FCAC2F92EB7253C40E8AFB46FE283B/First_Night_with_A77E" }, "description": { "fi": "<p>Tervetuloa Vuotalon konserttisaliin, kun A77E esiintyy ensimmäistä kertaa upean yhtyeen kanssa. Koe taianomainen ilta A77E:n ja muiden taitavien soittajien musiikin parissa!</p><p>A77E on muusikko/näyttelijä Andreas af Enehielmin sooloprojekti, joka on hitaasti muotoutunut ja kasvanut vuosien varrella. Se on herättänyt kiinnostusta ja uteliaisuutta singleillä “Här och Nu,” “Adjö,” ja “L1V3.” Verrattuna legendaarisiin bändeihin kuten Kent ja Dungen, A77E tarjoaa ruotsalaista pop/rockia vahvoilla melodioilla ja rullaavilla rytmeillä, jotka vievät sinut takaisin 90-luvulle modernilla twistillä.<br>Upea yhtye koostuu Ville Luukkosesta rummuissa, pianovirtuooseista Aki Rissanen ja Arto Ikävalko, saksofonisti Ukko Heinonen, kitaristi Ville Tanttu, basisti Theo af Enehielm ja laulaja Jessica Lundström.</p><p>Klubi-ilta, tarjoiluista vastaa Café Pokkari.<br>Kesto: n. 120 min. sis. väliaika. <br>Kieli: ruotsi. <br>Liput: 20 € / 15 €, Lippu.fi ja lippuautomaatilta ovella. <br>Järj. A77E yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Välkommen till Nordhusets konserthall när A77E för första gången intar scenen med en fantastisk ensemble. Upplev en Natt av Musikalisk Magi med A77E och fantastiska musiker!</p><p>A77E är musikern/skådespelaren Andreas af Enehielms soloprojekt som har formats och vuxit fram under många år. Det har väckt intresse och nyfikenhet med singlarna ”Här och Nu,” ”Adjö,” och ”L1V3.” Med jämförelser till legendariska band som Kent och Dungen, erbjuder A77E svensk pop/rock med starka melodier och rullande rytmer som tar dig tillbaka till 90-talet med en modern twist.<br>Den enastående ensemblen består av Ville Luukkonen på trummor, pianovirtuoserna Aki Rissanen och Arto Ikävalko, saxofonisten Ukko Heinonen, gitarristen Ville Tanttu, basisten Theo af Enehielm och sång av Jessica Lundström.</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari. <br>Längd: ca 120 min. inkl. paus. <br>Språk: svenska. <br>Biljetter: 20 € / 15 € via Lippu.fi eller från biljettautomaten vid dörren. <br>Arr: A77E i samarbete med Nordhuset.</p>", "en": "<p>Welcome to Nordhuset’s concert hall as A77E takes the stage for the very first time with an amazing ensemble. Experience a Night of Musical Magic with A77E and amazing musicians!</p><p>A77E is musician/actor Andreas af Enehielm’s solo project that has been slowly forming and growing over many years. It has aroused interest and curiosity with the singles “Här och Nu,” “Adjö,” and “L1V3.” Drawing comparisons to legendary bands such as Kent and Dungen, A77E offers Swedish pop/rock with strong melodies and rolling rhythms that take you back to the 90s with a modern twist.<br>The outstanding ensemble features Ville Luukkonen on drums, pianist virtuosos Aki Rissanen and Arto Ikävalko, saxophonist Ukko Heinonen, guitarist Ville Tanttu, bassist Theo af Enehielm, and vocals by Jessica Lundström. An evening filled with musical excellence and emotional richness is guaranteed.</p><p>Club night, A class alcohol serving rights, catering by Café Pokkari. <br>Duration: approx. 120 min. incl. break. <br>Language: Swedish. <br>Tickets: €20 / €15 via Lippu.fi or from the ticket machine at the door. <br>Arranged by: A77E in collaboration with Nordhuset.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64209/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64440", "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:350/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-115/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152202, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-23T12:13:25.687674Z", "last_modified_time": "2024-08-23T12:13:25.687689Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757173.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152202/?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-08-23T12:13:25.677730Z", "last_modified_time": "2024-08-29T05:13:26.901328Z", "date_published": null, "start_time": "2024-09-21T11: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, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Inkluderande danslektion för barn", "en": "Children’s Inclusive Dance Class" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.", "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0247BBCAC92FB153ACBF8DE8F61EDE31/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/0247BBCAC92FB153ACBF8DE8F61EDE31/Inkluderande_danslektion_for_barn", "en": "http://www.annantalo.fi/en/events/event/0247BBCAC92FB153ACBF8DE8F61EDE31/Children_s_Inclusive_Dance_Class_" }, "description": { "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen.</p><p>Ohjauskielet: suomi/englanti<br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Tila: Tanssiluokka</p><p>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi</p>", "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad. Fri entré, förhandsanmälning.</p><p>Antal deltagare: max 18 (barn och vuxna tillsammans)<br>Lokal: Dansklassrummet<br>Undervisningsspråk: Finska, engelska</p><p>Anmäl dig på förhand via e-post: info@kaaoscompany.fi</p>", "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability.</p><p>The lesson lasts one hour. <br>The space is accessible. <br>The lessons are free.</p><p>Languages: Finnish and English<br>Number of participants: max 18 (children and adults together)</p><p>Register in advance by email: info@kaaoscompany.fi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64440/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64181", "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: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:348/?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: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": [], "info_url": { "fi": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805294/", "sv": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805294/", "en": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805294/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151667, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-05T09:13:52.192943Z", "last_modified_time": "2024-07-05T09:13:52.192959Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751574.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151667/?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-05T09:13:52.163600Z", "last_modified_time": "2024-08-29T05:13:26.850177Z", "date_published": null, "start_time": "2024-09-21T10: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, "name": { "fi": "HOME: The Three Bridges – Global Club lapsille", "sv": "HOME: The Three Bridges – Global Club för barn", "en": "HOME: The Three Bridges – Global Club for children" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Melody ja Rytmi on tarkoitettu toisilleen, mutta onnistuvatko he ylittämään esteet ja löytämään toisensa erilaisuudesta ja välimatkasta huolimatta?", "sv": "Melodi och Rytm är menade för varandra, men kommer de att lyckas övervinna hindren och bygga en bro över skillnader och avstånd?", "en": "Melody and Rhythm are destined to be together, but will they manage to overcome the obstacles and bridge the differences and the distance?" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/4D07D55440825F77F0C735921CC53B41/HOME_The_Three_Bridges", "sv": "http://www.caisa.fi/sv/evenemang/event/4D07D55440825F77F0C735921CC53B41/HOME_The_Three_Bridges", "en": "http://www.caisa.fi/en/events/event/4D07D55440825F77F0C735921CC53B41/HOME_The_Three_Bridges" }, "description": { "fi": "<p>Melody ja Rytmi on tarkoitettu toisilleen, mutta onnistuvatko he ylittämään esteet ja löytämään toisensa erilaisuudesta ja välimatkasta huolimatta?</p><p>”Kolme siltaa” on esitys, jossa musiikki yhdistyy tarinaan luomaan ilmapiirin, jossa on toivoa, solidaarisuutta, monimuotoisuutta ja ymmärrystä. Se kertoo tarinan realistisesta tulevaisuudesta ja sopii kaikenikäisille lapsille.</p><p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät ihmiset kokoontuvat musiikkia rakastavien ja siitä nauttivien ihmisten kanssa pitämään hauskaa turvallisessa, osallistavassa ja luovassa ilmapiirissä. Tapahtumilla pyritään rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla.</p><p>Global Club Nights (GCN) toimii tiiviissä yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman ja kulttuurikeskus Caisan kanssa.</p><p>Kesto: 45 min<br>Ikä: kaikenikäisille<br>Kieli: englanti, suomi</p><p>Liput: 6 € osoitteesta lippu.fi</p>", "sv": "<p>Melodi och Rytm är menade för varandra, men kommer de att lyckas övervinna hindren och bygga en bro över skillnader och avstånd?</p><p>”The Three Bridges” är en föreställning om äktenskapet mellan musik och berättarkonst som skapar en atmosfär av hopp, solidaritet, mångfald och förståelse. Föreställningen är en berättelse om en realistisk framtid för barn i alla åldrar. (Observera att berättelsen och översättningen skyddas av immateriella rättigheter.)</p><p>Global Club Nights (GCN) är en klubbserie där människor som utövar och arbetar med musik samlas med de som älskar och njuter av den, för att fira och skapa en trygg, inkluderande och kreativ miljö. Evenemangen strävar i form av livemusik, radioprogram, seminarier och workshoppar efter att bygga broar mellan alla musikälskare och deras samhällen.</p><p>Global Club Nights (GCN) arrangeras i ett nära samarbete med Sibelius-Akademins fakultet för global musik och kulturcentret Caisa.</p><p>Längd: 45 min.<br>Ålder: alla åldrar<br>Språk: Engelska, finska</p>", "en": "<p>Melody and Rhythm are destined to be together, but will they manage to overcome the obstacles and bridge the differences and the distance?</p><p>”The Three Bridges” is a performance where music marries the story, to create an atmosphere of hope, solidarity, diversity and understanding. It is a story about a realistic future for children of all ages.</p><p>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive, and creative environment. With live music, radio shows, seminars and workshops, the events attempt to build bridges between all music lovers and their communities.</p><p>Global Club Nights (GCN) closely collaborates with the Global music Department of Sibelius Academy and Cultural Centre Caisa.</p><p>Duration: 45 min<br>Age: for all ages<br>Language: English, Finnish<br>Tickets: 6 € from Lippu.fi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64181/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }