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
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 ordering is descending order by -last_modified_time
. 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=1154®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1155®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1153®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "kulke:60906", "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: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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5154, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:58.887238Z", "last_modified_time": "2023-10-09T13:29:58.887259Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736323.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5154/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:58.200752Z", "last_modified_time": "2023-11-14T06:13:19.438460Z", "date_published": null, "start_time": "2023-10-10T06:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen.</p><p>Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen.</p><p>Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p><b>Mukana</b> <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen: kultus.fi</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/16661EBD70A8426705374A097F97F773/Ko-kollektiivi_Tanssikorttipakka" }, "name": { "fi": "Ko-kollektiivi: Tanssikorttipakka" }, "provider": null, "short_description": { "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60906/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60766", "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: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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "95/75/43,50 €", "sv": "95/75/43,50 €", "en": "95/75/43,50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-2694655", "sv": "https://www.lippu.fi/eventseries/name-2694655", "en": "https://www.lippu.fi/eventseries/name-2694655" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4374, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:58.222115Z", "last_modified_time": "2023-09-07T14:23:58.222143Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736360.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4374/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:57.261136Z", "last_modified_time": "2023-11-14T06:13:19.356113Z", "date_published": null, "start_time": "2023-10-09T16: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, "description": { "fi": "<p>Huippukoreografin kansainvälinen Carmina Burana -tanssiesitys Suomeen lokakuussa!</p><p>Unkarilaisen huippukoreografin, Tamás Juronicsin, kansainvälinen Carmina Burana -tanssiesitys saapuu Suomeen lokakuussa. Nyt ensimmäistä kertaa maassamme nähtävän Szeged Contemporary Dance Companyn esitys yhdistää balettia ja nykytanssia omalla ainutkertaisella tavallaan. Tanssiryhmän Carmina Burana -esitys nähdään Helsingissä, Savoy-teatterissa neljästi 9.-12. lokakuuta.</p><p>Nyt Suomeen saapuva esitys on kerännyt jo yli 200 000 katsojaa ympäri maailman runsaalla 350 näytöksellään. Ryhmässä on mukana yhteensä kaksikymmentä tanssijaa Italiasta ja Unkarista. Savoy-teatterissa nähtävä Carmina Burana on samalla kyseisen ryhmän kaikkien aikojen suosituin esitys.</p><p>– Viemme katsojat menneiden aikojen maailmaan, jossa barbaarisuus ja rituaalinen elämä liittyvät elannon etsimiseen sivilisaation raunioilta. Katsojat kohtaavat Carl Orffin upean musiikin säestämänä elämästä selviytymistä, mutta samalla myös rakkautta, iloa ja toivoa. Ilmennämme tanssin herkin keinoin, kuinka kohtalo voi olla julma ja epävakaa. Samalla voimme oppia paljon itsestämme, omasta kohtalostamme, mahdollisuuksistamme ja omasta ihmisyydestämme, kertoo koreografi Tamás Juronics.</p><p>Contemporary Dance Company on perustettu vuonna 1993, ja siitä on tullut vuosien kuluessa Unkarin johtava nykytanssin ryhmä. Kokoonpanon ainutlaatuinen tyyli yhdistää akrobatiaa, modernin tanssin liikkeitä, teatterielementtejä ja taiturimaisen voimakkaita visioita. Näytöksille ovat tyypillisiä tanssijoiden taidokkaat liikkeet sekä esityksen dramaattinen voima ja filosofinen syvyys.</p><p>Carmina Burana -esityksen kesto on 1 tunti 15 minuuttia, ja sen tuotannosta vastaa kansainvälinen Ballets-yhtiö. Esitysten liput ovat jo myynnissä Lippu.fi:ssä.</p><p>Carmina Burana Savoy-teatterissa:</p><p>MA 9.10. klo 19.00<br>TI 10.10. klo 19.00<br>KE 11.10. klo 19.00<br>TO 12.10. klo 19.00</p><p>Esityksen nettisivut: https://www.ballets.com</p><p>Ikäsuositus: 5+</p>", "sv": "<p>Över 350 bejublade föreställningar världen runt och fler än 200 000 hänförda åskådare!</p><p>\"Kraftfull och episk!\" \"En riktig höjdare!\" \"Mycket musikalisk, väl avpassad, helt magisk och djupt rituell.\" \"Tio minuters stående ovation från publiken på Maison de la Danse\" ...</p><p>I en dramatisk föreställning får vi möta livets hårda verklighet. Livet är kärlek och glädje, men också sorg och död. En barbarisk främling slåss för sin överlevnad på civilisationens ruiner samtidigt som han möter sina värsta rädslor och kämpar mot sitt öde. En ung kvinna upplever stunder av lycka när kärleken till främlingen gör så att hon glömmer det svåra. Istället börjar hon drömma om något annorlunda, ett bättre liv...<br> <br>Genom att uppleva besvikelse, glädje och rädsla kan vi lära oss mycket om oss själva, vårt öde och vår potential - vår egen mänsklighet\" (koreograf Tamás Juronics).</p><p>Szeged Contemporary Dance Companys mest populära föreställning CARMINA BURANA, Carl Orffs mest kända komposition.</p><p>Carl Orffs monumentala musikaliska mästerverk väcktes till liv som en spektakulär dansteaterversion av det prisbelönta Szeged Contemporary Dance Company år 2000. På ett levande sätt fångar föreställningen den gemensamma rädslan och glädjen i ett fiktivt barbariskt samhälle. Den kämpar för sin överlevnad och mänsklighet genom mystiska ritualer ända till sitt sista andetag.</p><p>JAG FÖRSTÅR INTE DEN SISTA MENINGEN! Je ne comprends pas la dernière phrase! \"Den kämpar- qui lutte??\"</p><p>Szeged Contemporary Dance Company:s historia</p><p>Dansarna Tamás Juronics och András Pataki Szeged grundade Contemporary Dance Company 1993, med Szegedbaletten och dess berömda koreograf Zoltán Imre i bakgrunden.</p><p>Modern dansteknik och teatraliska ambitioner definierar kompaniets image och understryker vikten av ett mångsidigt program. Szeged Contemporary Dance Company har blivit det ledande kompaniet för samtida dans i Ungern och har blivit känt och uppskattad över hela världen. Gruppens unika stil består av en blandning av akrobatik, moderna dansrörelser, teatrala element och kraftfulla visioner som presenteras med både teknisk och konstnärlig kvalitet.</p><p>Szeged Dance Companys framgångar började på 1990-talet och fortsätter i oförminskad takt. Föreställningarna kännetecknas av dansarnas skickliga rörelser, dramatisk kraft och filosofiskt djup i föreställningen, känslig användning av teatrala effekter samt ett fylligt ämne och kraftfullt uttryck.</p><p>Tamás Juronics<br>Dansare, koreograf, regissör</p><p>Tamás Juronics föddes i Tata i Ungern 1969. Efter att ha tagit examen från fakulteten för folkdans vid det ungerska universitetet för danskonst accepterade han en inbjudan från Zoltán Imre att gå med i Szegedbaletten. Han dansade huvudroller i stora verk. Den viktigaste var den ungerske musikern Béla Bartóks Den mirakulösa mandarinen, som Juronics hade koreograferat till. Han började presentera sina egna koreografier 1991 och blev konstnärlig ledare för Szeged Contemporary Dance Company 1993. Han var en av de första som använde sig av element från den moderna dansen i sina koreografier som utförs av professionella dansare. Juronics har blivit en internationellt erkänd mästare och har skapat över 70 koreografier. Hans omsorgsfulla integrering av handlingslinjer, tydliga, sammanhängande användning av form och dramatisk struktur gör hans verk inspirerande. Spektakulär iscensättning, belysning, effekter och musik är också viktiga inslag i hans verk. Juronics har fått flera internationella utmärkelser, bland annat priset \"Best creator\" Niveau Prize, \"Best performer\" International Contemporary Choreography Competition och Ungerns högsta statliga pris, \"Kossuth Prize\". Juronics inledde framgångsrikt sin karriär som prosa-regissör och har blivit en populär koreograf och regissör av musikaler och operor på många teatrar. Han har också regisserat Hoffmanns berättelser, Rigoletto, West Side Story, La Traviata och många andra.</p><p>Gör dig redo för den stora upplevelsen!</p><p>Längd: Ca 1 h 15 minuter</p>", "en": "<p>Top choreographer's international Carmina Burana dance performance to Finland in October!</p><p>The international Carmina Burana dance performance by top Hungarian choreographer Tamás Juronics will arrive in Finland in October. Szeged Contemporary Dance Company's performance, which will be seen for the first time in Hungary, combines ballet and contemporary dance in its own unique way. The dance company's Carmina Burana performance will be performed four times in Helsinki, at the Savoy Theatre from 9 to 12 October.</p><p>Now coming to Finland, the show has already attracted over 200 000 spectators around the world in more than 350 performances. The company includes a total of twenty dancers from Italy and Hungary. Carmina Burana at the Savoy Theatre is also the group's most popular performance ever.</p><p>- We take viewers into a bygone world where barbarism and ritual life are linked to the search for a living from the ruins of civilisation. To the accompaniment of Carl Orff's magnificent music, viewers are confronted with the struggle to survive, but also with love, joy and hope. Through dance, we show how fate can be cruel and unstable. At the same time, we can learn a lot about ourselves, our destiny, our possibilities and our humanity,\" says choreographer Tamás Juronics.</p><p>The Contemporary Dance Company was founded in 1993 and over the years has become Hungary's leading contemporary dance company. The company's unique style combines acrobatics, modern dance movements, theatrical elements and artistically intense visions. The shows are characterized by the dancers' skillful movements and the dramatic power and philosophical depth of the performance.</p><p>Carmina Burana will last 1 hour 15 minutes and will be produced by BALLETS. Tickets for the performances are already on sale at Lippu.fi.<br> <br>Carmina Burana at the Savoy Theatre:</p><p>Mon 9.10. at 19.00<br>Tue 10.10. at 19.00<br>Wed 11.10. at 19.00<br>Thu 12.10. at 19.00</p><p>The production's website: https://www.ballets.com</p><p>Age limit recommendation: +5</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6F5FBCC055CA04077EBC307BDFC9CEA9/_Carmina_Burana", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/6F5FBCC055CA04077EBC307BDFC9CEA9/_Carmina_Burana", "en": "http://www.savoyteatteri.fi/en/events/event/6F5FBCC055CA04077EBC307BDFC9CEA9/_Carmina_Burana" }, "name": { "fi": "Carmina Burana – Szeged Contemporary Dance Company", "sv": "Carmina Burana – Szeged Contemporary Dance Company", "en": "Carmina Burana – Szeged Contemporary Dance Company" }, "provider": { "fi": "Ballets", "sv": "Ballets", "en": "Ballets" }, "short_description": { "fi": "Huippukoreografin kansainvälinen Carmina Burana -tanssiesitys Suomeen lokakuussa!", "sv": "Över 350 bejublade föreställningar världen runt och fler än 200 000 hänförda åskådare!", "en": "Top choreographer's international Carmina Burana dance performance to Finland in October!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60766/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60506", "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:104/?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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4373, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:56.629174Z", "last_modified_time": "2023-09-07T14:23:56.629201Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730678.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4373/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:56.304451Z", "last_modified_time": "2023-11-14T06:13:19.276301Z", "date_published": null, "start_time": "2023-10-09T12:00:00Z", "end_time": "2023-10-09T13: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, "description": { "fi": "<p>Vainajaiset (Teos, 2022) on tarina lapsettomuudesta ja sen seurauksista, sukupolvien ketjusta ja selittämättömistä voimista.</p><p>Haastattelijana FM Katri Sola.</p><p>Lasta odotettaessa jokin osaton on alati läsnä ja sen sormet kurottelevat kohti äitiä, isää, isoäitiä, naapurintyttöä, veljeä. Ihmiskohtalot kietoutuvat elliptisesti yhteen, tyhjän ympärille, ja tuota autiutta kukin heistä kokee parhaansa mukaan täyttää – kuka tihutöillä, kuka satuja sepitellen, kuka etsien syntymätöntä sisarustaan.</p><p><b>Marja Kyllönen</b> on kajaanilaislähtöinen, nykyisin Tampereella asuva kirjailija. Hänen ylistetty romaaninsa <i>Vainajaiset</i> (2022) voitti Runeberg-palkinnon ja oli ehdolla myös Finlandia-palkinnon saajaksi. Ennen Vainajaisia Kyllönen on julkaissut kaksi romaania, Helsingin Sanomien esikoiskirjapalkinnolla palkitun <i>Lyijyuuman</i> (WSOY, 1997) ja <i>Rikot</i> (WSOY, 2001). Hänen kuunnelmansa <i>Äänetön osakas</i> (2010) valittiin Suomen edustajaksi Prix Italiaan.</p><p>Yhteistyössä Kannelmäen kirjaston ja Työväenopiston kanssa.<br>Kieli: suomi</p><p>Vapaa päsy</p>", "sv": "<p>Vainajaiset (Teos, 2022) är en berättelse av barnlöshet och dess följder, om kedjan av generationer och oförklarliga krafter.</p><p>Intervjuare FM Katri Sola.</p>", "en": "<p>The Undeparted (Teos, 2022) is a story about infertility and its consequences, a chain of generations and unexplained forces.</p><p>Interviewed by MA Katri Sola.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/721875D3FE6AA49F6DD80F935B8A407D/Kirjailijavieraana_Marja_Kyllonen", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/721875D3FE6AA49F6DD80F935B8A407D/Forfattargast_Marja_Kyllonen", "en": "http://www.kanneltalo.fi/en/events/event/721875D3FE6AA49F6DD80F935B8A407D/Author_guest_Marja_Kyllonen" }, "name": { "fi": "Kirjailijavieraana Marja Kyllönen – Maksuttomat maanantait", "sv": "Författargäst Marja Kyllönen – Kostandsfria måndagar", "en": "Author guest Marja Kyllönen – Free Mondays" }, "provider": null, "short_description": { "fi": "Vainajaiset (Teos, 2022) on tarina lapsettomuudesta ja sen seurauksista, sukupolvien ketjusta ja selittämättömistä voimista.", "sv": "Vainajaiset (Teos, 2022) är en berättelse av barnlöshet och dess följder, om kedjan av generationer och oförklarliga krafter.", "en": "The Undeparted (Teos, 2022) is a story about infertility and its consequences, a chain of generations and unexplained forces." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60506/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60495", "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:32/?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/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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4372, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:56.094413Z", "last_modified_time": "2023-09-07T14:23:56.094440Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731774.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4372/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:23:55.946044Z", "last_modified_time": "2023-11-14T06:13:19.193368Z", "date_published": null, "start_time": "2023-10-09T07:15:00Z", "end_time": "2023-10-09T08: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, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.<br>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>", "sv": "<p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>", "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C0073C76906B6D1D541879C3AE847963/Tanssi_ja_leikki_-tyopajat_Leikki-ikaiset", "sv": "http://www.caisa.fi/sv/evenemang/event/C0073C76906B6D1D541879C3AE847963/Dans_och_lek_verkstad_Barn_i_lekaldern", "en": "http://www.caisa.fi/en/events/event/C0073C76906B6D1D541879C3AE847963/Dance_and_play_workshops_Play-age" }, "name": { "fi": "Tanssi ja leikki -työpajat | Leikki-ikäiset – Leikki-ikäisille (3–5 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek verkstad | Barn i lekåldern – För barn i lekåldern (3–5 år) och deras föräldrar", "en": "Dance and play workshops | Play-age – For play-age children (3–5 years) and their parents" }, "provider": null, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "en": "The dance and play workshop introduces children to the world of dance through movement, music and play." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60495/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60483", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4371, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:55.620198Z", "last_modified_time": "2023-09-07T14:23:55.620220Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731758.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4371/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:23:55.476507Z", "last_modified_time": "2023-11-14T06:13:19.114815Z", "date_published": null, "start_time": "2023-10-09T06:15:00Z", "end_time": "2023-10-09T07: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, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.</p><p>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>", "sv": "<p>Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>", "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/71EE82944F7164E02C171B99B54BB369/Tanssi_ja_leikki_-tyopaja_Taaperot", "sv": "http://www.caisa.fi/sv/evenemang/event/71EE82944F7164E02C171B99B54BB369/Dans_och_lek_verkstad_Smabarn", "en": "http://www.caisa.fi/en/events/event/71EE82944F7164E02C171B99B54BB369/Dance_and_play_workshops_Toddlers" }, "name": { "fi": "Tanssi ja leikki -työpaja | Taaperot – Taaperoille (1–3 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek verkstad | Småbarn – För småbarn (1–3 år) och deras föräldrar", "en": "Dance and play workshops / Toddlers – For toddlers (1–3 years) and their parents" }, "provider": null, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "The dance and play workshop introduces children to the world of dance through movement, music and play." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60483/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60796", "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "35 €, ovelta 40 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3476002" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4370, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:55.241849Z", "last_modified_time": "2023-09-07T14:23:55.241871Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736543.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4370/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:54.366551Z", "last_modified_time": "2023-11-14T06:13:19.042275Z", "date_published": null, "start_time": "2023-10-08T16: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, "description": { "fi": "<p>Suomalaiset hitit ruotsiksi kääntänyt Bottenviken saapuu Suomeen levvynjulkaisukeikalle Savoy-teatteriin!</p><p>Pohjoismaissa suurta ihastusta ja arvostelumenestystä herättänyt Bottenviken saapuu ensimmäistä kertaa Suomeen keikoille lokakuussa 7.10. Tampereen Tavara-asemalle ja 8.10. Helsingin Savoy-teatteriin.</p><p>Love Antellin, Mattias Björkasin ja Thella Johnsonin perustaman Bottenvikenin tavoitteena on tuoda yhteen muusikoita, taiteilijoita ja kirjailijoita ruotsin ja suomen kielialueilta vuoropuheluun Itämeren yli musiikin ja sanoitusten avulla. Projektin tuloksena on syntynyt täyspitkä albumi \"Du och jag - ett rike - ett land\". Kehuttu albumi on saanut Suomessa positiivisen vastaanoton ja levy oli ilmestyessään muun muassa Radio Helsingin viikon levynä. Levyllä Bottenviken on tehnyt käännökset ruotsiksi mm. Maustetyttöjen, Samuli Putron, Ultra Bran ja Maija Vilkkumaan kappaleista.</p><p>Hanke perustuu kysymykseen, kuinka kielen ja kansallisen identiteetin välinen kuilu saa erilaisia ilmaisuja. Onko Ruotsin ja Suomen välillä henkinen etäisyys? Jos on, mitä tässä välissä on? Tulkintojen lisäksi Antell, Björkas ja Johnson tuovat mukanaan henkilökohtaisia näkemyksiään Ruotsista, Suomesta ja ruotsalais-suomalaisesta kulttuuri-identiteetistä. Heillä on yhteinen identiteetti, mutta heillä on myös erilaisia kokemuksia.</p><p>Thella Johnson on toimittaja, muusikko ja kirjailija. Hän työskentelee juontajana ja tuottajana Ruotsin radiossa. Hän on toiminut SR:n kirjeenvaihtajana Helsingissä ja debytoi kirjailijana keväällä 2023 romaanilla \"Peace\" (Norstedts). Mattias Björkas on muusikko ja kirjailija. Hän on keulahahmo ja lauluntekijä Vasas Flora och Fauna -yhtyeessä ja hän on vaikuttanut myös indie-suosikki Cats On Fire -yhtyeessä. Love Antell on musiikkitaiteilija ja kuvataiteilija. Hän on aktiivinen sekä sooloartistina että Florence Valentin -yhtyeessä. Hän on esiintynyt palkitussa elokuvassa \"Ingen riktig finne\" (2013) ja ruotsalaisen television Love in Finland -sarjassa (2015).</p><p>Bottenviken on nähty kesän aikana muun muassa Göteborgin Way Out West -festivaaleilla ja yhtye tekee syksyn aikana keikkoja Ruotsissa. Lokakuussa Bottenviken esiintyy ensimmäistä kertaa Suomessa lauantaina 7.10. Tampereen Tavara-asemalla osana Lost In Music -festivaalia ja sunnuntaina 8.10. Helsingissä omalla keikallaan Savoy-teatterissa.</p><p>LIPUT: Ennakkoon alk. 35 EUR + tilausmaksut (alk. 1,50 € www.lippu.fi)<br>Ovelta 40 EUR, mikäli esitys ei ole loppuunmyyty.</p><p>Kesto n. 60-70min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>Helsingin keikan viralliset mediakumppanit ovat Radio Helsinki ja Soundi.</p><p>www.facebook.com/bottenvikenartistproject <br>www.sunbornlive.fi</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7D20E1D4E2A7AEC2D5D7FF39EC39F9A0/Bottenviken_SE_" }, "name": { "fi": "Bottenviken (SE)" }, "provider": { "fi": "Sunborn Events Oy" }, "short_description": { "fi": "Suomalaiset hitit ruotsiksi kääntänyt Bottenviken saapuu Suomeen levvynjulkaisukeikalle Savoy-teatteriin!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60796/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59930", "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:351/?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:51/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "sv": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "en": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4369, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:53.530137Z", "last_modified_time": "2023-09-07T14:23:53.530158Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731641.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4369/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:52.862164Z", "last_modified_time": "2023-11-14T06:13:18.965078Z", "date_published": null, "start_time": "2023-10-08T12: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, "description": { "fi": "<p>Meanwhile on maailma, joka peilaa tämän päivän kulttuuriamme ja iloittelee kaikella ihmisten turhanpäiväisillä tavoilla käyttää aikaansa.</p><p><b>Nuua Company</b> on jo vuosikymmenen ajan seilannut valtavirtojen sivussa omia reittejään ja eri taiteenaloja yhdistellen luonut viihdyttäviä ja ajatuksia herättäviä taidekokemuksia.<br> <br>Näitä kokemuksia kutsumme sirkukseksi.</p><p>Nuua Company 10-vuotta -juhlafestivaalilla esitetään ryhmän uusimpia teoksia, installaatiotaidetta sekä vuosien varrelta kertynyttä valo- ja videokuvaa. <br> <br>Ohjelmistossa on kaksi yhdessä esitettävää ensi-iltateosta, <b>Kulovalkea</b> ja <B>Blueberry Burdock</b> (6.10. ja 7.10.), sekä mainetta niittänyt <b>Meanwhile-teos</b> (8.10.).</p><p>= = = = = = = = = = = = = =</p><p><b>Meanwhile</b><br>Meanwhile on maailma, joka peilaa tämän päivän kulttuuriamme ja iloittelee kaikella ihmisten turhanpäiväisillä tavoilla käyttää aikaansa.<br> <br>Se on sekoitus mukaansa tempaavia ja dramaattisia tunnelmia, jotka yhdistyvät minimalistiseen komiikkaan jongleerauksen, esinemanipulaation ja visuaalisen teatterin keinoin. <br> <br>Surrealistinen ja vinksahtanut <i>Meanwhile</i> ruotii kokemustamme ajan kulusta ja sen käytöstä. Esityksessä nykymaailman absurdi tärkeysjärjestys saa uusia ulottuvuuksia, sillä se ylistää asioita, joiden tekeminen koetaan yhteiskunnallisella tasolla tyhjänpäiväiseksi. Kaksi jonglööriä koettelevat kokijan ymmärrystä ja sitä, kuinka kaikki turhaksi kokemamme tekeminen voi synnyttää arvomaailman muutosta.</p><p><u>https://nuua.company/project/meanwhile/</u></p><p>Kesto: 60 min<br>Ohjaus: Olli Vuorinen<br>Esiintyminen: Merri Heikkilä, Onni Toivonen <br>Valosuunnittelu: Teo Laverna, <br>Äänisuunnittelu: Konsta Leinonen <br>Tukijat: Kallo Collective, Cirko, Taiteen keskustoiminta, Koneen säätiö, Helsingin kaupunki</p><p>= = = = = = = = = = = = = =</p><p>Yksittäiset normaalihintaiset liput 20/15 €, kahden esityksen illat 32/22 €, festivaalipassi 45/35 €.</p>", "sv": "<p>Meanwhile är en värld som speglar vår tids kultur och raljerar med människornas triviala tidsfördriv.</p><p>Förställningen är en blandning medryckande och dramatiska stämningar som kombineras med minimalistisk komik skapad med jongleringens, objektmanipulationens och den visuella teaterns medel.</p><p><u>https://nuua.company/project/meanwhile/</u></p><p><b>Decade of Deviations: Nuua Company 10 år </b><br>Nuua Company har redan i årtionden seglat utanför huvudströmningarna och skapat underhållande och tankeväckande konstupplevelser genom att kombinera olika konstarter.<br>Dessa upplevelser kallar vi cirkus.</p><p>På jubileumsfestivalen Nuua Company 10 år framförs gruppens senaste verk, installationskonst samt fotografier och filmklipp från årens lopp. På repertoaren står två premiärverk som visas tillsammans, Kulovalkea och Blueberry Burdock (6 och 7 okt.), samt verket Meanwhile (8 okt.) som rönt uppmärksamhet.</p>", "en": "<p>‘Meanwhile’ is a world that mirrors our culture today and delights in all the futile ways people spend their time.</p><p>It is a mix of captivating and dramatic atmospheres combined with minimalist comedy through juggling, object manipulation and visual theatre.</p><p><u>https://nuua.company/project/meanwhile/</u></p><p><b>Decade of Deviations: Nuua Company’s 10th Anniversary </b><br>For a decade, Nuua Company has been forging a trail slightly off the mainstream, combining different artistic disciplines to create entertaining and thought-provoking art experiences.<br>We call these experiences circus.</p><p>Nuua Company’s 10th anniversary festival will showcase the group’s latest works, installation art as well as light and video footage accumulated over the years. The programme includes two premieres, ‘Wildfire’ and ‘Blueberry Burdock’ (6 and 7 October), and the acclaimed ‘Meanwhile’ (8 October).</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4BB5FADA5B15ECABB1C7EC95368A1C9A/Meanwhile", "sv": "http://www.stoa.fi/sv/evenemang/event/4BB5FADA5B15ECABB1C7EC95368A1C9A/Meanwhile", "en": "http://www.stoa.fi/en/events/event/4BB5FADA5B15ECABB1C7EC95368A1C9A/Meanwhile" }, "name": { "fi": "Meanwhile – Decade of Deviations: Nuua Company 10 vuotta", "sv": "Meanwhile – Decade of Deviations: Nuua Company 10 år", "en": "Meanwhile – Decade of Deviations: Nuua Company 10 years" }, "provider": null, "short_description": { "fi": "Meanwhile on maailma, joka peilaa tämän päivän kulttuuriamme ja iloittelee kaikella ihmisten turhanpäiväisillä tavoilla käyttää aikaansa.", "sv": "Meanwhile är en värld som speglar vår tids kultur och raljerar med människornas triviala tidsfördriv.", "en": "‘Meanwhile’ is a world that mirrors our culture today and delights in all the futile ways people spend their time." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59930/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59973", "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:351/?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:51/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "sv": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "en": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4368, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:52.466032Z", "last_modified_time": "2023-09-07T14:23:52.466052Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731999.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4368/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:52.312590Z", "last_modified_time": "2023-11-14T06:13:18.885911Z", "date_published": null, "start_time": "2023-10-07T17:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle.</p><p><b>Nuua Company</b> on jo vuosikymmenen ajan seilannut valtavirtojen sivussa omia reittejään ja eri taiteenaloja yhdistellen luonut viihdyttäviä ja ajatuksia herättäviä taidekokemuksia.<br> <br>Näitä kokemuksia kutsumme sirkukseksi.</p><p>Nuua Company 10-vuotta -juhlafestivaalilla esitetään ryhmän uusimpia teoksia, installaatiotaidetta sekä vuosien varrelta kertynyttä valo- ja videokuvaa. <br> <br>Ohjelmistossa on kaksi yhdessä esitettävää ensi-iltateosta, <b>Kulovalkea</b> ja <B>Blueberry Burdock</b> (6.10. ja 7.10.), sekä mainetta niittänyt <b>Meanwhile-teos</b> (8.10.).</p><p>= = = = = = = = = = = = = =</p><p><b>Kulovalkea </b><br>Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle. <br> <br>Esitys tarjoaa eteerisiä tunnelmia ja unenomaisia näyttämökuvia, kuin liikkuvia maalauksia. Luoden tilaa luoville liikkeille, jotka vievät katsojan uteliaiseen tilaan, jonka kautta arkiselta tuntuvat asiat muuttuvat odottamattomiksi ja kieroutuneiksi. <br> <br>Totuus ei aina ole sitä, mitä todellisuus välittää, vaan enemmän se, mikä on peräisin alitajunnastamme, unelmistamme ja näkemyksistämme, jotka ovat haudattu syvälle psyykeisiimme. Kulovalkea tarjoaa pirstaleisen joukon näyttämökuvia, jotka ruokkivat kekseliäisyyttä ja uhmaavat rationaalisuutta. Kahdeksan sirkustaiteilijan voimin luomme virtuoottisen ja absurdin matkan tietoisuuden rajamaille.</p><p><u>https://nuua.company/project/kulovalkea/</u><br> <br>Kesto: 70 min <br>Ohjaus: Olli Vuorinen <br>Esiintyminen: Valpuri Kaarninen, Maria Peltola, Jaime Allen, Juho Yrjölä, Merri Heikkilä, Nelli Kujansivu, Rosa Autio, Petteri Savikorpi <br>Valosuunnittelu: Teo Laverna <br>Äänisuunnittelu: Katri Salmenoja <br>Tukijat: Dynamo, Cirko, Circus Cirkör, Suntopia, Sorin Sirkus, Latitude 50, Circa Auch, Taiteen keskustoiminkunta, Koneen Säätiö, Helsingin kaupunki</p><p>= = = = = = = = = = = = = =</p><p>Yksittäiset normaalihintaiset liput 20/15 €, kahden esityksen illat 32/22 €, festivaalipassi 45/35 €.</p>", "sv": "<p>Kulovalkea betyder löpeld, en skogsbrand som sprider sig snabbt, och här används det som en metafor och en inbjudan till att bevittna något vemodigt vackert och göra plats för något nytt.</p><p>Den eteriska föreställningens drömlika scener är som rörliga målningar. Det skapas utrymme för kreativa rörelser som väcker åskådarens nyfikenhet och gör att vardagliga fenomen känns oväntade och skruvade.</p><p><u>https://nuua.company/project/kulovalkea/</u></p><p><b>Decade of Deviations: Nuua Company 10 år </b><br>Nuua Company har redan i årtionden seglat utanför huvudströmningarna och skapat underhållande och tankeväckande konstupplevelser genom att kombinera olika konstarter.<br>Dessa upplevelser kallar vi cirkus.</p><p>På jubileumsfestivalen Nuua Company 10 år framförs gruppens senaste verk, installationskonst samt fotografier och filmklipp från årens lopp. På repertoaren står två premiärverk som visas tillsammans, Kulovalkea och Blueberry Burdock (6 och 7 okt.), samt verket Meanwhile (8 okt.) som rönt uppmärksamhet.</p>", "en": "<p>Wildfire is a rapidly spreading forest fire and serves as a metaphor that invites the viewer to witness something wistfully beautiful and make room for something new.</p><p>The performance offers ethereal atmospheres and dreamlike stage images, like moving paintings. It creates space for creative movements that take the viewer into a curious state, through which things that seem mundane become unexpected and twisted.</p><p><u>https://nuua.company/project/kulovalkea/</u></p><p><b>Decade of Deviations: Nuua Company’s 10th Anniversary </b><br>For a decade, Nuua Company has been forging a trail slightly off the mainstream, combining different artistic disciplines to create entertaining and thought-provoking art experiences.<br>We call these experiences circus.</p><p>Nuua Company’s 10th anniversary festival will showcase the group’s latest works, installation art as well as light and video footage accumulated over the years. The programme includes two premieres, ‘Wildfire’ and ‘Blueberry Burdock’ (6 and 7 October), and the acclaimed ‘Meanwhile’ (8 October).</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/92350955236C5501304F388951E53CAC/Kulovalkea", "sv": "http://www.stoa.fi/sv/evenemang/event/92350955236C5501304F388951E53CAC/Kulovalkea", "en": "http://www.stoa.fi/en/events/event/92350955236C5501304F388951E53CAC/Kulovalkea_Wildfire" }, "name": { "fi": "Kulovalkea – Decade of Deviations: Nuua Company 10 vuotta", "sv": "Kulovalkea – Decade of Deviations: Nuua Company 10 år", "en": "Kulovalkea – Wildfire – Decade of Deviations: Nuua Company 10 years" }, "provider": null, "short_description": { "fi": "Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle.", "sv": "Kulovalkea betyder löpeld, en skogsbrand som sprider sig snabbt, och här används det som en metafor och en inbjudan till att bevittna något vemodigt vackert och göra plats för något nytt.", "en": "Wildfire is a rapidly spreading forest fire and serves as a metaphor that invites the viewer to witness something wistfully beautiful and make room for something new." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59973/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59929", "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:351/?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:51/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "sv": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "en": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4366, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:51.717268Z", "last_modified_time": "2023-09-07T14:23:51.717288Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731640.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4366/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:51.562287Z", "last_modified_time": "2023-11-14T06:13:18.809175Z", "date_published": null, "start_time": "2023-10-07T16: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, "description": { "fi": "<p>Miellyttävä limbo mielen risteyksessä, teos joka on syntynyt kirjaimellisten ja metaforisten suuntien yltäkylläisyydestä.</p><p><b>Nuua Company</b> on jo vuosikymmenen ajan seilannut valtavirtojen sivussa omia reittejään ja eri taiteenaloja yhdistellen luonut viihdyttäviä ja ajatuksia herättäviä taidekokemuksia.<br> <br>Näitä kokemuksia kutsumme sirkukseksi.</p><p>Nuua Company 10-vuotta -juhlafestivaalilla esitetään ryhmän uusimpia teoksia, installaatiotaidetta sekä vuosien varrelta kertynyttä valo- ja videokuvaa. <br> <br>Ohjelmistossa on kaksi yhdessä esitettävää ensi-iltateosta, <b>Kulovalkea</b> ja <B>Blueberry Burdock</b> (6.10. ja 7.10.), sekä mainetta niittänyt <b>Meanwhile-teos</b> (8.10.).</p><p>= = = = = = = = = = = = = =</p><p><b>Blueberry Burdock</b><br>Blueberry Burdock on ylenpalttisten vaihtoehtojen hukuttaman hahmon matka, jossa ristiriidat ja sisäiset konfliktit ilmenevät kehollisina kertomuksina. Teoksen hahmo sotkeutuu harhaanjohtaviin opasteisiin ja rakentaa huonetta liikkuvista seinistä ja puolikkaista esineistä. Kooten eletyn elemän ja pirstaleisen todellisuuden palapeliä. <br> <br>Visuaalisen kerronnan, esinemanipulaation ja koomisen absurdiuden yhdistelmä Blueberry Burdock, tanssii ihmismielen limbomaisessa tilassa.<br> <br>Esitys herättää uudenlaista arvostusta elämän syvällisyyttä kohtaan. Se rohkaisee yleisöä hyväksymään elettyjen kokemusten ristiriitaisuuksia ja juhlimaan olemassaolon kaunista arvoituksellisuutta.</p><p><u>https://nuua.company/project/blueberry-burdock/</u></p><p>Ohjaus: Thomas Monckton<br>Esiintyminen: Olli Vuorinen<br>Valosuunnittelu: Teo Lanerva<br>Äänisuunnittelu: Konsta Leinonen<br>Pukusuunnittelu: Iida Ukkola<br>Lavastus: Olli Vuorinen<br>Lavasteiden rakennus: Kalle Oja<br>Tuotanto: Nuua Company<br>Yhteistuotanto: Kallo Collective <br>Tukijat: Taiteen edistämiskeskus, Helsingin kaupunki,Tanssiteatteri Hurjaruuth, Koneen säätiö, Tero Saarinen Company, Stoa</p><p>Kesto: 50 min</p><p>= = = = = = = = = = = = = =</p><p>Yksittäiset normaalihintaiset liput 20/15 €, kahden esityksen illat 32/22 €, festivaalipassi 45/35 €.</p>", "sv": "<p>Cirkuskonstnär Olli Vuorinens soloverk är en surrealistisk resa till människans psykologiska handlingsmönster och motstridigheterna i dem.</p><p>Med ett urval av konkreta och metaforiska uttryck och ett överflöd av riktningar kombinerar Blueberry Burdock surrealistiska scener och kroppsliga berättelser som uttrycker komplexiteten i det levda livet.</p><p><u>https://nuua.company/project/blueberry-burdock/</u></p><p><b>Decade of Deviations: Nuua Company 10 år </b><br>Nuua Company har redan i årtionden seglat utanför huvudströmningarna och skapat underhållande och tankeväckande konstupplevelser genom att kombinera olika konstarter.<br>Dessa upplevelser kallar vi cirkus.</p><p>På jubileumsfestivalen Nuua Company 10 år framförs gruppens senaste verk, installationskonst samt fotografier och filmklipp från årens lopp. På repertoaren står två premiärverk som visas tillsammans, Kulovalkea och Blueberry Burdock (6 och 7 okt.), samt verket Meanwhile (8 okt.) som rönt uppmärksamhet.</p>", "en": "<p>Circus artist Olli Vuorinen’s solo piece is a surrealist journey into the psychological patterns of the human mind and their contradictions.</p><p>In an abundance of concrete and metaphorical choices and directions, ‘Blueberry Burdock’ combines surrealist scenes and embodied narratives that express the complexity of a life lived.</p><p><u>https://nuua.company/project/blueberry-burdock/</u></p><p><b>Decade of Deviations: Nuua Company’s 10th Anniversary </b><br>For a decade, Nuua Company has been forging a trail slightly off the mainstream, combining different artistic disciplines to create entertaining and thought-provoking art experiences.<br>We call these experiences circus.</p><p>Nuua Company’s 10th anniversary festival will showcase the group’s latest works, installation art as well as light and video footage accumulated over the years. The programme includes two premieres, ‘Wildfire’ and ‘Blueberry Burdock’ (6 and 7 October), and the acclaimed ‘Meanwhile’ (8 October).</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/12623DDE1E6995043B2A979AE5C15446/Blueberry_Burdock", "sv": "http://www.stoa.fi/sv/evenemang/event/12623DDE1E6995043B2A979AE5C15446/Blueberry_Burdock", "en": "http://www.stoa.fi/en/events/event/12623DDE1E6995043B2A979AE5C15446/Blueberry_Burdock" }, "name": { "fi": "Blueberry Burdock – Decade of Deviations: Nuua Company 10 vuotta", "sv": "Blueberry Burdock – Decade of Deviations: Nuua Company 10 år", "en": "Blueberry Burdock – Decade of Deviations: Nuua Company 10 years" }, "provider": null, "short_description": { "fi": "Miellyttävä limbo mielen risteyksessä, teos joka on syntynyt kirjaimellisten ja metaforisten suuntien yltäkylläisyydestä.", "sv": "Cirkuskonstnär Olli Vuorinens soloverk är en surrealistisk resa till människans psykologiska handlingsmönster och motstridigheterna i dem.", "en": "Circus artist Olli Vuorinen’s solo piece is a surrealist journey into the psychological patterns of the human mind and their contradictions." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59929/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59734", "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: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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "59/47/15 €, Premium 69 €", "sv": "59/47/15 €, Premium 69 €", "en": "59/47/15 €, Premium 69 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3377055", "sv": "https://www.lippu.fi/eventseries/name-3377055", "en": "https://www.lippu.fi/eventseries/name-3377055" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4367, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:52.094061Z", "last_modified_time": "2023-09-07T14:23:52.094083Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730033.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4367/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:51.942689Z", "last_modified_time": "2023-11-14T06:13:18.728432Z", "date_published": null, "start_time": "2023-10-07T16: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, "description": { "fi": "<p>Espanjalainen flamenco-esitys täynnä jännitystä, intohimoa ja taituruutta</p><p>Arvostettu Barcelona Flamenco Ballet tuo lokakuussa Savoy-teatteriin tuoreen tanssispektaakkelinsa Flamenco Luxurîa.</p><p>Nimi Luxurîa tarkoittaa suomeksi hekumaa, intohimoa. Teoksen on luonut palkittu tanssija ja koreografi David Gutiérrez, jonka esittämä päähenkilö joutuu valitsemaan rakkauden sekä vapauden ja intohimon välillä. Esityksen naispääroolin tanssii Paula Reyes. Viime vuonna ensi-iltansa saanut Luxurîa on jo kerännyt menestystä ympäri maailmaa, muun muassa Yhdysvalloissa, Etelä-Koreassa, Italiassa ja tietenkin myös Espanjan Kataloniassa.</p><p>David Gutierrezin koreografiat yhdistävät niin perinteistä kuin ja modernia flamencotanssia. Hänen juurensa ovat vahvasti Katalonian sydämessä Barcelonassa, jossa Gutierrez aloitti tanssiopintonsa nelivuotiaana. Katalonialaisen kulttuurin esiintuominen on yksi merkityksellisimpiä asioita Gutierrezin työssä.</p><p>Seitsemän tanssijan ja viiden muusikon ensemble tuo Savoyn lavalle näyttäviä tanssinumeroita, sykähdyttävää flamenco-musiikkia sekä loisteliaita pukuja. Luvassa on viihdyttävä ja vahva esitys, joka painuu yleisön mieliin pitkäksi aikaa.</p><p>Esiintyjät:<br>Pääosissa: David Gutiérrez, Montserrat María Martínez<br>Tanssija-ensemble: Judit González, Maria Bardolet, Montserrat Anguera, Esmeralda Martín, Lucía Vicedo<br>Kitara: Jordi Centeno<br>Laulu: Rafael Bueno<br>Perkussiot: Alberto Garrido<br>Piano: José Miguel Castaño<br>Huilu ja saksofoni: Rafael Palomares</p><p>Kesto n. 2 t, sis. väliajan.</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "sv": "<p>En spansk flamencoshow full med spänning, passion och virtuositet</p><p>Renommerade Barcelona Flamenco Ballet kommer till Savoyteatern i oktober med sitt färska dansspektakel Flamenco Luxurîa.</p><p>Namnet Luxurîa betyder rus, passion på svenska. Verket är skapat av den prisbelönta dansaren och koreografen David Gutiérrez som spelar huvudrollen, en karaktär som tvingas välja mellan kärlek och frihet och passion. Föreställningens kvinnliga huvudroll dansas av Paula Reyes. Luxurîa som hade premiär i fjol har redan rönt framgångar runtom i världen, bland annat i USA, Sydkorea, Italien och naturligtvis Katalonien i Spanien.</p><p>David Gutierrez koreografier kombinerar både traditionell och modern flamencodans. Hans rötter är stadigt i hjärtat av Katalonien, Barcelona, där Gutierrez inledde dansstudierna i fyraårsåldern. Att lyfta fram den katalanska kulturen är ett av de viktigaste elementen i Gutierrez arbete.</p><p>Ensemblen med sju dansare och fem musiker fyller Savoys scen med imponerande dansnummer, bedårande flamencomusik och storslagna kostymer. Det utlovas en underhållande och kraftfull föreställning som publiken sent kommer att glömma.</p><p>På scenen:<br>I huvudrollerna: David Gutiérrez, Montserrat María Martínez<br>Dansensemble: Judit González, Maria Bardolet, Montserrat Anguera, Esmeralda Martín, Lucía Vicedo<br>Gitarr: Jordi Centeno<br>Sång: Rafael Bueno<br>Perkussion: Alberto Garrido<br>Piano: José Miguel Castaño<br>Flöjt och saxofon: Rafael Palomares</p><p>Längd ca 2,5 timmar med paus.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>A Spanish flamenco show full of excitement, passion and virtuosity</p><p>The esteemed Barcelona Flamenco Ballet will be bringing its fresh dance spectacle Flamenco Luxurîa to Savoy Theatre in October.</p><p>In English, the name Luxurîa means lust and passion. The piece was created by the award-winning dancer and choreograph David Gutiérrez, who plays the protagonist who is forced to choose between love, freedom and passion. The leading female role is performed by dancer Paula Reyes. After its premiere last year, Luxurîa has already found success in countless countries, such as the United States, South Korea, Italy and of course Catalonia, Spain.</p><p>David Gutierrez’s choreographies combine traditional and modern flamenco. His roots strongly are planted in the heart of Catalonia, Barcelona, where he began his dance studies at four years old. Highlighting the Catalonian culture is one of the most important aspects of Gutierrez’s work.</p><p>The ensemble of seven dancers and five musicians will fill the Savoy stage with spectacular dance numbers, stirring Flamenco music and stunning outfits. Audiences will get to enjoy an entertaining and powerful performance that they will remember for a long time.</p><p>Performers:<br>Leading roles: David Gutiérrez, Montserrat María Martínez<br>Dance ensemble: Judit González, Maria Bardolet, Montserrat Anguera, Esmeralda Martín, Lucía Vicedo<br>Guitar: Jordi Centeno<br>Vocals: Rafael Bueno<br>Percussions: Alberto Garrido<br>Piano: José Miguel Castaño<br>Flute and saxophone: Rafael Palomares</p><p>Duration approx. 2 h with intermission.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7C143887F1D018CD81BCBF000A39FA13/Flamenco_Luxur_a_Espanja_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/7C143887F1D018CD81BCBF000A39FA13/Flamenco_Luxur_a_Spanien_", "en": "http://www.savoyteatteri.fi/en/events/event/7C143887F1D018CD81BCBF000A39FA13/Flamenco_Luxur_a_Spain_" }, "name": { "fi": "Flamenco Luxurîa (Espanja) – by Barcelona Flamenco Ballet", "sv": "Flamenco Luxurîa (Spanien) – by Barcelona Flamenco Ballet", "en": "Flamenco Luxurîa (Spain) – by Barcelona Flamenco Ballet" }, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "short_description": { "fi": "Espanjalainen flamenco-esitys täynnä jännitystä, intohimoa ja taituruutta", "sv": "En spansk flamencoshow full med spänning, passion och virtuositet", "en": "A Spanish flamenco show full of excitement, passion and virtuosity" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59734/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60056", "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "10 € / 6 €", "sv": "10 € / 6 €", "en": "10 € / 6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/machu-picchu-konsertti-3424015/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/machu-picchu-konsertti-3424015/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/machu-picchu-konsertti-3424015/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4365, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:50.524538Z", "last_modified_time": "2023-09-07T14:23:50.524560Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732390.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4365/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:49.773907Z", "last_modified_time": "2023-11-14T06:13:18.644421Z", "date_published": null, "start_time": "2023-10-07T16: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, "description": { "fi": "<p>Machu Picchu -ryhmä juhlistaa chileläisten 50-vuotista taivalta Suomessa.</p><p>Ohjelmisto koostuu ”chileläisen uuden laulun” klassikoista kuten Violetta Parran ja Victor Jaran musiikista. Mukana on myös lauluja muista Latinalaisen Amerikan maista. Konserttiin tuodaan visuaalisia elementtejä chileläisestä maisemasta ja Chilen kansan lähihistoriasta.</p><p>Machu Picchu perustettiin Ruotsissa 35 vuotta sitten. Viisi vuotta myöhemmin se siirtyi Suomeen soittamaan latinalaisamerikkalaista musiikkia. Ryhmä on julkaissut 3 levyä, esiintynyt useita kertoja televisiossa ja tehnyt kiertueita festivaaleille ja kouluihin eri puolilla Suomea. Instrumentteina käytetään muiden muassa Etelä-Amerikan kansanmusiikille tyypillisiä lyömä- ja puhallinsoittimia.</p><p>Ryhmän ammattimuusikot ovat: Roberto Cueto (Chile), Rodrigo Rodriguez (Chile), Pedro Castellon (Bolivia), Tito Chauca (Peru) ja Mikko Nousiainen (Suomi).</p><p>Kesto: 1,5 h (lyhyt väliaika)<br>Ikäsuositus: sopii kaikille<br>Kieli: suomi, espanja ja englanti</p><p><i>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin. Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomeenkin muodostui kiinteä chileläinen yhteisö.</p><p>Nyt, puoli vuosisataa käänteentekevien tapahtumien jälkeen, chileläisyhteisö tarjoilee laajan kulttuuritapahtumien sarjan, joka tuo esille muistoja ja tunteita tuolta ajalta. Samalla analysoidaan, miten Chilen tapahtumat vaikuttivat suomalaiseen yhteiskuntaan.</p><p>Kulttuurikeskus Caisassa on lokakuussa aiheesta näyttelyitä, keskusteluita, seminaareja, elokuvia ja lasten työpajoja. Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</i></p>", "sv": "<p>Gruppen Machu Picchu firar chilenarnas 50-åriga historia i Finland.</p><p>På repertoaren står klassiker inom genren ”ny chilensk sång”, såsom musik av Violetta Parra och Victor Jara. På konserten framförs också sånger från andra länder i Latinamerika. Konsertens visuella element knyter an till det chilenska landskapet och det chilenska folkets närhistoria.</p><p>Längd: 1,5 t, med kort paus<br>Åldersrekommendation: för alla åldrar<br>Språk: finska, spanska och engelska</p><p><i>Den våldsamma militärkuppen i Chile 11.9.1973 skrotade landets demokrati och inledde en militärdiktatur som fortsatte i 17 år.</p><p>Tusentals oliktänkande dödades, tiotusentals människor torterades och hundratusentals andra flydde landet. Även i Finland bildades en fast chilensk gemenskap.</p><p>Nu, ett halvt sekel efter de omvälvande händelserna, bjuder medlemmarna i denna gemenskap på en omfattande serie av kulturevenemang som lyfter fram minnen och känslor från denna tid. Samtidigt analyseras hur händelserna i Chile påverkade det finländska samhället.</p><p>I kulturcentret Caisa hålls i oktober utställningar, samtal, seminarier och verkstäder för barn samt visas filmer om ämnet.</i></p>", "en": "<p>The Machu Picchu group celebrates the 50-year history of Chileans in Finland.</p><p>The programme consists of classics of the “new Chilean song”, such as the music of Violetta Parra and Victor Jara. It also includes songs from other Latin American countries. The concert includes visual elements from the Chilean landscape and the recent history of the Chilean people.</p><p>Duration: 1,5 h with short intermission<br>Age recommendation: for all ages<br>Language: Finnish, Spanish and English</p><p><i>The violent Chilean coup d’état of 11 September 1973 brought down the country’s democracy and began a 17-year military dictatorship.</p><p>Thousands of dissidents were killed, tens of thousands were tortured and hundreds of thousands went into exile. A strong Chilean community was also established in Finland.</p><p>Now, half a century after the revolutionary events, the Chilean community is offering a wide range of cultural events that will bring out memories and emotions of that time. The events in Chile will also be analysed in terms of their impact on Finnish society.</p><p>In October, Cultural Centre Caisa will host exhibitions, discussions, seminars, films and children’s workshops on the theme.</i></p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/BB9876B996B9BA76D277BBA06831683F/Machu_Picchu", "sv": "http://www.caisa.fi/sv/evenemang/event/BB9876B996B9BA76D277BBA06831683F/Machu_Picchu-konsert_", "en": "http://www.caisa.fi/en/events/event/BB9876B996B9BA76D277BBA06831683F/Machu_Picchu_concert_" }, "name": { "fi": "Machu Picchu – Chile50-teemaisia tapahtumia Caisassa", "sv": "Machu Picchu-konsert – Evenemang med Chile50-tema i Caisa", "en": "Machu Picchu concert – Chile50 themed events at Caisa" }, "provider": null, "short_description": { "fi": "Machu Picchu -ryhmä juhlistaa chileläisten 50-vuotista taivalta Suomessa.", "sv": "Gruppen Machu Picchu firar chilenarnas 50-åriga historia i Finland.", "en": "The Machu Picchu group celebrates the 50-year history of Chileans in Finland." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60056/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61082", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5153, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:52.882767Z", "last_modified_time": "2023-10-09T13:29:52.882785Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737450.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5153/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:52.746935Z", "last_modified_time": "2023-11-14T06:13:18.575322Z", "date_published": null, "start_time": "2023-10-07T15: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, "description": { "fi": "<p>Tom Harper lähtee pitkälle bussimatkalle Skotlannin pohjoisimmasta kolkasta synnyinseuduilleen Englannin etelärannikon John O’Groatsiin.</p><p>Paikallisbussien aikatauluja, omaa ikäänsä ja kohtaloa uhmaten Tom Harper (Timothy Spall) tekee kaikkensa pitääkseen vaimolleen antamansa lupauksen. Matkasta tulee muistorikas seikkailuretki täynnä käänteitä ja yllätyksiä. VIIMEINEN VUORO on elokuva rakkaudesta, menetyksestä ja ihmisen luonteikkaasta periksiantamattomuudesta.</p><p>Ikäraja 12<br>Ensi-ilta 29.9.2023<br>Kesto 86 min</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/92D74551B04B1A41FA91735C76D12F05/Viimeinen_vuoro_12_" }, "name": { "fi": "Viimeinen vuoro (12) – Kino Helios" }, "provider": null, "short_description": { "fi": "Tom Harper lähtee pitkälle bussimatkalle Skotlannin pohjoisimmasta kolkasta synnyinseuduilleen Englannin etelärannikon John O’Groatsiin." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61082/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60057", "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: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/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4364, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:49.028205Z", "last_modified_time": "2023-09-07T14:23:49.028226Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732392.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4364/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:48.704168Z", "last_modified_time": "2023-11-14T06:13:18.503937Z", "date_published": null, "start_time": "2023-10-07T14:00:00Z", "end_time": "2023-10-07T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Suomen hallitus päätti lokakuussa 1973 ottaa ryhmän Augusto Pinochetin sortoa pakenevia chileläisiä Suomeen.</p><p>He saapuivat Suomeen vielä vuoden 1973 puolella, ja heistä tuli Suomen ensimmäinen kiintiöpakolaisryhmä.</p><p>Monet alkuperäisistä chileläisistä pakolaisista ovat palanneet synnyinmaahansa asumaan sen jälkeen, kun Chile viimein siirtyi demokratiaan. Mutta moni asuu edelleen Suomessa, missä heidän perheenjäsenensäkin ovat. Mutta tuntevatko he olevansa suomalaisia vai chileläisiä? Miten 1970-luvun Suomi otti heidät vastaan ja mitä Suomi on heille antanut?</p><p>Näihin ja moniin muihin kysymyksiin etsitään vastausta alkuperäisten chileläisten pakolaisten kanssa. Keskustelemassa: <b>Adrián Soto</b> ja <b>Alfonso Padilla</b>. Juontaja: <b>Jaana Kanninen</b>.</p><p>Kesto: 1,5 h<br>Ikäsuositus: sopii kaikille<br>Kieli: suomi/espanja<br>Vapaa pääsy<br>Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</p><p><i>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin. Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomeenkin muodostui kiinteä chileläinen yhteisö.</p><p>Nyt, puoli vuosisataa käänteentekevien tapahtumien jälkeen, chileläisyhteisö tarjoilee laajan kulttuuritapahtumien sarjan, joka tuo esille muistoja ja tunteita tuolta ajalta. Samalla analysoidaan, miten Chilen tapahtumat vaikuttivat suomalaiseen yhteiskuntaan.</p><p>Kulttuurikeskus Caisassa on lokakuussa aiheesta näyttelyitä, keskusteluita, seminaareja, elokuvia ja lasten työpajoja. Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</i></p>", "sv": "<p>Den finska regeringen beslutade i oktober 1973 att ta emot en grupp chilenare som flytt undan Augusto Pinochets förtryck till Finland.</p><p>Chilenarna kom till Finland redan under 1973 och blev Finlands första grupp av kvotflyktingar.</p><p>Känner de sig som finländare eller chilenare? Hur tog 1970-talets Finland emot dem och vad har Finland gett dem?</p><p>Vi söker ett svar på dessa och många andra frågor med de ursprungliga chilenska flyktingarna. I samtalet deltar: <b>Adrián Soto</b>, <b>Carmen Quinteros</b> (på spanska), <b>Alfonso Padilla</b>. Programledare: <b>Jaana Kanninen</b>.</p><p>Längd: 1,5 t<br>Åldersrekommendation: för alla åldrar<br>Språk: finska/spanska<br>Fritt inträde<br>Innehållsvarning: Innehållen i evenemangen med Chile50-tema kan vara omskakande för känsliga tittare.</p><p><i>Den våldsamma militärkuppen i Chile 11.9.1973 skrotade landets demokrati och inledde en militärdiktatur som fortsatte i 17 år.</p><p>Tusentals oliktänkande dödades, tiotusentals människor torterades och hundratusentals andra flydde landet. Även i Finland bildades en fast chilensk gemenskap.</p><p>Nu, ett halvt sekel efter de omvälvande händelserna, bjuder medlemmarna i denna gemenskap på en omfattande serie av kulturevenemang som lyfter fram minnen och känslor från denna tid. Samtidigt analyseras hur händelserna i Chile påverkade det finländska samhället.</p><p>I kulturcentret Caisa hålls i oktober utställningar, samtal, seminarier och verkstäder för barn samt visas filmer om ämnet.</i></p>", "en": "<p>The Finnish government decided to take in a group of Chileans fleeing Augusto Pinochet’s oppression to Finland in October 1973.</p><p>They arrived in Finland before the end of 1973 and became Finland’s first quota refugee group.</p><p>Do they identify themselves as Finns or Chileans? How did Finland in the 1970s receive them and what has Finland given them?</p><p>These and many other questions will be answered with indigenous Chilean refugees. Participating in the discussion are: <b>Adrián Soto</b>, <b>Carmen Quinteros</b> (in Spanish), <b>Alfonso Padilla</b>. Host: <b>Jaana Kanninen</b>.</p><p>Duration: 1,5 h<br>Age recommendation: for all ages<br>Language: Finnish/Spanish<br>Free entry<br>Content warning: The contents of the Chile50-themed events may upset sensitive people.</p><p><i>The violent Chilean coup d’état of 11 September 1973 brought down the country’s democracy and began a 17-year military dictatorship.</p><p>Thousands of dissidents were killed, tens of thousands were tortured and hundreds of thousands went into exile. A strong Chilean community was also established in Finland.</p><p>Now, half a century after the revolutionary events, the Chilean community is offering a wide range of cultural events that will bring out memories and emotions of that time. The events in Chile will also be analysed in terms of their impact on Finnish society.</p><p>In October, Cultural Centre Caisa will host exhibitions, discussions, seminars, films and children’s workshops on the theme. </i></p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/11D6080CBBFA9D43B06234834E88FF81/Keskustelu_Ensimmaiset_chilelaiset_pakolaiset_Suomessa", "sv": "http://www.caisa.fi/sv/evenemang/event/11D6080CBBFA9D43B06234834E88FF81/Samtal_De_forsta_chilenska_flyktingarna_i_Finland", "en": "http://www.caisa.fi/en/events/event/11D6080CBBFA9D43B06234834E88FF81/Discussion_The_First_Chilean_Refugees_in_Finland" }, "name": { "fi": "Keskustelu: Ensimmäiset chileläiset pakolaiset Suomessa – Chile50-teemaisia tapahtumia Caisassa", "sv": "Samtal: De första chilenska flyktingarna i Finland – Evenemang med Chile50-tema i Caisa", "en": "Discussion: The First Chilean Refugees in Finland – Chile50 themed events at Caisa" }, "provider": null, "short_description": { "fi": "Suomen hallitus päätti lokakuussa 1973 ottaa ryhmän Augusto Pinochetin sortoa pakenevia chileläisiä Suomeen.", "sv": "Den finska regeringen beslutade i oktober 1973 att ta emot en grupp chilenare som flytt undan Augusto Pinochets förtryck till Finland.", "en": "The Finnish government decided to take in a group of Chileans fleeing Augusto Pinochet’s oppression to Finland in October 1973." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60057/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61080", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5152, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:52.315440Z", "last_modified_time": "2023-10-09T13:29:52.315460Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737446.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5152/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-09T13:29:52.173943Z", "last_modified_time": "2023-11-14T06:13:18.429631Z", "date_published": null, "start_time": "2023-10-07T12:00:00Z", "end_time": "2023-10-07T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!</p><p>Eräänä sateisena iltana Muumilaakson rauhaisaan idylliin saapuu filosofiksi esittäytyvä Piisamirotta ennustamaan koko maapalloa kohtaavaa katastrofia. Yhtäkkiä kesä ei olekaan enää niin kuin ennen. Muumipeikon, Nipsun ja Pikku Myyn on lähdettävä vaikeakulkuiseen seikkailuun tähtitornivuoren huipulle selvittämään, onko maailmanloppu todella tulossa.</p><p>Elämän palaaminen uomiinsa edellyttää Muumilaakson väeltä ennennäkemätöntä sankaruutta. Matkalla kohdataan jännittäviä vaaroja, mutta myös luonnon ihmeitä ja uskomattomia aarteita – ja solmitaan korvaamattomia uusia ystävyyksiä. Tarinassa tavataan myös seikkailija Nuuskamuikkunen sekä viisas keksijä Niisku ja hänen siskonsa Niiskuneiti.</p><p>Vahvistunein joukoin kotiin Muumilaaksoon palattuaan on ystävyksillä entistäkin paremmat eväät niin pyörremyrskyiltä kuin pyrstötähdiltä suojautumiseen ja koko Muumi-perheen pelastamiseen. Tarvitaan vain kekseliäisyyttä, yhteishenkeä ja valmiutta auttaa apua tarvitsevia, jotta kaikki pysyvät turvassa merkillisiltä luonnonilmiöiltä.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B558137B5D5B16D9C202CE790E51E7EF/Muumipeikko_ja_pyrstotahti_S_" }, "name": { "fi": "Muumipeikko ja pyrstötähti (S) – Kino Helios" }, "provider": null, "short_description": { "fi": "Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61080/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60909", "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: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: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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4363, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:48.464601Z", "last_modified_time": "2023-09-07T14:23:48.464631Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736552.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4363/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:23:48.299251Z", "last_modified_time": "2023-11-14T06:13:18.360880Z", "date_published": null, "start_time": "2023-10-07T11: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, "description": { "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Tiedustelut ja ilmoittautumiset sähköpostitse osoitteeseen daf@danceabilityfinland.com.</p><p>www.danceabilityfinland.com/daf/</p>", "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com</p><p>https://www.danceabilityfinland.com/daf/</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E8C6EABB8B8E1CCF2BA876C8E0FA2047/DanceAbility_Lasten_inklusiivinen_tanssitunti_", "en": "http://www.annantalo.fi/en/events/event/E8C6EABB8B8E1CCF2BA876C8E0FA2047/DanceAbility_Children_s_inclusive_dance_class" }, "name": { "fi": "DanceAbility: Lasten inklusiivinen tanssitunti", "en": "DanceAbility: Children's inclusive dance class" }, "provider": null, "short_description": { "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60909/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61062", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5151, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:51.685408Z", "last_modified_time": "2023-10-09T13:29:51.685428Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737772.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5151/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:51.001761Z", "last_modified_time": "2023-11-14T06:13:18.281264Z", "date_published": null, "start_time": "2023-10-07T10: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, "description": { "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle.</p><p>Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Ikäraja 7<br>Kesto 81 min<br>Ensi-ilta 15.9. <br>Tekstitys suomeksi.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/490EBC9EB766DF53B143B32DA994C7AB/Kuolleet_lehdet_7_" }, "name": { "fi": "Kuolleet lehdet (7) – Kino Helios" }, "provider": null, "short_description": { "fi": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61062/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60933", "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:350/?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:53/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5150, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:49.791901Z", "last_modified_time": "2023-10-09T13:29:49.791922Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735283.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5150/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:49.591203Z", "last_modified_time": "2023-11-14T06:13:18.204284Z", "date_published": null, "start_time": "2023-10-07T10:00:00Z", "end_time": "2023-10-07T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Oletko aina haaveillut esiintymisestä? Hae mukaan Susanna Leinonen Companyn tanssiteokseen Satakieli.</p><p>Nykytanssin kärkiryhmä Susanna Leinonen Company etsii ilmaisuvoimaisia, tanssista kiinnostuneita +65 helsinkiläisiä ikäihmisiä tanssiteokseen Satakieli, joka saa ensi-iltansa maaliskuussa 2024 Kulttuurikeskus Stoassa. Teoksen koreografi on <b>Susanna Leinonen</b> ja ääni-ilmaisua ohjaa näyttelijä-laulaja <b>Eija Ahvo</b>.</p><p>Teokseen valitaan 14–16 ikäihmistä, jotka yhdessä ammattitanssijoiden kanssa sukeltavat tanssin fyysiseen maailmaan. Hakijoilla ei tarvitse olla aiempaa tanssitaustaa, ainoastaan intoa ja halua oppia uutta.</p><p>Tule ja hae mukaan!</p><p>Paikka: Stoan musiikkisali, Turunlinnantie 1, Itäkeskus</p><p>Ilmoittautumiset 28.9. mennessä osoitteeseen:<br>info@susannaleinonen.com<br> <br>Tiedustelut: Tuottaja Tanja Haarla arkisin kello 10–15, puh. 050 512 9959</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4EAC86247407CAC9CA96E1CF7F87E8B7/Koetanssitilaisuus_65-vuotiaille" }, "name": { "fi": "Koetanssitilaisuus +65-vuotiaille – Susanna Leinonen Company" }, "provider": null, "short_description": { "fi": "Oletko aina haaveillut esiintymisestä? Hae mukaan Susanna Leinonen Companyn tanssiteokseen Satakieli." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60933/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60932", "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:350/?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:53/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5149, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:49.377455Z", "last_modified_time": "2023-10-09T13:29:49.377475Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735282.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5149/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:49.126217Z", "last_modified_time": "2023-11-14T06:13:18.135269Z", "date_published": null, "start_time": "2023-10-07T08:00:00Z", "end_time": "2023-10-07T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Oletko aina haaveillut esiintymisestä? Hae mukaan Susanna Leinonen Companyn tanssiteokseen Satakieli.</p><p>Nykytanssin kärkiryhmä Susanna Leinonen Company etsii ilmaisuvoimaisia, tanssista kiinnostuneita +65 helsinkiläisiä ikäihmisiä tanssiteokseen Satakieli, joka saa ensi-iltansa maaliskuussa 2024 Kulttuurikeskus Stoassa. Teoksen koreografi on <b>Susanna Leinonen</b> ja ääni-ilmaisua ohjaa näyttelijä-laulaja <b>Eija Ahvo</b>.</p><p>Teokseen valitaan 14–16 ikäihmistä, jotka yhdessä ammattitanssijoiden kanssa sukeltavat tanssin fyysiseen maailmaan. Hakijoilla ei tarvitse olla aiempaa tanssitaustaa, ainoastaan intoa ja halua oppia uutta.</p><p>Tule ja hae mukaan!</p><p>Paikka: Stoan musiikkisali, Turunlinnantie 1, Itäkeskus</p><p>Ilmoittautumiset 28.9. mennessä osoitteeseen:<br>info@susannaleinonen.com<br> <br>Tiedustelut: Tuottaja Tanja Haarla arkisin kello 10–15, puh. 050 512 9959</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/44980683C33FAD622A2DB73D9109C45B/Koetanssitilaisuus_65-vuotiaille" }, "name": { "fi": "Koetanssitilaisuus +65-vuotiaille – Susanna Leinonen Company" }, "provider": null, "short_description": { "fi": "Oletko aina haaveillut esiintymisestä? Hae mukaan Susanna Leinonen Companyn tanssiteokseen Satakieli." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60932/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60536", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/event/mirkka-ja-luis-vuotalo-17137473/", "sv": "https://www.lippu.fi/event/mirkka-ja-luis-vuotalo-17137473/", "en": "https://www.lippu.fi/event/mirkka-ja-luis-vuotalo-17137473/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4362, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:48.043249Z", "last_modified_time": "2023-09-07T14:23:48.043280Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728239.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4362/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:23:47.872990Z", "last_modified_time": "2023-11-14T06:13:18.061807Z", "date_published": null, "start_time": "2023-10-07T08: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, "description": { "fi": "<p>Mirkka & Luis -lastenmusiikkiyhtyeen intohimona on laulattaa, naurattaa ja liikuttaa niin mieltä kuin kehoakin.</p><p>Palkittua yhtyettä on kiitelty korkeatasoisesta musiikista, oivaltavista, ajankohtaisista ja puhuttelevista sanoituksista sekä valloittavasta läsnäolosta, joka hurmaa niin lapset kuin aikuisetkin.</p><p>Yhtye julkaisi ensimmäisen levynsä vuonna 2018 ja levyn kappaleista kuusi julkaistiin myös musiikkivideona yhteistyössä mm. Otavamedian kanssa. Vuonna 2019 yhtye valittiin ”Vuoden tulokkaaksi” valtakunnallisessa lastenmusiikkigaalassa.</p><p>Esikoisalbumi <i>Koiruuksia</i> oli ehdolla myös Vuoden lastenlevy ja Vuoden lastenlaulu -kategorioissa. Samassa gaalassa yhtye valittiin myös Konserttikeskuksen artistiksi. Lisäksi yhtye julkaisi <i>Kuraa, kuraa, kuraa!</i> - kappaleen toisen levynsä ensimmäisenä singlenä, joka julkaistiin myös Yle Areenan 100 lastenlaulua -formaatissa kahden muun uuden levyn kappaleen lisäksi.</p><p>Vuonna 2021 yhtye julkaisi toisen levyn nimeltään <i>Arvaa mitä?</i>, josta kaksi kappaletta oli mukana Pikku Kakkosen kesäkiertueella 2022. Vuonna 2022 yhtye valittiin Vuoden artistiksi samaisessa lastenmusiikkigaalassa. Tervetuloa kuulemaan parasta lastenmusiikkia, ”Lapsille parasta, tottakai!”</p><p>Ikäsuositus: lapsille ja lapsiperheille<br>Kieli: suomi</p>", "sv": "<p>Barnmusikbandet Mirkka & Luis passion är att locka fram sång, skratt och rörelse i både kropp och sinne.</p><p>Det prisbelönade bandet har lovordats för sin högklassiga musik, sina insiktsfulla, aktuella och tilltalande låttexter och den inbjudande närvaron som charmar båda barn och vuxna.</p>", "en": "<p>Mirkka & Luis is a children’s music group with a passion for singing, making people laugh and moving both the mind and the body.</p><p>The award-winning ensemble has been praised for its high-quality music, insightful, topical and evocative lyrics and captivating presence that charms both children and adults.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D544623BE46CE9DA61D0F0F88D06D2E6/Mirkka_ja_Luis", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D544623BE46CE9DA61D0F0F88D06D2E6/Mirkka_Luis", "en": "http://www.vuotalo.fi/en/events/event/D544623BE46CE9DA61D0F0F88D06D2E6/Mirkka_and_Luis" }, "name": { "fi": "Mirkka ja Luis", "sv": "Mirkka & Luis", "en": "Mirkka and Luis" }, "provider": null, "short_description": { "fi": "Mirkka & Luis -lastenmusiikkiyhtyeen intohimona on laulattaa, naurattaa ja liikuttaa niin mieltä kuin kehoakin.", "sv": "Barnmusikbandet Mirkka & Luis passion är att locka fram sång, skratt och rörelse i både kropp och sinne.", "en": "Mirkka & Luis is a children’s music group with a passion for singing, making people laugh and moving both the mind and the body." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60536/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59971", "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:351/?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:51/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "sv": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "en": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4361, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:47.632452Z", "last_modified_time": "2023-09-07T14:23:47.632484Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731998.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4361/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:47.055897Z", "last_modified_time": "2023-11-14T06:13:17.985685Z", "date_published": null, "start_time": "2023-10-06T17:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle.</p><p><b>Nuua Company</b> on jo vuosikymmenen ajan seilannut valtavirtojen sivussa omia reittejään ja eri taiteenaloja yhdistellen luonut viihdyttäviä ja ajatuksia herättäviä taidekokemuksia.<br> <br>Näitä kokemuksia kutsumme sirkukseksi.</p><p>Nuua Company 10-vuotta -juhlafestivaalilla esitetään ryhmän uusimpia teoksia, installaatiotaidetta sekä vuosien varrelta kertynyttä valo- ja videokuvaa. <br> <br>Ohjelmistossa on kaksi yhdessä esitettävää ensi-iltateosta, <b>Kulovalkea</b> ja <B>Blueberry Burdock</b> (6.10. ja 7.10.), sekä mainetta niittänyt <b>Meanwhile-teos</b> (8.10.).</p><p>= = = = = = = = = = = = = =</p><p><b>Kulovalkea </b><br>Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle. <br> <br>Esitys tarjoaa eteerisiä tunnelmia ja unenomaisia näyttämökuvia, kuin liikkuvia maalauksia. Luoden tilaa luoville liikkeille, jotka vievät katsojan uteliaiseen tilaan, jonka kautta arkiselta tuntuvat asiat muuttuvat odottamattomiksi ja kieroutuneiksi. <br> <br>Totuus ei aina ole sitä, mitä todellisuus välittää, vaan enemmän se, mikä on peräisin alitajunnastamme, unelmistamme ja näkemyksistämme, jotka ovat haudattu syvälle psyykeisiimme. Kulovalkea tarjoaa pirstaleisen joukon näyttämökuvia, jotka ruokkivat kekseliäisyyttä ja uhmaavat rationaalisuutta. Kahdeksan sirkustaiteilijan voimin luomme virtuoottisen ja absurdin matkan tietoisuuden rajamaille.</p><p><u>https://nuua.company/project/kulovalkea/</u><br> <br>Kesto: 70 min <br>Ohjaus: Olli Vuorinen <br>Esiintyminen: Valpuri Kaarninen, Maria Peltola, Jaime Allen, Juho Yrjölä, Merri Heikkilä, Nelli Kujansivu, Rosa Autio, Petteri Savikorpi <br>Valosuunnittelu: Teo Laverna <br>Äänisuunnittelu: Katri Salmenoja <br>Tukijat: Dynamo, Cirko, Circus Cirkör, Suntopia, Sorin Sirkus, Latitude 50, Circa Auch, Taiteen keskustoiminkunta, Koneen Säätiö, Helsingin kaupunki</p><p>= = = = = = = = = = = = = =</p><p>Yksittäiset normaalihintaiset liput 20/15 €, kahden esityksen illat 32/22 €, festivaalipassi 45/35 €.</p>", "sv": "<p>Kulovalkea betyder löpeld, en skogsbrand som sprider sig snabbt, och här används det som en metafor och en inbjudan till att bevittna något vemodigt vackert och göra plats för något nytt.</p><p>Den eteriska föreställningens drömlika scener är som rörliga målningar. Det skapas utrymme för kreativa rörelser som väcker åskådarens nyfikenhet och gör att vardagliga fenomen känns oväntade och skruvade.</p><p><u>https://nuua.company/project/kulovalkea/</u></p><p><b>Decade of Deviations: Nuua Company 10 år </b><br>Nuua Company har redan i årtionden seglat utanför huvudströmningarna och skapat underhållande och tankeväckande konstupplevelser genom att kombinera olika konstarter.<br>Dessa upplevelser kallar vi cirkus.</p><p>På jubileumsfestivalen Nuua Company 10 år framförs gruppens senaste verk, installationskonst samt fotografier och filmklipp från årens lopp. På repertoaren står två premiärverk som visas tillsammans, Kulovalkea och Blueberry Burdock (6 och 7 okt.), samt verket Meanwhile (8 okt.) som rönt uppmärksamhet.</p>", "en": "<p>Wildfire is a rapidly spreading forest fire and serves as a metaphor that invites the viewer to witness something wistfully beautiful and make room for something new.</p><p>The performance offers ethereal atmospheres and dreamlike stage images, like moving paintings. It creates space for creative movements that take the viewer into a curious state, through which things that seem mundane become unexpected and twisted.</p><p><u>https://nuua.company/project/kulovalkea/</u></p><p><b>Decade of Deviations: Nuua Company’s 10th Anniversary </b><br>For a decade, Nuua Company has been forging a trail slightly off the mainstream, combining different artistic disciplines to create entertaining and thought-provoking art experiences.<br>We call these experiences circus.</p><p>Nuua Company’s 10th anniversary festival will showcase the group’s latest works, installation art as well as light and video footage accumulated over the years. The programme includes two premieres, ‘Wildfire’ and ‘Blueberry Burdock’ (6 and 7 October), and the acclaimed ‘Meanwhile’ (8 October).</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5408433802243EA400C6FC2FA29C19F8/Kulovalkea_ENSI-ILTA", "sv": "http://www.stoa.fi/sv/evenemang/event/5408433802243EA400C6FC2FA29C19F8/Kulovalkea_PREMIAR", "en": "http://www.stoa.fi/en/events/event/5408433802243EA400C6FC2FA29C19F8/Kulovalkea_Wildfire_PREMIERE" }, "name": { "fi": "Kulovalkea | ENSI-ILTA – Decade of Deviations: Nuua Company 10 vuotta", "sv": "Kulovalkea | PREMIÄR – Decade of Deviations: Nuua Company 10 år", "en": "Kulovalkea – Wildfire | PREMIERE – Decade of Deviations: Nuua Company 10 years" }, "provider": null, "short_description": { "fi": "Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle.", "sv": "Kulovalkea betyder löpeld, en skogsbrand som sprider sig snabbt, och här används det som en metafor och en inbjudan till att bevittna något vemodigt vackert och göra plats för något nytt.", "en": "Wildfire is a rapidly spreading forest fire and serves as a metaphor that invites the viewer to witness something wistfully beautiful and make room for something new." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59971/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26873, "next": "