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=225&weekday=6%2C7
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=226&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=224&weekday=6%2C7" }, "data": [ { "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": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "price": { "fi": "8 €" }, "description": null } ], "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, "provider_contact_info": null, "short_description": { "fi": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/490EBC9EB766DF53B143B32DA994C7AB/Kuolleet_lehdet_7_" }, "location_extra_info": null, "name": { "fi": "Kuolleet lehdet (7) – Kino Helios" }, "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": 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": [], "info_url": null, "price": null, "description": 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, "provider_contact_info": null, "short_description": { "fi": "Oletko aina haaveillut esiintymisestä? Hae mukaan Susanna Leinonen Companyn tanssiteokseen Satakieli." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4EAC86247407CAC9CA96E1CF7F87E8B7/Koetanssitilaisuus_65-vuotiaille" }, "location_extra_info": null, "name": { "fi": "Koetanssitilaisuus +65-vuotiaille – Susanna Leinonen Company" }, "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": 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": [], "info_url": null, "price": null, "description": 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, "provider_contact_info": null, "short_description": { "fi": "Oletko aina haaveillut esiintymisestä? Hae mukaan Susanna Leinonen Companyn tanssiteokseen Satakieli." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/44980683C33FAD622A2DB73D9109C45B/Koetanssitilaisuus_65-vuotiaille" }, "location_extra_info": null, "name": { "fi": "Koetanssitilaisuus +65-vuotiaille – Susanna Leinonen Company" }, "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": 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": [], "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/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null } ], "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, "provider_contact_info": 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." }, "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" }, "location_extra_info": null, "name": { "fi": "Mirkka ja Luis", "sv": "Mirkka & Luis", "en": "Mirkka and Luis" }, "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": 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": [], "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/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null } ], "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, "provider_contact_info": 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." }, "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" }, "location_extra_info": null, "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" }, "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": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59971/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59733", "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": [], "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" }, "price": { "fi": "59/47/15 €, Premium 69 €", "sv": "59/47/15 €, Premium 69 €", "en": "59/47/15 €, Premium 69 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4360, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:45.839575Z", "last_modified_time": "2023-09-07T14:23:45.839595Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730031.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4360/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:45.184666Z", "last_modified_time": "2023-11-14T06:13:17.909954Z", "date_published": null, "start_time": "2023-10-06T16: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, "provider_contact_info": null, "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" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1CE74E9C31268D2D5319DDE28BA7FFBF/Flamenco_Luxur_a_Espanja_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/1CE74E9C31268D2D5319DDE28BA7FFBF/Flamenco_Luxur_a_Spanien_", "en": "http://www.savoyteatteri.fi/en/events/event/1CE74E9C31268D2D5319DDE28BA7FFBF/Flamenco_Luxur_a_Spain_" }, "location_extra_info": null, "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" }, "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 Montserrat María Martínez. 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 Gutiérrezin koreografiat yhdistävät niin perinteistä kuin modernia flamencotanssia. Hänen juurensa ovat vahvasti Katalonian sydämessä Barcelonassa, jossa Gutiérrez aloitti tanssiopintonsa nelivuotiaana. Katalonialaisen kulttuurin esiintuominen on yksi merkityksellisimpiä asioita Gutiérrezin työssä.</p><p>Seitsemän tanssijan ja viiden muusikon ensemble tuo Savoyn lavalle näyttäviä tanssinumeroita, sykähdyttävää flamencomusiikkia 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 Montserrat María Martínez. 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 Gutiérrez koreografier kombinerar både traditionell och modern flamencodans. Hans rötter är stadigt i hjärtat av Katalonien, Barcelona, där Gutiérrez inledde dansstudierna i fyraårsåldern. Att lyfta fram den katalanska kulturen är ett av de viktigaste elementen i Gutiérrez 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 Montserrat María Martínez. 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 Gutiérrez’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 Gutiérrez’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": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59733/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59928", "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": [], "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/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4359, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:44.661970Z", "last_modified_time": "2023-09-07T14:23:44.661993Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731639.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4359/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:44.496295Z", "last_modified_time": "2023-11-14T06:13:17.832592Z", "date_published": null, "start_time": "2023-10-06T16: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, "provider_contact_info": 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." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/40946F4B447CCE1FAA45F78CC74424B6/Blueberry_Burdock_ENSI-ILTA", "sv": "http://www.stoa.fi/sv/evenemang/event/40946F4B447CCE1FAA45F78CC74424B6/Blueberry_Burdock_PREMIAR", "en": "http://www.stoa.fi/en/events/event/40946F4B447CCE1FAA45F78CC74424B6/Blueberry_Burdock_PREMIERE" }, "location_extra_info": null, "name": { "fi": "Blueberry Burdock | ENSI-ILTA – Decade of Deviations: Nuua Company 10 vuotta", "sv": "Blueberry Burdock | PREMIÄR – Decade of Deviations: Nuua Company 10 år", "en": "Blueberry Burdock | PREMIERE – Decade of Deviations: Nuua Company 10 years" }, "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": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59928/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60520", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/pekka-laine-the-enchanted-tinyhawk-bizzarro-malmitalo-17544823/", "sv": "https://www.lippu.fi/event/pekka-laine-the-enchanted-tinyhawk-bizzarro-malmitalo-17544823/", "en": "https://www.lippu.fi/event/pekka-laine-the-enchanted-tinyhawk-bizzarro-malmitalo-17544823/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4358, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:44.263173Z", "last_modified_time": "2023-09-07T14:23:44.263195Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730914.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4358/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:44.085271Z", "last_modified_time": "2023-11-14T06:13:17.754466Z", "date_published": null, "start_time": "2023-10-06T16: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, "provider_contact_info": null, "short_description": { "fi": "Illan aikana luvassa on psykedeelisiä rantalomakokemuksia ja kokeellista rock-musiikkia.", "sv": "Under kvällen blir det psykedeliska badsemesterupplevelser och experimentell rockmusik.", "en": "During the evening, there will be psychedelic beach holiday experiences and experimental rock music." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BE8686E96A792221A88656064040F107/Pekka_Laine_The_Enchanted_Tinyhawk_Bizzarro", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BE8686E96A792221A88656064040F107/Pekka_Laine_The_Enchanted_Tinyhawk_Bizzarro", "en": "http://www.malmitalo.fi/en/events/event/BE8686E96A792221A88656064040F107/Pekka_Laine_The_Enchanted_Tinyhawk_Bizzarro" }, "location_extra_info": null, "name": { "fi": "Pekka Laine & The Enchanted | Tinyhawk & Bizzarro", "sv": "Pekka Laine & The Enchanted | Tinyhawk & Bizzarro", "en": "Pekka Laine & The Enchanted | Tinyhawk & Bizzarro" }, "description": { "fi": "<p>Illan aikana luvassa on psykedeelisiä rantalomakokemuksia ja kokeellista rock-musiikkia.</p><p></b>Pekka Laine</b> elää kaksoiselämää.</p><p>Päivisin hän on arvostettu Yleisradion musiikkitoimittaja, joka suosituissa radio-ohjelmissaan ja televisiodokumenteissa myllää populaarikulttuurin syövereissä. Sitten on se hämärämpi puoli eli kitaristi ja musiikintekijä Pekka Laine.</p><p>Kulttimainetta nauttivan <i>The Hypnomen</i> -yhtyeen primus motorina Laine on 1990-luvulta asti tehnyt villisti kuplivaa instrumentaalimusiikkia. Kitaralegenda <b>Esa Pulliaisen</b> rohkaisemana ja yllyttämänä syntyi soolodebyytti <i>The Enchanted Guitar of Pekka Laine</i> vuonna 2021. Levy on rakkaudentunnustus lumotulle soittimelle, sähkökitaralle ja sen kosmisille kaiuille.</p><p>Seuraava askel oli vääjäämätön. Maaginen mielikuvitusmatka on vietävä live-yleisön eteen ja syntyi <i>Pekka Laine & The Enchanted</i>. Kuusimiehisessä unelmayhtyeessä kokemus ja näkemys kohtaavat nuoruuden vimman, kun indie-konkarit ja uuden polven tyyliniekat hyppäävät saman raketin kyytiin.</p><p>Livesovituksina Laineen instrumentaalisävellykset tarjoavat mielikuvitusmatkailua koko rahalla. Luvassa on psykedeelisiä rantalomakokemuksia, jännittäviä hetkiä länkkärimaisemissa, pikapyrähdyksiä avaruuteen ja surrealistisia seikkailuita.</p><p><b>Pekka Laine & The Enchanted</b><br>Pekka Laine – kitara <br>Tommi Pietiläinen – kitara<br>Topias Tiheäsalo – kitara<br>Toni Liimatta – koskettimet<br>Väinö Karjalainen – basso <br>Mooses Kuloniemi – rummut</p><p>Illan avaa kokeellista rock-musiikkia esittävä <b>Tinyhawk & Bizzarro</b>, joka julkaisi debyyttialbuminsa elokuussa 2023. Yhtyeen ensimmäinen single <i>Yorokobi</i> ilmestyi 16.12.2022, toinen single <i>Nekorok</i> 3.3.2023 ja tulevan albumin kolmas ja viimeinen single <i>Uji</i> 26.5.2023.</p><p>Kokoonpanon biisintekijä ja kitaristi <b>Jenni Kinnunen</b> tunnetaan esimerkiksi Rosita Luu -yhtyeestä.<br> <br><b>Tinyhawk & Bizzarro</b><br>Jenni Kinnunen – kitara<br>Markus Väisänen –kitara<br>Teemu Aho – basso<br>Jaakko Pöyhönen – rummut</p>", "sv": "<p>Under kvällen blir det psykedeliska badsemesterupplevelser och experimentell rockmusik.</p><p>Pekka Laine lever ett dubbelliv. På dagtid är han en uppskattad musikreporter vid Rundradion som gräver djupt i populärmusikens värld i sina populära radioprogram och tv-dokumentärer.</p><p>Sedan finns det en mörkare sida, gitarristen och musikskrivaren <b>Pekka Laine</b>. Laine har, i egenskap av primus motor för det kultförklarade bandet <b>The Hypnomen</b>, sedan 1990-talet skapat vilt bubblande instrumentalmusik.</p><p><b>Pekka Laine & The Enchanted</b><br>Pekka Laine <br>Tommi Pietiläinen <br>Topias Tiheäsalo <br>Toni Liimatta <br>Väinö Karjalainen <br>Mooses Kuloniemi</p><p>Kvällen öppnas av <b>Tinyhawk & Bizzarro</b> som spelar experimentell rockmusik och som släppte sitt debutalbum i augusti 2023. Bandets låtskrivare och gitarrist <b>Jenni Kinnunen</b> är känd till exempel från bandet Rosita Luu.</p><p><b>Tinyhawk & Bizzarro</b><br>Jenni Kinnunen <br>Markus Väisänen<br>Teemu Aho <br>Jaakko Pöyhönen</p>", "en": "<p>During the evening, there will be psychedelic beach holiday experiences and experimental rock music.</p><p><b>Pekka Laine</b> leads a double life. By day, Laine is a respected music journalist at Yle, who roams the depths of popular culture in popular radio programmes and TV documentaries.</p><p>And then there’s the darker side – guitarist and musician Pekka Laine. Laine has been making wildly effervescent instrumental music since the 1990s as the primus motor of the cult band <b>The Hypnomen</b>.</p><p><b>Pekka Laine & The Enchanted</b><br>Pekka Laine <br>Tommi Pietiläinen <br>Topias Tiheäsalo <br>Toni Liimatta <br>Väinö Karjalainen <br>Mooses Kuloniemi</p><p>The evening will be kicked off by experimental rock band <b>Tinyhawk & Bizzarro</b>, who are releasing their debut album in August 2023. The band’s songwriter and guitarist <b>Jenni Kinnunen</b> is known for bands such as Rosita Luu.</p><p><b>Tinyhawk & Bizzarro</b><br>Jenni Kinnunen <br>Markus Väisänen<br>Teemu Aho <br>Jaakko Pöyhönen</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60520/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61049", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "price": { "fi": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5148, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:46.282165Z", "last_modified_time": "2023-10-09T13:29:46.282184Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737381.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:46.062987Z", "last_modified_time": "2023-11-14T06:13:17.677908Z", "date_published": null, "start_time": "2023-10-06T15: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, "provider_contact_info": null, "short_description": { "fi": "Pertti ’Spede’ Pasasen elämästä ja urasta kertova elokuva käy läpi ikonisen viihteentekijän innovatiivisinta elokuvatuotantovaihetta." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5A0B3173E0CBC350A266E1DEA1114F49/Spede_7_" }, "location_extra_info": null, "name": { "fi": "Spede (7) – Kino Helios" }, "description": { "fi": "<p>Pertti ’Spede’ Pasasen elämästä ja urasta kertova elokuva käy läpi ikonisen viihteentekijän innovatiivisinta elokuvatuotantovaihetta.</p><p>Elokuva valottaa kulissien takaisia tapahtumia 1960-luvun lopulta Uuno Turhapuron syntytarinaan ja kansansuosioon, sekä Speden väsymätöntä taistelua viihteen puolesta ajan elokuvataidepiirejä vastaan. Millainen Spede Pasanen oli persoonana, työkaverina, viihdetaiteilijana - ja puolisona?</p><p>Ikäraja 7<br>Ensi-ilta 29.9.2023<br>Kesto 95 min<br>Tekstitetty suomeksi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61049/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60987", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "price": { "fi": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5147, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:45.870162Z", "last_modified_time": "2023-10-09T13:29:45.870181Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737357.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5147/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:45.737886Z", "last_modified_time": "2023-11-14T06:13:17.600846Z", "date_published": null, "start_time": "2023-10-06T12: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, "provider_contact_info": null, "short_description": { "fi": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2757A2CE1B0421E81CE577D24850A751/Kuolleet_lehdet_7_" }, "location_extra_info": null, "name": { "fi": "Kuolleet lehdet (7) – Kino Helios" }, "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": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60987/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60219", "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: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: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:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4357, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:43.829043Z", "last_modified_time": "2023-09-07T14:23:43.829072Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734227.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4357/?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:43.668665Z", "last_modified_time": "2023-11-14T06:13:17.444444Z", "date_published": null, "start_time": "2023-10-06T07:15: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, "provider_contact_info": null, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A7D276D6504C965BA936C903B54DC2DC/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/A7D276D6504C965BA936C903B54DC2DC/Skidikino", "en": "http://www.stoa.fi/en/events/event/A7D276D6504C965BA936C903B54DC2DC/Skidikino" }, "location_extra_info": null, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60219/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60220", "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: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: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:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4356, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:42.728742Z", "last_modified_time": "2023-09-07T14:23:42.728762Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734226.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4356/?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:42.066764Z", "last_modified_time": "2023-11-14T06:13:17.364651Z", "date_published": null, "start_time": "2023-10-06T06:15: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, "provider_contact_info": null, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino", "en": "http://www.stoa.fi/en/events/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino" }, "location_extra_info": null, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60220/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60505", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4355, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:41.327663Z", "last_modified_time": "2023-09-07T14:23:41.327683Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730506.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4355/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:40.959467Z", "last_modified_time": "2023-11-14T06:13:17.280850Z", "date_published": null, "start_time": "2023-10-06", "end_time": "2023-10-21", "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, "provider_contact_info": null, "short_description": { "fi": "Varaa itsellesi maksuton henkilökohtainen esitys 6.–7.10.2023.", "sv": "Boka en kostnadsfri privatföreställning.", "en": "Book yourself a free personal performance." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Suomalaisen_barokkiorkesterin_muusikot_Jeremy_Barrois_X_TUNNE", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Musiker_fran_Suomalainen_barokkiorkesteri_Jeremy_Barrois_X_TUNNE", "en": "http://www.kanneltalo.fi/en/events/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Musicians_of_the_Finnish_Baroque_Orchestra_Jeremy_Barrois_X_TUNNE" }, "location_extra_info": null, "name": { "fi": "Suomalaisen barokkiorkesterin muusikot & Jeremy Barrois: X.TUNNE – Musiikillinen kohtaamislaboratorio ja videokooste", "sv": "Musiker från Suomalainen barokkiorkesteri & Jeremy Barrois: X.TUNNE – Ett musikaliskt möteslaboratorium och videocollage", "en": "Musicians of the Finnish Baroque Orchestra & Jeremy Barrois: X.TUNNE – Musical encounter laboratory and video compilation" }, "description": { "fi": "<p>Varaa itsellesi maksuton henkilökohtainen esitys 6.–7.10.2023.</p><p>Kuulijalle rakennetaan Kanneltalon galleriaan oma tila, jossa ympäröivä elämä ja muut kuulijat jäävät hetkeksi taka-alalle, vain musiikki ja muusikko ovat tärkeitä. Varaa itsellesi maksuton henkilökohtainen esitys, tule seuraamaan live-kohtaamisia taustalta tai tule katsomaan videokooste.</p><p>X.TUNNE. on Helsinki Early Music Festivalin versio <b>Suomalaisen barokkiorkesterin</b> <i>Tule.Tunne.</i> <br>-barokkiperformanssilaboratoriosta.</p><p>Perjantaina 6.10. klo 15–18 ja lauantaina 7.10. klo 13–16 tarjolla on yhteensä 12 puolen tunnin mittaista kohtaamista, jossa yksi muusikko esiintyy kerrallaan yhteen kuulijaan keskittyen.</p><p><b>Varattavissa olevat ajat:</b><br>Perjantai 6.10. klo 15, 15.30, 16, 16.30, 17 ja 17.30<br>Lauantai 7.10. klo 13, 13.30, 14, 14.30, 15 ja 15.30</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Maksuttomat lippuvaraukset: Lippu.fi</a></u></p><p>Videokuvaaja <b>Jeremy Barrois</b> tallentaa esitykset ja editoi valikoiduista hetkistä kokonaisuuden, joka on katsottavissa Kanneltalon galleriassa osana <i>Helsinki Early Music Festivalia</i>. Tallenne on nähtävissä Kanneltalon galleriassa 11.–21.10.2023.</p><p>Yhteistyössä Kanneltalo, Suomalainen barokkiorkesteri, Helsinki Early Music Festival</p><p>Galleria, vapaa pääsy</p>", "sv": "<p>Boka en kostnadsfri privatföreställning.</p><p>För lyssnaren byggs ett eget utrymme i Gamlasgårdens galleri där livet omkring och den övriga publiken hamnar i bakgrunden för en stund och bara musiken och musikern har betydelse. Boka en kostnadsfri privatföreställning, följ live-mötena från kulisserna eller sätt dig och titta på videocollaget.</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Kostnadsfria biljettbokning: Lippu.fi</a></u></p>", "en": "<p>Book yourself a free personal performance.</p><p>The listener is built their own space at the Kanneltalo gallery, where the surrounding life and other listeners take a back seat for a moment and only the music and the musician are important. Book yourself a free personal performance, come and follow the live encounters in the background or watch the video compilation.</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Free ticket bookings: Lippu.fi</a></u></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59878", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4342, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:30.727832Z", "last_modified_time": "2023-09-07T14:23:30.727853Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730800.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4342/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:30.061281Z", "last_modified_time": "2023-11-14T06:13:16.106314Z", "date_published": null, "start_time": "2023-10-04", "end_time": "2023-10-28", "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, "provider_contact_info": null, "short_description": { "fi": "Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin.", "sv": "Utställningen kastar en tillbakablick på händelserna för ett halvt sekel sedan och på vad chilenarna har gett Finland.", "en": "The exhibition offers a glimpse into the events of half a century ago and what Chileans have given to Finland." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/46ED411EC0D070101ECFFC8F9D210D88/Yhta_matkaa_puoli_vuosisataa", "sv": "http://www.caisa.fi/sv/evenemang/event/46ED411EC0D070101ECFFC8F9D210D88/Pa_gemensam_resa_i_ett_halvt_sekel", "en": "http://www.caisa.fi/en/events/event/46ED411EC0D070101ECFFC8F9D210D88/On_a_Common_Journey_for_Half_a_Century" }, "location_extra_info": null, "name": { "fi": "Yhtä matkaa puoli vuosisataa – Chile50-teemaisia tapahtumia Caisassa", "sv": "På gemensam resa i ett halvt sekel – Evenemang med Chile50-tema i Caisa", "en": "On a Common Journey for Half a Century – Chile50 themed events at Caisa" }, "description": { "fi": "<p>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin.</p><p>Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomenkin hallitus päätti jo syksyllä 1973 ottaa tänne ryhmän pakolaisia, jotka pakenivat Chilen sotilasdiktatuurin sortoa. He olivat maamme ensimmäiset kiintiöpakolaiset, ja heistä alkoi maamme avautuminen ja kansainvälistyminen. Tänne muodostui kiinteä chileläinen yhteisö, joka sopeutui hyvin maahamme.</p><p>Näyttely luo silmäyksen puolen vuosisadan takaisiin tapahtumiin ja siihen, mitä chileläiset ovat antaneet Suomelle. Caisassa on esillä myös poliittisia julisteita, jotka heijastavat Suomeen syntynyttä laajaa solidaarisuusliikettä.</p><p>Viittomakielinen näyttelyopastus la 28.10. klo 13–14, yhteistyö Ursa Minorin kanssa. Oppaana Aino Laiho. <br> <br>Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</p><p><i>Kulttuurikeskus Caisassa on lokakuussa Chilen vallankaappaukseen liittyviä 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>Utställningen kastar en tillbakablick på händelserna för ett halvt sekel sedan och på vad chilenarna har gett Finland.</p><p>I Caisa visas också politiska affischer som återspeglar den omfattande solidaritetsrörelsen som uppstod i Finland.</p><p>Guidning på utställningen på finskt teckenspråk lördagen den 28 oktober kl. 13–14, ett samarbete med Ursa Minor. Guide Aino Laiho.</p><p>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 exhibition offers a glimpse into the events of half a century ago and what Chileans have given to Finland.</p><p>Caisa will also display political posters reflecting the broad solidarity movement that emerged in Finland.</p><p>A guided tour of the exhibition will be held in Finnish sign language on Sat, 28 Oct between 13 and 14, in collaboration with Ursa Minor. Guided by Aino Laiho.</p><p>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": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59878/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60098", "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:288/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4337, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:26.328069Z", "last_modified_time": "2023-09-07T14:23:26.328093Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732902.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4337/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:25.990256Z", "last_modified_time": "2023-11-14T06:13:15.874833Z", "date_published": null, "start_time": "2023-10-03", "end_time": "2023-10-15", "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, "provider_contact_info": null, "short_description": { "fi": "Stoan Parvigalleriassa on esillä valokuvaaja Kari Haklin valokuvia Sortavalasta vuodelta 2019.", "sv": "I Stoas balkonggalleri visas fotograf Kari Haklis fotografier från Sordavala från år 2019.", "en": "Stoa’s Balcony Gallery features photographs taken by photographer Kari Hakli in Sortavala in 2019." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4E92002DCC737B6EC7C59F3A92CDB34A/Kari_Haklin_valokuvia_Sortavalasta", "sv": "http://www.stoa.fi/sv/evenemang/event/4E92002DCC737B6EC7C59F3A92CDB34A/Kari_Haklis_fotografier_fran_Sordavala", "en": "http://www.stoa.fi/en/events/event/4E92002DCC737B6EC7C59F3A92CDB34A/Kari_Hakli_s_Photographs_of_Sortavala" }, "location_extra_info": null, "name": { "fi": "Kari Haklin valokuvia Sortavalasta", "sv": "Kari Haklis fotografier från Sordavala", "en": "Kari Hakli’s Photographs of Sortavala" }, "description": { "fi": "<p>Stoan Parvigalleriassa on esillä valokuvaaja Kari Haklin valokuvia Sortavalasta vuodelta 2019.</p><p>Kuvat kertovat vaikuttavasti, millaiseksi kaupunki on kehittynyt suomalaisajan jälkeen. Haklin kuvat ovat osa Stoan galleriassa samaan aikaan nähtävää Aikamatka Sortavalaan -näyttelyä.<br> <br>Aikamatka Sortavalaan -näyttely vie mukanaan Karjalan Sortavalaan, joka luovutettiin Neuvostoliitolle sotien seurauksena 1944. Millainen tuo kaupunki ympäristöineen oli?</p><p>Pääsemme tutustumaan 1900-luvun alkupuolen valokuvien ja postikorttien kautta Sortavalan hienoon arkkitehtuuriin, upeisiin Laatokan maisemiin ja kaupunkilaisten elämään. Esillä on myös yksityishenkilöiden lainaamista evakkoesineistä koottu installaatio sekä arkistoaineistoa. <br> <br>Sortavalan kaupunki sijaitsee Laatokan pohjoisrannalla, ja ennen sotia sitä ympäröi laaja maalaiskunta. Suomalaisajalla Sortavala oli alueensa tärkein kulttuurin, sivistyksen, liike-elämän, teollisuuden ja yhdistystoiminnan keskus, jonka vaikutukset heijastuivat koko Suomen alueelle. Sinne kehittyi omaleimainen identiteetti, jossa idän ja lännen kulttuuripiirteet rikastuttivat toisiaan ja uskontokunnat elivät sovussa rinnakkain. <br> <br>Aikamatka Sortavalaan -näyttely juhlistaa Sortavala-seura ry:n 70-vuotisjuhlavuotta. Lisätiedot: www.sortavala-seura.fi <br> <br>Tuottaja: Tuula Roitto, Sortavala-seura ry:n hallitus <br>Näyttely- ja graafinen suunnittelu: Annika Roitto <br>Valokuvat ja postikortit: Tuula Roiton kokoelmat, Kari Nissisen valokuva- ja postikorttikokoelma, Sortavala-seura <br>Parvigallerian valokuvat: Kari Hakli<br>Kiitokset: Sortavala-säätiö, joka on tukenut näyttelyn toteuttamista taloudellisesti, näyttelyyn aineistoa lainanneet yksityishenkilöt, Stoa, joka tarjosi näyttelytilan.</p>", "sv": "<p>I Stoas balkonggalleri visas fotograf Kari Haklis fotografier från Sordavala från år 2019.</p><p>Bilderna ger en imponerande inblick i stadens utveckling efter den finska tiden. Haklis bilder utgör en del av utställningen Aikamatka Sortavalaan som visas samtidigt i Stoas galleri.</p>", "en": "<p>Stoa’s Balcony Gallery features photographs taken by photographer Kari Hakli in Sortavala in 2019.</p><p>Bilderna ger en imponerande inblick i stadens utveckling efter den finska tiden. Haklis bilder utgör en del av utställningen Aikamatka Sortavalaan som visas samtidigt i Stoas galleri.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60098/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60095", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4336, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:25.736268Z", "last_modified_time": "2023-09-07T14:23:25.736288Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732806.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4336/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:25.589083Z", "last_modified_time": "2023-11-14T06:13:15.798178Z", "date_published": null, "start_time": "2023-10-03", "end_time": "2023-10-15", "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, "provider_contact_info": null, "short_description": { "fi": "Aikamatka Sortavalaan -näyttely vie mukanaan Karjalan Sortavalaan, joka luovutettiin Neuvostoliitolle sotien seurauksena 1944.", "sv": "Utställningen tar besökaren till Sordavala i Karelen, som överläts till Sovjetunionen efter kriget 1944.", "en": "The exhibition ‘Time Trip to Sortavala’ takes the visitor to Sortavala in Karelia, which was ceded to the Soviet Union as a result of the wars in 1944." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/984D4A3DE07B3EF378982C2F0DAE5760/Aikamatka_Sortavalaan", "sv": "http://www.stoa.fi/sv/evenemang/event/984D4A3DE07B3EF378982C2F0DAE5760/Tidresa_till_Sordavala", "en": "http://www.stoa.fi/en/events/event/984D4A3DE07B3EF378982C2F0DAE5760/Time_Travel_to_Sortavala" }, "location_extra_info": null, "name": { "fi": "Aikamatka Sortavalaan", "sv": "Tidresa till Sordavala", "en": "Time Travel to Sortavala" }, "description": { "fi": "<p>Aikamatka Sortavalaan -näyttely vie mukanaan Karjalan Sortavalaan, joka luovutettiin Neuvostoliitolle sotien seurauksena 1944.</p><p>Millainen tuo kaupunki ympäristöineen oli osana Suomea? Pääsemme tutustumaan 1900-luvun alkupuolen valokuvien ja postikorttien kautta Sortavalan hienoon arkkitehtuuriin, upeisiin Laatokan maisemiin ja kaupunkilaisten elämään. Esillä on myös yksityishenkilöiden lainaamista evakkoesineistä koottu installaatio sekä arkistoaineistoa. <br> <br>Sortavalan kaupunki sijaitsee Laatokan pohjoisrannalla, ja ennen sotia sitä ympäröi laaja maalaiskunta. Suomalaisajalla Sortavala oli alueensa tärkein kulttuurin, sivistyksen, liike-elämän, teollisuuden ja yhdistystoiminnan keskus, jonka vaikutukset heijastuivat koko Suomen alueelle. Sinne kehittyi omaleimainen identiteetti, jossa idän ja lännen kulttuuripiirteet rikastuttivat toisiaan ja uskontokunnat elivät sovussa rinnakkain. <br> <br>Stoan Parvigalleriassa on samaan aikaan esillä valokuvaaja <b>Kari Haklin</b> valokuvia Sortavalasta vuodelta 2019. Kuvat kertovat vaikuttavasti, millaiseksi kaupunki on kehittynyt suomalaisajan jälkeen. <br> <br>Näyttelyn järjestää <b>Sortavala-seura ry</b> ja se juhlistaa seuran 70-vuotisjuhlavuotta. https://www.sortavala-seura.fi <br> <br>Tuottaja: Tuula Roitto, Sortavala-seura ry:n hallitus <br>Näyttely- ja graafinen suunnittelu: Annika Roitto <br>Valokuvat ja postikortit: Tuula Roiton kokoelmat, Kari Nissisen valokuva- ja postikorttikokoelma, Sortavala-seura <br>Parvigallerian valokuvat: Kari Hakli<br>Kiitokset: Sortavala-säätiö, joka on tukenut näyttelyn toteuttamista taloudellisesti, näyttelyyn aineistoa lainanneet yksityishenkilöt, Stoa, joka tarjosi näyttelytilan.</p>", "sv": "<p>Utställningen tar besökaren till Sordavala i Karelen, som överläts till Sovjetunionen efter kriget 1944.</p><p>Hurdan var staden och dess omgivningar när den fortfarande var en del av Finland? Vi får bekanta oss med Sordavalas fina arkitektur, de fantastiska landskapen vid Ladoga och stadsbornas liv genom fotografier och postkort från 1900-talets första halva. På utställningen visas också en installation sammanställd av föremål som det evakuerade folket tagit med sig och som privatpersoner lånat ut samt arkivmaterial.</p>", "en": "<p>The exhibition ‘Time Trip to Sortavala’ takes the visitor to Sortavala in Karelia, which was ceded to the Soviet Union as a result of the wars in 1944.</p><p>What were the town and its surroundings like as part of Finland? Through photographs and postcards from the early 20th century, we get to explore Sortavala’s fine architecture, the magnificent landscapes of Ladoga and the lives of its inhabitants. The exhibition also includes an installation of evacuee objects lent by private individuals as well as archival material.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60095/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60999", "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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5142, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:33.992224Z", "last_modified_time": "2023-10-09T13:29:33.992246Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737416.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5142/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:33.210799Z", "last_modified_time": "2023-11-14T06:13:15.458978Z", "date_published": null, "start_time": "2023-10-02", "end_time": "2023-10-31", "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, "provider_contact_info": null, "short_description": { "fi": "Taidegrafiikan olen todennut itselleni parhaiten luontuvaksi ilmaisutavaksi. Sen eri tekniikoita olen opiskellut jo vuosikymmeniä mm. Työväenopistojen kursseilla." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6A7F4868A82322C412101505134CCFB7/Haagan_Taideseura_Seppo_Piiraisen_taidegrafiikkaa" }, "location_extra_info": null, "name": { "fi": "Haagan Taideseura: Seppo Piiraisen taidegrafiikkaa" }, "description": { "fi": "<p>Taidegrafiikan olen todennut itselleni parhaiten luontuvaksi ilmaisutavaksi. Sen eri tekniikoita olen opiskellut jo vuosikymmeniä mm. Työväenopistojen kursseilla.</p><p>Yleensä teokseni syntyvät yksittäisestä kuvaideasta sen merkitystä pohdiskellen ja siihen eri elementtejä lisäillen, joskus hyvin pitkän prosessin kautta. Toisinaan jonkin uuden tekniikan opettelu inspiroi minua vapaisiin kokeiluihin, mikä tarjoaa virkistävää vastapainoa suunnitelmalliselle työskentelylle.</p><p>Olen erityisesti halunnut tutkia ja kuvata luonnossa esiintyviä muotoja ja rakenteita sekä niiden säännönmukaisuuksia. Toisaalta minua kiehtovat ikiaikaiset myytit ja kertomukset etenkin maailman synnystä: kuinka samanlaisina ne ilmenevät eri kansojen piirissä.</p><p>Haagan Taideseura on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura. Lisätiedot https://www.haagantaideseura.com/</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60999/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60533", "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:30/?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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4332, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:22.366247Z", "last_modified_time": "2023-09-07T14:23:22.366280Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731336.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4332/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:22.198252Z", "last_modified_time": "2023-11-14T06:13:15.384983Z", "date_published": null, "start_time": "2023-10-02", "end_time": "2023-10-30", "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, "provider_contact_info": null, "short_description": { "fi": "Julistetaiteen kulta-aikana 1970-luvulla julisteet olivat tärkeä osa näyttelyiden markkinointia ja viestintää." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/83505BC859366C2FC4F4250E8E0C22EE/Nayttely_Kirjava_vuosikymmen_julisteita_1970-luvun_arkkitehtuurinayttelyista" }, "location_extra_info": null, "name": { "fi": "Näyttely: Kirjava vuosikymmen – julisteita 1970-luvun arkkitehtuurinäyttelyistä" }, "description": { "fi": "<p>Julistetaiteen kulta-aikana 1970-luvulla julisteet olivat tärkeä osa näyttelyiden markkinointia ja viestintää.</p><p>Arkkitehtuurimuseon <i>Kirjava vuosikymmen</i> -näyttelyssä ajan visuaalista maailmaa tarkastellaan näyttelyjulisteiden kautta. Esillä olevat julisteet ovat peräisin Arkkitehtuurimuseon (silloin: Suomen rakennustaiteen museo) 1970-luvun aikana järjestämistä näyttelyistä. Ne heijastavat paitsi aikansa tyyliä myös arkkitehtuurin ja yhteiskunnan kehitystä.</p><p>Suomen rakennustaiteen museon (nykyisen Arkkitehtuurimuseon) järjestämänä nähtiin vuosina 1970–1979 huimat kahdeksankymmentä näyttelyä. Millaisia aiheita tuona aikana pidettiin arkkitehtuurinäyttelyn arvoisina? Näyttelyn ovat kuratoineet intendentti <b>Anna Autio</b> ja amanuenssi <b>Joona Rantasalo</b> Arkkitehtuurimuseosta.</p><p>Haluatko sukeltaa syvemmälle 1970-luvun maailmaan? <i>Betoniunelmia – ja muita näkymiä 1970-luvun arkkitehtuuriin</i> -näyttely on avoinna Arkkitehtuurimuseossa 17.5.–15.10.2023. Osoite: Kasarmikatu 24, Helsinki.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60533/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59931", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/3394236" }, "price": { "fi": "75/22,50 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4331, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:21.948332Z", "last_modified_time": "2023-09-07T14:23:21.948364Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731687.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4331/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:21.793157Z", "last_modified_time": "2023-11-14T06:13:15.296698Z", "date_published": null, "start_time": "2023-10-01T15: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, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/29EA3E2690F8C9D3EE838A0B8F185309/Stand_Up_Show_-_Nezlobin_Friends_K-18_" }, "location_extra_info": null, "name": { "fi": "Stand Up Show - Nezlobin & Friends (K-18)", "ru": "Александр Незлобин: Большой Stand Up концерт" }, "description": { "fi": "<p>1. lokakuuta Helsingissä pidetään Alexander Nezlobinin stand up -konsertti. Kuuluisa koomikko esittelee uuden ohjelman - \"Nezlobin ja ystävät\". Esityksen yleisöä odottaa yllätys - yhdessä Alexanderin kanssa lavalle nousevat suositut stand-up-artistit, Igor Meerson ja Denis Ivanov, lisää infoa heistä tässä: https://japnordicevents.com</p><p>Alexander Nezlobin on stand-up koomikko, näyttelijä, TV-juontaja, elokuvaohjaaja ja käsikirjoittaja, tuottaja, DJ, humoristi, entinen Comedy Clubin asukas. Koomikko toimi tuottajana ja käsikirjoittajana sitcomissa Nezlob, jossa hän puhui elämästään. Kuvaamiseen osallistui taiteilijan perhe ja ystävät sekä kutsutut julkkikset. Osallistunut useisiin komediaprojekteihin televisiossa. Valtavan suosion ansiosta taiteilija pääsi kansainvälisen tutkimusryhmän TNS Gallup Median 50 parhaan julkisuuden listalle.</p><p>Kaikille tutut ja läheiset aiheet herättävät varmasti yleisöä, ja kuuluisan stand-up-koomikon seurassa vietetty ilta tuo hyvän mielen ja ystävällisen hymyn.</p><p>Kesto n. 2 h, ei väliaikaa</p><p>Ikäraja: K18<br>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "ru": "<p>1 Октября в Хельсинки состоится стендап-концерт Александра Незлобина.<br>Известный комик представит новую программу — «Незлобин и друзья».<br>Зрителей шоу ожидает сюрприз — вместе с Александром на сцену выйдут<br>популярные стендап-артисты: Игорь Меерсон и Денис Иванов, о которых подробнее здесь: https://japnordicevents.com/</p><p>Александр Незлобин — стендап-комик, актёр, телеведущий, кинорежиссёр и сценарист, продюсер, диджей, юморист, бывший резидент Comedy Club. Комик выступил продюсером и сценаристом ситкома «Неzлоб», в котором рассказывал о своей жизни. В съемках принимали участие семья и друзья артиста, а также приглашенные знаменитости. Участвовал во многих комедийных проектах на ТВ. Благодаря огромной популярности, артист вошел в список топ-50 лучших публичных людей по версии международной исследовательской группы «TNS Gallup Media».<br> <br>«Мне кажется, что главное в стендапе — рассказывать зрителям о них через себя. Еще важно относиться к себе иронично». – признается Незлобин. В своих монологах Александр с тонкой иронией говорит про девушек, межличностные отношения, конфликты между мужчинами и женщинами, употребление алкоголя, глупых вопросах, школьных годах и шоу-бизнесе. Главный акцент юморист делает на стереотипы и шаблоны в поведении людей.<br> <br>Знакомые и близкие каждому темы обязательно найдут отклик у зрителей, а вечер проведенный в компании известного стендап-комика подарит хорошее настроение и добрую улыбку.<br> <br>*****</p>" }, "provider": { "fi": "Jap Nordic Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59931/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59462", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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: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": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3335753", "sv": "https://www.lippu.fi/eventseries/name-3335753", "en": "https://www.lippu.fi/eventseries/name-3335753" }, "price": { "fi": "59,50/39,50/32,50 €", "sv": "59,50/39,50/32,50 €", "en": "59,50/39,50/32,50 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4330, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:21.562823Z", "last_modified_time": "2023-09-07T14:23:21.562845Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728336.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4330/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:21.386047Z", "last_modified_time": "2023-11-14T06:13:15.215201Z", "date_published": null, "start_time": "2023-09-30T17: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, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B2299169A5AE87FF913AB8397581DC66/III_International_Queerlesque_Festival_in_Helsinki", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/B2299169A5AE87FF913AB8397581DC66/III_International_Queerlesque_Festival_in_Helsinki", "en": "http://www.savoyteatteri.fi/en/events/event/B2299169A5AE87FF913AB8397581DC66/III_International_Queerlesque_Festival_in_Helsinki" }, "location_extra_info": null, "name": { "fi": "III International Queerlesque Festival in Helsinki – Celebrate the Art of Burlesque and Queer", "sv": "III International Queerlesque Festival in Helsinki – Celebrate the Art of Burlesque and Queer", "en": "III International Queerlesque Festival in Helsinki – Celebrate the Art of Burlesque and Queer" }, "description": { "fi": "<p>Betty Fvck esittää: III INTERNATIONAL QUEERLESQUE FESTIVAL IN HELSINKI Savoy-teatterissa.Tervetuloa maailmanluokan festivaaliin, joka on täynnä Burleskia, Sirkusta, Dragia ja Queer-energiaa! Tässä festivaalissa koet mitä lumoavimpia ja henkeäsalpaavimpia esityksiä kaikkialta maailmasta. Me tuomme luoksesi Suomen suurimman Queer taiteen spektaakkelin! Show seuraa huikeaa menestystä vuosilta 2021 ja 2022, joka nähtiin myös Yle Areenassa. Queerlesque on aina ollut foorumi LGBT+ ja POC –yhteisöjen voimaannuttamiseksi. Tänä vuonna haluamme omistaa tämän projektin rasismin torjuntaan ja parempaan tasa-arvoon yhteiskuntaamme! Tule siis mukaan ja ole osa positiivista muutosta yhteiskunnassamme tämän queer-taideprojektin kautta!</p><p>PÄÄESIINTYJIÄT:<br>★KITTEN N' LOU (USA) - Kitten LaRue & Lou Henry Hoover - Multi-awared Burlesque icons: Best Duo, The Burlesque Hall of Fame 2019, Voted #1 Burlesque Performers in the world 2015, King of Boylesque, Mr. Exotic World 2017<br>★CHOCOLATE SHOWBOY (USA/FR) - Paris Moulin Rouge's Showboy<br>★TINUS DE SCHUNARD (USA) - Denmark's Legendary Diva Queen<br>★Mukana myös paikallisia supertähtiä: Betty Fvck, Ile Poikela, Minka Leskinen, Mysterikah, House of Sibelius ja monia muita</p><p>Ovet: 19.00, Show time: 20.00 - 22.45, sisältäen 30 min väliajan</p><p>Video aikaisemmasta showsta Savoy-teatterissa: https://youtu.be/g1q3hZpuBR8</p><p>Parhaan asun palkinto yleisölle: mahdollisuus voittaa palkintoja asulla joka on mahdollisimman Queer ja Extravaganza</p><p>Ikäraja: K18<br>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>About Betty Fvck’s Queerlesque<br>wearequeerlesque.com<br>Betty Fvck’s Queerlesque edustaa monimuotoisuutta, rohkeutta ja queeria. Olemme turvallinen tila monimuotoiselle queer-taiteelle ja -kulttuurille Helsingissä. Welcome to the Queer World of Burlesque, Boylesque, Draglesque, Circus and much more!</p>", "sv": "<p>Betty Fvck presenterar: III INTERNATIONAL QUEERLESQUE FESTIVAL IN HELSINKI på Savoyteatern. Välkommen på en festival i världsklass, full med Burlesk, Cirkus, Drag och Queerenergi! På den här festivalen får du uppleva de mest förtrollande och hisnande föreställningarna från hela världen. Vi tar Finlands största spektakel inom queerkonst till dig! Showen är en uppföljare till succéerna 2021 och 2022 som även visades på Yle Arenan.</p><p>Dörrar: 19.00, Showtime: 20.00–22.45, med 30 minuters paus</p><p>Artisterna publiceras sommaren 2023</p><p>Video från den tidigare showen i Savoyteatern: https://youtu.be/g1q3hZpuBR8</p><p>Bästa kostymen-pris för publiken: möjlighet att vinna priser med en kostym som maxar allt som är Queer och Extravaganza!</p><p>Åldersgräns: F18<br>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p><p>About Betty Fvck’s Queerlesque<br>wearequeerlesque.com<br>Betty Fvck’s Queerlesque representerar mångformighet, mod och queer. Vi är ett tryggt utrymme för mångformig queerkonst och -kultur i Helsingfors. Welcome to the Queer World of Burlesque, Boylesque, Draglesque, Circus and much more!</p>", "en": "<p>III INTERNATIONAL QUEERLESQUE FESTIVAL IN HELSINKI</p><p>Following the huge success of the of the last two editions, which was once highlighted on YLE. Betty Fvck presents: III INTERNATIONAL QUEERLESQUE FESTIVAL IN HELSINKI at Savoy-teatteri.</p><p>Welcome to a world-class festival full of Burlesque, Circus, Drag and Queerness! In this festival you will see some of the most mesmerising and breath-taking performances from all around the world. On the grand stage of Savoy theatre, combined with our stunning and professional decorations and light, we will bring you the most spectacular stage of Queer art in Finland, which was highlighted on YLE 1 and Areena in 2021. Our project has always been a platform to empower the community - the LGBT+ and the POC, this year we want to dedicate this project to fight against racism and bring better equality to our society. So come join us and unite through this queer art project, we will make positive change to our society!</p><p>HEADLINERS:<br>★KITTEN N' LOU (USA) - Kitten LaRue & Lou Henry Hoover - Multi-awared Burlesque icons: Best Duo, The Burlesque Hall of Fame 2019, Voted #1 Burlesque Performers in the world 2015, King of Boylesque, Mr. Exotic World 2017<br>★CHOCOLATE SHOWBOY (USA/FR) - Paris Moulin Rouge's Showboy<br>★TINUS DE SCHUNARD (USA) - Denmark's Legendary Diva Queen<br>★Together with local Queer superstars: Betty Fvck, Ile Poikela, Minka Leskinen, Mysterikah, House of Sibelius and more</p><p>Door: 19.00, Show time: 20.00 till 22.45 include a 30 mins intermission</p><p>Video of our previous festival in Savoy-theatre: https://youtu.be/g1q3hZpuBR8</p><p>Best costume prize for audience: A chance to win prizes by wearing the most Queer and Extravaganza outfits</p><p>Age limit: K18<br>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>About Betty Fvck’s Queerlesque<br>wearequeerlesque.com<br>Betty Fvck’s Queerlesque represents Diversity, Boldness and Queer. Welcome to the Queer World of Burlesque, Boylesque, Draglesque, Circus and much more. The Queerlesque Show provides a safe space for diverse queer art and culture in Helsinki. We are fighting against homophobia, transphobia and racism in art and society.</p>" }, "provider": { "fi": "We Are Queerlesque", "sv": "We Are Queerlesque", "en": "We Are Queerlesque" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59462/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 4979, "next": "