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&hide_recurring_children=true&page=236
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=237", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=235" }, "data": [ { "id": "kulke:61818", "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: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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6913, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-29T11:13:05.890344Z", "last_modified_time": "2024-02-06T13:23:28.446170Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742300.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6913/?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-12-29T11:13:05.873847Z", "last_modified_time": "2024-04-05T17:13:57.699098Z", "date_published": null, "start_time": "2024-03-27T07:15:00Z", "end_time": "2024-03-27T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/FA9EA2E81AB4C02F73FDF908CB259DC0/Taaperosirkuksen_alkeiskurssi", "sv": "http://www.stoa.fi/sv/evenemang/event/FA9EA2E81AB4C02F73FDF908CB259DC0/Smabarnscirkus_grundkurs", "en": "http://www.stoa.fi/en/events/event/FA9EA2E81AB4C02F73FDF908CB259DC0/Toddler_Circus_for_Beginners" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Taaperosirkuksessa pääset pitämään hauskaa naperosi kanssa turvallisessa, mutta virikkeellisessä ympäristössä. Kurssiaika: ke 20.3.-17.4. (5x) klo 9.15-10.</p><p>Pienten omalla sirkuskurssilla leikitään ja kokeillaan erilaisia sirkustaitoja kuten tasapainoilua, akrobatiaa ja jongleerausvälineitä. Lapsesi pääsee iloitsemaan kokonaisvaltaisesta aistikokemuksesta, joka edistää luovuutta ja hahmotuskykyä sekä kehittää tärkeitä taitoja, kuten tasapainoa, voimaa ja koordinaatiota. Aikuiset saavat samalla vetreyttää omia taitojaan, pääsevät tutustumaan muihin vanhempiin tai isovanhempiin sekä tietenkin luomaan läheistä suhdetta omaan pienokaiseensa.</p><p>Ohjaaja: sirkusohjaaja Enrique Salas <br>Taaperosirkuksen osallistujat: 1–2-vuotiaat, jo kävelevät lapset <br>Paikka: Stoan musiikkisali <br>Kesto: 5 x 45 min <br>Kieli: suomi, englanti ja espanja</p><p>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p><p>HUOM! Jos et mahtunut kurssille mukaan, mutta haluat päästä tutustumaan taaperosirkustoimintaan, voit tulla paikan päälle ennen kurssin alkua kokeilemaan onneasi. Otamme jokaisella kurssikerralla mukaan max kaksi lapsi-aikuinen-paria kokeilemaan harrastusta kertaluonteisesti, jos tilaa on.</p>", "sv": "<p>På småbarnscirkus får du ha kul med din lilla småtting i en säker men stimulerande miljö. 20.3.-17.4. (5x) klo 9.15-10</p><p>Cirkuskursen omfattar tio verkstadsträffar där man övar på och leker med olika cirkusfärdigheter såsom balansering, akrobatik och jongleringsutrustning.</p><p>Upplevelsen involverar även ditt barns alla sinnen, vilket uppmuntrar till kreativitet, utvecklar rumsuppfattningen och låter det träna på grundläggande färdigheter, såsom balans, styrka, koordination osv.</p><p>Instructor: circus instructor and performer Enrique Salas <br>Språk: engelska, spanska och finska <br>Åldersrekommendation: 1–2-åringar med föräldrar eller mor/farföräldrar <br>Längd: 5 x 45 min.</p><p>Fritt inträde, anmälningar fr.o.m. 10.1. klo 10 på www.stoa.fi</p><p>Info: hanna.westerholm@hel.fi</p>", "en": "<p>The toddler circus is a safe but stimulating environment for little ones with their parents. 20.3.-17.4. (5x) klo 9.15-10</p><p>The circus course includes ten workshops where participants play and experiment with different circus skills, such as balancing, acrobatics and juggling equipment.</p><p>It will be a complete sensory experience for your baby, encouraging creativity, laterality, developing spatial awareness and building on essential skills like balance, strength, coordination and more.</p><p>Instructor: circus instructor and performer Enrique Salas <br>Language: English, Spanish and Finnish <br>Age recommendation: 1–2 years old with a parent or grandparent <br>Duration: 5 x 45 min</p><p>Entrance free, pre-regisration starting from Jan 10th at 10. a.m. at www.stoa.fi</p><p>Info: hanna.westerholm@hel.fi</p>" }, "name": { "fi": "Taaperosirkuksen alkeiskurssi", "sv": "Småbarnscirkus grundkurs", "en": "Toddler Circus for Beginners" }, "short_description": { "fi": "Taaperosirkuksessa pääset pitämään hauskaa naperosi kanssa turvallisessa, mutta virikkeellisessä ympäristössä. Kurssiaika: ke 20.3.-17.4. (5x) klo 9.15-10.", "sv": "På småbarnscirkus får du ha kul med din lilla småtting i en säker men stimulerande miljö. 20.3.-17.4. (5x) klo 9.15-10", "en": "The toddler circus is a safe but stimulating environment for little ones with their parents. 20.3.-17.4. (5x) klo 9.15-10" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61818/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61975", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/event/indo-jazz-concert-malmitalo-18069929/", "sv": "https://www.lippu.fi/event/indo-jazz-concert-malmitalo-18069929/", "en": "https://www.lippu.fi/event/indo-jazz-concert-malmitalo-18069929/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7394, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-26T14:13:05.535165Z", "last_modified_time": "2024-02-06T13:23:28.355212Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744238.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7394/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-26T14:13:05.510041Z", "last_modified_time": "2024-04-05T17:13:57.638617Z", "date_published": null, "start_time": "2024-03-26T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B4BAA620F2EF9E6E5B9B14A98F60C6B1/Indian_Classical_Indo_Jazz_-konsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B4BAA620F2EF9E6E5B9B14A98F60C6B1/Indian_Classical_Indo_Jazz_konsert", "en": "http://www.malmitalo.fi/en/events/event/B4BAA620F2EF9E6E5B9B14A98F60C6B1/Indian_Classical_Indo_Jazz_Concert" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Intialaisen klassisen musiikin taiturit ja suomalaisen jazzin mestarit kohtaavat ja soittavat yhdessä ”East meets West” -hengessä. Klassista intialaista musiikkia ja indojazzia.</p><p>Saurabh Vartak & Saleel Tambe, Jani Malmi Trio (Jani Malmi, Eero Tikkanen, Markku Ounaskari), Juhani Aaltonen & Raoul Björkenheim</p><p><b>Konsertin ohjelma</b></p><p><b>Ensimmäinen osa: Intialainen klassinen konsertti (40 minuuttia)</b><br>Saurabh Vartak, huilu & Saleel Tambe, tabla</p><p>Väliaika 20 minuuttia</p><p><b>Toinen osa: Indo Jazz -konsertti (40 minuuttia)</b><br>Jani Malmi Trio <br>Jani Malmi, kitara, Eero Tikkanen, basso, Markku Ounaskari, rummut<br>Saurabh Vartak, huilu & Saleel Tambe, tabla</p><p>Väliaika 20 minuuttia</p><p><b>Kolmas osa: Indo Jazz -konsertti jatkuu (40 minuuttia)</b><br>Juhani Aaltonen, huilu & Raoul Björkenheim, kitara<br>Saurabh Vartak, huilu & Saleel Tambe, tabla</p><p>Konsertin kesto 160 minuuttia, kaksi väliaikaa</p><p>SAURABH VARTAK, INTIALAINEN KLASSINEN HUILU <br>Saurabh edustaa klassisen intialaisen musiikin pitkää perinnettä. Hän esiintyy sekä soolona että kokoonpanoissa tablan ja muiden soittimien säestyksellä. Saurabh tunnetaan legendaarisen Pandit Hariprasad Chaurasian oppilaana, ja he esiintyvät edelleen yhdessä. \"Musiikki on kuin meditaatiota\", Chaurasia on sanonut, ja \"huilu on jumalien oma soitin, koska Lord Krishna soitti sitä\". Saurabh työskentelee lisäksi elokuvateollisuuden ja populaarimusiikin parissa sekä opettajana. Saurabhin Flute Academy perustettiin helmikuussa 2018. Viime vuosina Saurabh on rakentanut kansainvälistä uraansa ulkomaankiertueillaan ja tekemällä yhteistyötä länsimaisten jazzmuusikoiden kanssa.</p><p>SALEEL TAMBE, TABLA <br>Saleel Tambe on ollut klassisen intialaisen musiikin mestareiden opissa jo lapsuudestaan lähtien. Häntä on opettanut muun muassa Pt. Ramdas Palsulen, joka itse on ollut tablan mestarin Taalyogi Pt. Suresh Talwalkarin oppilas. Saleel on taitava muusikkona niin tablasooloissa kuin klassisissa intialaisissa kokoonpanoissakin, olipa kyse sitten säestämisestä tai konsertoinnista. Hän on esiintynyt monilla arvostetuilla kulttuuriareenoilla ja festivaaleilla, kuten esimerkiksi House of Commonsissa, Southbank Centressä ja Victoria & Albert Museumissa, ja on ollut mukana monissa musiikkiprojekteissa ja studionauhoituksissa.</p><p>JANI MALMI TRIO <br>(Jani Malmi, kitara, Eero Tikkanen, basso, Markku Ounaskari, rummut) <br>Jani Malmi on suomalaisen jazzin tyylikkäimpiä kitaristeja hienovaraisessa ilmaisussaan jazzin valtavirran rinnalla. Sävellykset tarjoavat matkoja kuvitteellisiin maailmoihin, joissa raskaammat puristukset ja sointivärit sekoittuvat rytmiin ja melodisesti herkkiin harmonioihin. Jani Malmilla on luontainen yhteys intialaiseen klassiseen musiikkiin, ja hän on työskennellyt muun muassa Kamal Sabrin, Ulhas Bapetin ja Guitar Prasannan kanssa.</p><p>Markku Ounaskari on monipuolinen rumpali, jonka rytmitajuun ja nopeaan reagointiin voi luottaa jazzin useissa eri genreissä. Hän on soittanut yhdessä saksofonistien Sonny Heinilän, Manuel Dunkelin ja Esa Pietilän kanssa sekä monissa bändeissä ja kokoonpanoissa.</p><p>Basisti Eero Tikkanen on viime vuosina noussut suosituksi komppaajaksi suomalaisen jazzin kentällä. Eeron monipuolisuus ulottuu tanssittavasta groovejazzista aina vapaan jazzin projekteihin. Tikkasella riittää lavakarismaa ja taiteellista ilmaisuvoimaa. Tikkanen soittaa muun muassa seuraavissa yhtyeissä: Mopo, Mikko Innanen 10+, Magnetia Orkesteri sekä Joose Keskitalon yhtye.</p><p>JUHANI AALTONEN, HUILU & RAOUL BJÖRKENHEIM, KITARA <br>Juhani Aaltonen on suomalainen jazzlegenda ja vapaan improvisaation hengen ikoni, jonka sielukasta soittoa on kuultu kuuden vuosikymmenen ajan. Tenorisaksofonistaan tunnettuna hän keskittyy tässä duossa huiluun ja luo lyyristä musiikkimaailmaa yhdessä Raoul Björkenheimin ja Raoulin kaksikaulaisen sähkökitaran kanssa.</p><p>Yhteistyön lähes ylimaallinen kommunikaatio synnyttää lennosta uusia kappaleita, jotka sulautuvat alkuperäisiin sävellyksiin. Molemmat tekivät vuosia yhteistyötä ainutlaatuisen jazzikonin Edward Vesalan kanssa, ja ovat myös vahvasti esillä Vesalan diskografiassa.</p>", "sv": "<p>Mästare i indisk klassisk musik och mästare i finsk jazz möts och spelar tillsammans i \"öst möter väst\"-anda. Klassisk indisk musik och indo jazz.</p><p>Saurabh Vartak & Saleel Tambe, Jani Malmi Trio (Jani Malmi, Eero Tikkanen, Markku Ounaskari) & Juhani Aaltonen & Raoul Björkenheim.</p><p>KONSERT PROGRAMMET</p><p><b>Del ett: Indisk klassisk konsert (40 minuter)</b></p><p>Saurabh Vartak, flöjt & Saleel Tambe, tabla</p><p>Intervalltid 20 minuter</p><p><b>Del två: Indo Jazz Concert (40 minuter)</b></p><p>Jani Malmi Trio <br>Jani Malmi, gitarr, Eero Tikkanen, bas, Markku Ounaskari, trummor</p><p>Saurabh Vartak, flöjt & Saleel Tambe, tabla</p><p>Intervalltid 20 minuter</p><p><b>Tredje delen: Indo Jazz konsert fortsätter (40 minuter)</b></p><p>Juhani Aaltonen, flöjt & Raoul Björkenheim, gitarr</p><p>Saurabh Vartak, flöjt & Saleel Tambe, tabla</p><p>Konsertens längd är 160 minuter, två pauser</p>", "en": "<p>Indian upcoming masters present their own Classical Indian music and collaborate with Finnish Jazz icons & masters in the spirit of East meets West.</p><p>Saurabh Vartak & Saleel Tambe, Jani Malmi Trio (Jani Malmi, Eero Tikkanen, Markku Ounaskari), Juhani Aaltonen & Raoul Björkenheim</p><p><b>First part: Indian Classical Concert (40 minutes)</b></p><p>Saurabh Vartak, flute & Saleel Tambe, tabla</p><p>Intermission 20 minutes</p><p><b>Second part: Indo Jazz Concert (40 minutes)</b></p><p>Jani Malmi Trio <br>Jani Malmi, guitar, Eero Tikkanen, bass, Markku Ounaskari, drums</p><p>Saurabh Vartak, flute & Saleel Tambe, tabla</p><p>Intermission 20 minutes</p><p><b>Third Part: Indo Jazz Concert (40 minutes)</b></p><p>Juhani Aaltonen, flute & Raoul Björkenheim, guitar</p><p>Saurabh Vartak, flute & Saleel Tambe, tabla</p><p>Time total 160 minutes</p><p>SAURABH VARTAK, INDIAN CLASSICAL FLUTE <br>Saurabh Vartak has his musical background in Indian Classical music. He started his music studies early. Besides solo concerts he performs Indian Classical concerts accompanied by tabla and other instruments. Saurabh is known as a disciple of legendary flautist Pandit Hariprasad Chaurasia and is still performing with him. “Music is like meditation”, Chaurasia has said, and “flute is god’s own instrument because Lord Krishna played it”. Saurabh is not only a performing artist but also works for film industry and popular music and as a teacher. Saurabh’s Flute Academy was founded in February 2018. In recent years Saurabh has been building his international career by touring abroad. <br> <br>SALEEL TAMBE, TABLA <br>Saleel Tambe is fortunate to have been associated since his childhood with musical stalwarts. Saleel continues to receive advanced Tabla training from Pt Ramdas Palsule, a disciple of Taalyogi Padmashree Pt Suresh Talwalkar. Saleel is equally adept in Tabla solos and accompaniment to Vocal, Instrumental & Kathak dance as well as fusion with western musicians. Over the last decade, he is fortunate to have performed with many renowned musicians, participating in festivals and events at most of the prestigious venues like House of Commons, Southbank Centre, Fairfield Halls, Victoria & Albert Museum. He has been associated with several music projects, radio, television shows. He has also contributed for several studio recordings and releases. <br> <br>JANI MALMI TRIO (Jani Malmi, guitar, Eero Tikkanen, bass, Markku Ounaskari, drums) <br>Jani Malmi is one of the most stylish guitarists in Finnish jazz looking discretely for an expression beside the typical in jazz. His compositions are journeys into imaginary worlds with differing styles. He has a natural connection to Indian Classical music and has worked with Indian classical musicians like Kamal Sabri, Ulhas Bapet and Guitar Prasanna.</p><p>Markku Ounaskari is a versatile drummer whose delicate sense of rhythm and fast reacting can be trusted in various jazz genres. His skills have been heard in bands of i.a. saxophonists Sonny Heinilä, Manuel Dunkel and Esa Pietilä.</p><p>Bassist Eero Tikkanen has become a sought-after bass player in the field of Finnish jazz. The versatility of the young bassist stretches from danceable groove to projects of free jazz. He is known as a charismatic and expressive live performer. Currently, Tikkanen plays in the ranks of such groups as Mopo, Mikko Innanen 10+, Magnetia Orkesteri and in the band of folk artist Joose Keskitalo. <br> <br>JUHANI AALTONEN, FLUTE & RAOUL BJÖRKENHEIM, GUITAR <br>Juhani Aaltonen is a living Finnish jazz legend, a true icon of the spirit of free improvisation, whose soulful playing spans six decades. Known mainly for his tenor sax, \"Junnu\" focuses on flutes in this duo and creates a lyrical music world with Raoul Björkenheim who contributes on his double-neck electric guitar. Their communication allows them to create new pieces on the fly, which they intersperse with original compositions. Both spent years collaborating with another Finnish icon, Edward Vesala, whose music stands out for its unfettered originality, and they are both prominent in Vesala’s discography.</p>" }, "name": { "fi": "Indian Classical & Indo Jazz -konsertti", "sv": "Indian Classical & Indo Jazz konsert", "en": "Indian Classical & Indo Jazz Concert" }, "short_description": { "fi": "Intialaisen klassisen musiikin taiturit ja suomalaisen jazzin mestarit kohtaavat ja soittavat yhdessä ”East meets West” -hengessä. Klassista intialaista musiikkia ja indojazzia.", "sv": "Mästare i indisk klassisk musik och mästare i finsk jazz möts och spelar tillsammans i \"öst möter väst\"-anda. Klassisk indisk musik och indo jazz.", "en": "Indian upcoming masters present their own Classical Indian music and collaborate with Finnish Jazz icons & masters in the spirit of East meets West." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61975/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60107", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "45 €", "sv": "45 €", "en": "45 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3408327", "sv": "https://www.lippu.fi/eventseries/name-3408327", "en": "https://www.lippu.fi/eventseries/name-3408327" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4672, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:44.809205Z", "last_modified_time": "2024-02-06T13:23:28.265161Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732378.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4672/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:28:44.661550Z", "last_modified_time": "2024-04-05T17:13:57.577135Z", "date_published": null, "start_time": "2024-03-26T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/DEAA2A8AC53E36598604794F2AE3592C/Someone_Like_You_-_The_Adele_Songbook", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/DEAA2A8AC53E36598604794F2AE3592C/Someone_Like_You_-_The_Adele_Songbook", "en": "http://www.savoyteatteri.fi/en/events/event/DEAA2A8AC53E36598604794F2AE3592C/Someone_Like_You_-_The_Adele_Songbook" }, "provider_contact_info": null, "provider": { "fi": "Loud'n Live Promotion Oy", "sv": "Loud'n Live Promotion Oy", "en": "Loud'n Live Promotion Oy" }, "description": { "fi": "<p>Someone Like You – The Adele Songbook on upea ja sykähdyttävä konserttiesitys, jossa solistina toimii englantilainen laulajatar Katie Markham. Markham ja superlahjakas bändi tarjoavat uskomattoman kattauksen kaikista Adelen suosikki hiteistä.</p><p>Lahjakkaan, vuoden 2013 X-Factor finalistin Katie Markhamin jo valmiiksi hyvässä nosteessa ollut ura sai yllättävän käänteen, kun hänet ja muutama muu Adelen ääntä ja persoonaa jäljittelevää naislaulajaa kutsuttiin esiintymään yhdessä Adelen kanssa suosittuun BBC – Graham Norton Show -tv-ohjelmaan. Ohjelmassa sielukas Katie tulkitsi hitin Hello Adelen persoonallista ja voimakasta ääntä taitavasti mukaillen.</p><p>Someone Like You – The Adele Songbook on kerännyt ylistystä niin yleisöltä kuin musiikkikriitikoilta ympäri maailmaa. Erityisesti Katie Markhamin lauluääni, tulkinta ja lauluvalinnat ovat innostaneet kriitikot ylisanoihin. Hehkutusta mediassa ovat saaneet myös konsertissa esiintyvä nelimiehinen yhtye ja taustalaulajat.</p><p>Konsertti on täydellinen Adele-faneille, koska se uudelleenluo uskollisesti Adelen neljä läpimurtoa tehnyt levyä. Someone Like You - konserttiesitys valloittaa Helsingin Savoy-teatterin 26.3.2024. Ovet aukeavat klo 18.00 ja esitys alkaa klo 19.00. Esitys kestää noin 2 tuntia ja sisältää 30 minuutin väliajan.</p><p>Valmistaudu rakastumaan uudelleen niihin kappaleisiin, jotka ovat löytäneet tiensä meidän sydämiimme; Make You Feel My Love, Someone Like You, Rolling In The Deep ja Skyfall.. unohtamatta Adelen uutta tuotantoa kuten 'Easy On Me', 'I Drink Wine', 'Oh My God' ja monta muuta!</p><p>Ikäraja: S</p>", "sv": "<p>Someone Like You – The Adele Songbook är ett fantastisk och bedårande konsertframträdande av den brittiska sångerskan Katie Markham. Markham och det extremt talangfulla bandet bjuder på en otrolig uppsättning av alla Adeles favorithits.</p><p>Finalisten i 2013 års upplaga av X-Factor, begåvade Katie Markham hade redan fått bra flyt på karriären, när den tog en oväntad vändning då hon och några andra kvinnliga sångare, som imiterade Adeles röst och personlighet, bjöds in att uppträda på det populära BBC-programmet Graham Norton Show tillsammans med Adele. Själfulla Katie tolkade Adeles hitlåt Hello på programmet och parafraserade skickligt originalartistens personliga och kraftfulla röst.</p><p>Someone Like You – The Adele Songbook har lovordats av både publiken och musikkritikerna runt om i världen. I synnerhet Katie Markhams sångröst, tolkningar och låtval har fått kritikerna att ösa ur sig superlativ. Också fyrmannabandet och bakgrundsvokalisterna som spelar på konserten har hyllats i medierna.</p><p>Konserten är perfekt för Adele-fans eftersom den troget återskapar Adeles fyra album som alla slagit genom med kraft. Konsertföreställningen Someone Like You tar över Savoyteatern i Helsingfors den 26 mars 2024. Dörrarna öppnas kl. 18.00 och föreställningen börjar kl. 19. Föreställningen är ungefär två timmar lång, inklusive 30 minuters paus.</p><p>Förbered dig på att på nytt bli förälskad i låtarna som krupit in i våra hjärtan: Make You Feel My Love, Someone Like You, Rolling In The Deep och Skyfall – utan att glömma Adeles nya produktioner såsom Easy On Me, I Drink Wine, Oh My God och många fler!</p><p>Åldersgräns: T</p>", "en": "<p>Someone Like You – The Adele Songbook is a stunning and stirring concert performance featuring English singer Katie Markham as soloist. Markham and her super talented band will offer an incredible set of all the favourite Adele hits.</p><p>The already blossoming career of the talented X-Factor 2013 finalist Katie Markham took a surprising turn when she and a few other female singers who emulate Adele’s voice and personality were invited to perform with Adele on the popular BBC TV show The Graham Norton Show. On the show, the soulful Katie performed the hit song Hello, skilfully imitating Adele’s personal and powerful voice.</p><p>Someone Like You – The Adele Songbook has garnered praise from audiences and music critics around the world. In particular, Katie Markham’s singing voice, interpretation and song choices have received critical acclaim. The four-piece band and backing singers have also been praised in the media.</p><p>The concert will be perfect for Adele fans as it faithfully recreates Adele’s four breakthrough albums. The Someone Like You concert show will take over Savoy Theatre in Helsinki on 26 March 2024. The doors will open at 18:00 and the performance will start at 19:00. The duration of the performance will be approximately 2 hours, including a 30-minute intermission.</p><p>Be prepared to fall in love all over again with the songs that have found their way into our hearts; Make You Feel My Love, Someone Like You, Rolling In The Deep and Skyfall... not forgetting new Adele hits like Easy On Me, I Drink Wine, Oh My God and many more!</p><p>Age limit: all ages</p>" }, "name": { "fi": "Someone Like You - The Adele Songbook", "sv": "Someone Like You - The Adele Songbook", "en": "Someone Like You - The Adele Songbook" }, "short_description": { "fi": "Someone Like You – The Adele Songbook on upea ja sykähdyttävä konserttiesitys, jossa solistina toimii englantilainen laulajatar Katie Markham. Markham ja superlahjakas bändi tarjoavat uskomattoman kattauksen kaikista Adelen suosikki hiteistä." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60107/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61790", "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: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:p4354/?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": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6869, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-28T10:12:47.677122Z", "last_modified_time": "2024-02-06T13:23:28.174258Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742285.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6869/?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-12-28T10:12:47.664864Z", "last_modified_time": "2024-04-05T17:13:57.516884Z", "date_published": null, "start_time": "2024-03-26T15:30:00Z", "end_time": "2024-03-26T16:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E203E54B9469152A95D0BC39F5AD72A6/Stoan_perhesirkuskurssi_", "sv": "http://www.stoa.fi/sv/evenemang/event/E203E54B9469152A95D0BC39F5AD72A6/Cirkus_for_familjer_", "en": "http://www.stoa.fi/en/events/event/E203E54B9469152A95D0BC39F5AD72A6/Circus_course_for_families_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Stoan notkea sirkusryhmä 3–6-vuotiaille lapsille ja heidän aikuisilleen. Kymmenen opetuskerran kurssi: ti 6.2. -16.4. klo 17.30-18.15 (ei talvilomaviikolla ti 20.2.).</p><p>Sirkus on aina herättänyt uteliaisuutta ja iloa niin isoissa kuin pienissäkin. Tämä lapsen ja aikuisen yhteinen harrastus avaa ovia sirkuksen maailmaan.</p><p>Sirkuskurssilla leikitään ja kokeillaan erilaisia sirkustaitoja kuten tasapainoilua, akrobatiaa ja jongleerausvälineitä. Lapsesi pääsee iloitsemaan kokonaisvaltaisesta aistikokemuksesta, joka edistää luovuutta ja hahmotuskykyä sekä kehittää tärkeitä taitoja, kuten tasapainoa, voimaa ja koordinaatiota. Aikuiset saavat samalla vetreyttää omia taitojaan, pääsevät tutustumaan muihin vanhempiin tai isovanhempiin sekä tietenkin luomaan läheistä suhdetta omaan lapseensa.</p><p>Ohjaaja: Enrique Salas <br>Kesto: 10 x 45 min <br>Max. osallistujamäärä: 12 paria <br>Kielet: englanti, espanja, suomi <br>Maksuton.</p><p>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.</p><p>HUOM! Jos et mahtunut kurssille mukaan, mutta haluat päästä tutustumaan perhesirkustoimintaan, voit tulla paikan päälle ennen kurssin alkua kokeilemaan onneasi. Otamme jokaisella kurssikerralla mukaan max kaksi lapsi-aikuinen-paria kokeilemaan harrastusta kertaluonteisesti, jos tilaa on.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Cirkus är något som väckt nyfikenhet och glädje i familjer genom tiderna. 6.2. -16.4. kl 17.30-18.15</p><p>Nu är det dags för skoj och lek i cirkusens magiska värld. Upplevelsen involverar även ditt barns alla sinnen, vilket uppmuntrar till kreativitet, utvecklar rumsuppfattningen och låter det träna på grundläggande färdigheter, såsom balans, styrka, koordination osv. Föräldrar får pröva på cirkuskonst och självklart också knyta an till sitt eget barn.</p><p>Lektioner för barn i åldern 3–6 tillsammans med vuxen.</p><p>Instruktör: cirkusinstruktören och artisten Enrique Salas <br>Längd: 10 x45 min. <br>Språk: engelska, spanska och finska <br>Fritt inträde</p><p>Obligatorisk förhandsregistrering fr.o.m. 10.1. kl 10. www.stoa.fi<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>The circus has awoken curiosity and joy for families during ages. Tue 6.2. -16.4. at 17.30-18.15</p><p>Now it is time to have fun with your little toddler throughout the magic of circus. It will be a complete sensory experience for your child, encouraging creativity, laterality, developing spatial awareness and building on essential skills like balance, strength, coordination and more. Parents will get a chance to have a go at some circus skills and of course bond with your own little one.</p><p>Classes for children from 3 to 6 years of age accompanied by an adult.</p><p>Instructor: circus instructor and performer Enrique Salas <br>Duration: 10 x 45 min <br>Languages: English, Spanish, Finnish <br>Free entry</p><p>Pre-registration starting from Jan 10th at 10 a.m. at stoa.fi<br>More info: hanna.westerholm@hel.fi</p>" }, "name": { "fi": "Stoan perhesirkuskurssi", "sv": "Cirkus för familjer", "en": "Circus course for families" }, "short_description": { "fi": "Stoan notkea sirkusryhmä 3–6-vuotiaille lapsille ja heidän aikuisilleen. Kymmenen opetuskerran kurssi: ti 6.2. -16.4. klo 17.30-18.15 (ei talvilomaviikolla ti 20.2.).", "sv": "Cirkus är något som väckt nyfikenhet och glädje i familjer genom tiderna. 6.2. -16.4. kl 17.30-18.15", "en": "The circus has awoken curiosity and joy for families during ages. Tue 6.2. -16.4. at 17.30-18.15" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61790/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61781", "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:354/?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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6856, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-28T09:14:16.722960Z", "last_modified_time": "2024-02-06T13:23:28.082045Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742275.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6856/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-12-28T09:14:16.696631Z", "last_modified_time": "2024-04-05T17:13:57.468793Z", "date_published": null, "start_time": "2024-03-26T14:00:00Z", "end_time": "2024-03-26T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/D60A0A80A3F8FCE4CB82B6365EE64221/Stoan_seniorisirkuskurssi_", "sv": "http://www.stoa.fi/sv/evenemang/event/D60A0A80A3F8FCE4CB82B6365EE64221/Cirkus_for_seniorer_", "en": "http://www.stoa.fi/en/events/event/D60A0A80A3F8FCE4CB82B6365EE64221/Circus_course_for_seniors_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Liikunnan ei tarvitse olla tylsää! Ikäihmisten kymmenen opetuskerran sirkuskurssilla tehdään muun muassa tasapaino- ja liikkuvuusharjoituksia sirkusvälineillä. Kurssiaika: ti 6.2. -16.4. klo 16-17 (ei talvilomaviikolla ti 20.2.).</p><p>Sirkusliikuntataidot pidentävät elinikää ja parantavat elämänlaatua pureutumalla etenkin ikääntyviä koskeviin tarpeisiin, kuten tasapainoon ja notkeuteen, muistiin ja virkeyteen, kiputilojen vähentämiseen ja sosiaaliseen kanssakäymiseen. Kevyet ja tehokkaat venytys- ja liikerataharjoitukset parantavat ja ylläpitävät vartalon koordinaatiota, tasapainoa ja kehonhallintaa. Laji ei vaadi pohjakuntoa, vaan pelkkä halu oppia uusia taitoja hauskalla tavalla riittää. Tervetuloa mukaan – rohkeus palkitaan!</p><p>Ohjaaja: sirkusohjaaja Enrique Salas <br>Paikka: Stoan musiikkisali <br>Kesto: 10 x 60 min <br>Max. osallistujamäärä: 20<br>Kieli: englanti, espanja, suomi <br>Maksuton</p><p>Ennakkoilmoittautuminen ke 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla puolella olevan Ilmoittaudu-näppäimen kautta.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.</p><p>Cirkuskonst är ett förträfflig sätt att förlänga livet och öka livskvaliteten genom att fokusera på behov som är specifikt kopplade till åldrande, inklusive balans och vighet, minne och minnesprocesser, smärthantering och sociala relationer. Inga krav ställs på kondition eller former – det enda målet är att ha roligt och lära sig nya saker, göra lätta till moderata stretchövningar samt en rad konditionsaktiviteter som syftar till förbättrad och bibehållen koordination mellan händerna, balans och hållning. Aktiviteterna kan göras sittande eller stående.</p><p>Instruktör: cirkusinstruktören och artisten Enrique Salas <br>Åldersrekommendation: för seniorer <br>Längd: 10 x 60 min <br>Språk: engelska, spanska och finska <br>Fritt inträde</p><p>Obligatorisk förhandsregistrering fr.o.m. 10.1.2024 kl 10.00 på stoa.fi.</p><p>Info: hanna.westerholm@hel.fi</p>", "en": "<p>At the senior circus course, the participants get to, for example, practise their balance and mobility using circus equipment.</p><p>Circus skills are excellent to increase longevity and boost the quality of life by addressing needs specific to aging including balance and flexibility, memory and processing, pain management, and social connection. It is not necessary for any condition or shape just the aim for fun and learning new skills, light to moderate stretching and range of motion activities to improve and maintain bi-manual coordination, balance, and postural control.</p><p>Instructor: circus instructor and performer Enrique Salas <br>Age recommendation: for senior citizens <br>Duration: 10 x 60 min <br>Languages: English, Spanish, Finnish <br>Free entry</p><p>Pre-registration starting from Jan 10th at 10 a.m. at stoa.fi</p><p>More info: hanna.westerholm@hel.fi</p>" }, "name": { "fi": "Stoan seniorisirkuskurssi", "sv": "Cirkus för seniorer", "en": "Circus course for seniors" }, "short_description": { "fi": "Liikunnan ei tarvitse olla tylsää! Ikäihmisten kymmenen opetuskerran sirkuskurssilla tehdään muun muassa tasapaino- ja liikkuvuusharjoituksia sirkusvälineillä. Kurssiaika: ti 6.2. -16.4. klo 16-17 (ei talvilomaviikolla ti 20.2.).", "sv": "Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.", "en": "At the senior circus course, the participants get to, for example, practise their balance and mobility using circus equipment." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61781/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61210", "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: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: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/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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6454, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-07T09:13:54.983458Z", "last_modified_time": "2024-02-06T13:23:27.994381Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739215.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6454/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-07T09:13:54.962192Z", "last_modified_time": "2024-04-05T17:13:57.387068Z", "date_published": null, "start_time": "2024-03-26T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6B52E94CD27AC0DD71E436BD8DB2A6F4/Iltapaivatanssit", "sv": "http://www.stoa.fi/sv/evenemang/event/6B52E94CD27AC0DD71E436BD8DB2A6F4/Eftermiddagsdans", "en": "http://www.stoa.fi/en/events/event/6B52E94CD27AC0DD71E436BD8DB2A6F4/Afternoon_dance" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Sään mukaan keväämmällä voidaan tanssia myös Stoan aukiolla. Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi</p>", "sv": "<p>Danser under Katjas och Jussis järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska</p>", "en": "<p>Dancing with professional guidance from Katja and Jussi in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish</p>" }, "name": { "fi": "Iltapäivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "sv": "Eftermiddagsdans – Med Jussi Väänänen och Katja Koukkula", "en": "Afternoon dance – With Jussi Väänänen and Katja Koukkula" }, "short_description": { "fi": "Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan.", "sv": "Danser under Katjas och Jussis järnhårda och professionella ledning i Stoas aula.", "en": "Dancing with professional guidance from Katja and Jussi in the lobby of Stoa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61210/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61169", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6889, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-28T14:14:05.703796Z", "last_modified_time": "2024-02-06T13:23:27.718774Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738166.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6889/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-28T14:14:05.675043Z", "last_modified_time": "2024-04-05T17:13:57.269111Z", "date_published": null, "start_time": "2024-03-25T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B26D5F56AEE8B67B832337D4144DEB40/Kino_Kuutamo_Virpi_Suutari_Aalto", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B26D5F56AEE8B67B832337D4144DEB40/Kino_Kuutamo_Virpi_Suutari_Aalto", "en": "http://www.kanneltalo.fi/en/events/event/B26D5F56AEE8B67B832337D4144DEB40/Kino_Kuutamo_Virpi_Suutari_Aalto" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Rakkaustarina aikaansa edellä olleesta taiteilijapariskunnasta.</p><p>Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa illan elokuvaan klo 17–17.45. Luennon jälkeen klo 18 alkaa elokuvan ilmaisnäytös. Kino Kuutamon ohjelmistossa esitellään keväällä 2024 suomalaisohjaajien rakkausteemaisia elokuvia.</p><p>Aalto on palkitun dokumentaristin Virpi Suutarin dokumenttielokuva modernismin mestareista arkkitehti Alvar ja Aino Aallosta sekä heidän teoksistaan ympäri maailmaa. Aino Aallon tarina Alvarin tasa-arvoisena kollegana nousee ansaitusti esiin. Syvälliseen arkistotyöhön ja nykypäivässä kuvattuun materiaaliin pohjautuva dokumentti kuljettaa katsojan kiehtovalle matkalle Aaltojen rakkaustarinaan ja heidän ajatteluunsa ikonisten teosten taustalla.</p><p>Elokuva avaa poikkeuksellisen pariskunnan elämää ja yhteistyön taustoja. Siinä on runsaasti ennennäkemätöntä ja -kuulematonta arkistomateriaalia, kuten Aaltojen rakkauskirjeitä sekä Göran Schildtin Aallon elämänkertaa varten nauhoittamia taustahaastatteluja. Elokuva perustuu laajaan taustatyöhön ja sitä varten on haastateltu Aaltojen läheisiä ja kansainvälisiä huippututkijoita eri puolilla maailmaa. Elokuvassa vieraillaan monissa Suomen Aalto-kohteissa Helsingissä, Imatralla, Jyväskylässä, Rovaniemellä, Seinäjoella ja Säynätsalossa sekä Venetsian Paviljongissa, Viipurin kirjastossa ja Cambridgessa. Matkalla kohdataan myös Rockefellerit, Le Corbusier sekä monia muita legendaarisia kulttuurihahmoja. Keskiössä on ihminen, inhimillinen Alvar Aalto.</p><p>Elokuvassa henkilökohtainen tarina kietoutuu orgaanisella tavalla arkkitehtuuriin ja työhön. Se on elokuva rohkeista ja aikaansa edellä olleista luovista taiteilijoista ja yrittäjistä, Alvarista, Ainosta ja Elissasta, jonka kanssa Aalto meni naimisiin 1952 Ainon kuoleman jälkeen.</p><p>Ikäraja: K7<br>Kesto: 1 t 43 min<br>Ohjaaja: Virpi Suutari<br>Pääosissa: Alvar Aalto, Aino Aalto, Elissa Aalto<br>Genre: dokumentti, taide<br>Ensi-ilta: 4.9.2020</p><p><u><a href=\"http://www.kanneltalo.fi/maksuttomat-maanantait\">Maksuttomat maanantait</a></u> on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>En kärlekshistoria om ett konstnärspar som var före sin tid.</p><p>Aalto är en dokumentärfilm av den prisbelönta dokumentäristen Virpi Suutari om modernismens mästare arkitekt Alvar och Aino Aalto och deras verk över hela världen.</p><p>Åldersgräns: 7<br>Längd: 1 t. 43 min.</p><p><u><a href=\"https://www.kanneltalo.fi/sv/konstadsfria-mandagar\">Kostnadsfria måndagar</u></a> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>A love story about an artist couple ahead of their time.</p><p>Aalto is a documentary by award-winning documentarian Virpi Suutari about the masters of modernism, architects Alvar and Aino Aalto, and their works around the world.</p><p>Age rating: 7<br>Duration 1 h 43 min</p><p><u><a href=\"https://www.kanneltalo.fi/en/free-mondays\">Free Mondays</u></a> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "name": { "fi": "Kino Kuutamo: Virpi Suutari – Aalto – Maksuttomat maanantait", "sv": "Kino Kuutamo: Virpi Suutari – Aalto – Kostnadsfria måndagar", "en": "Kino Kuutamo: Virpi Suutari – Aalto – Free Mondays" }, "short_description": { "fi": "Rakkaustarina aikaansa edellä olleesta taiteilijapariskunnasta.", "sv": "En kärlekshistoria om ett konstnärspar som var före sin tid.", "en": "A love story about an artist couple ahead of their time." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61169/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61867", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7089, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-10T13:13:02.217337Z", "last_modified_time": "2024-02-06T13:23:27.624072Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736595.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7089/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-10T13:13:02.203403Z", "last_modified_time": "2024-04-05T17:13:57.215257Z", "date_published": null, "start_time": "2024-03-25T08:15:00Z", "end_time": "2024-03-25T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/99B557A213B11BF74A0887A10622859A/Tanssi_ja_leikki_", "sv": "http://www.caisa.fi/sv/evenemang/event/99B557A213B11BF74A0887A10622859A/Dans_och_lek", "en": "http://www.caisa.fi/en/events/event/99B557A213B11BF74A0887A10622859A/The_dance_and_play" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p>", "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.<br>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska</p>", "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p>" }, "name": { "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek – Verkstaden", "en": "The dance and play – Workshop" }, "short_description": { "fi": "Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61867/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61866", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7088, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-10T13:13:02.138175Z", "last_modified_time": "2024-02-06T13:23:27.526514Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736578.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7088/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-10T12:13:07.209635Z", "last_modified_time": "2024-04-05T17:13:57.165060Z", "date_published": null, "start_time": "2024-03-25T07:15:00Z", "end_time": "2024-03-25T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9D1EC21DA6130177F096F95A0514F9B6/Tanssi_ja_leikki", "sv": "http://www.caisa.fi/sv/evenemang/event/9D1EC21DA6130177F096F95A0514F9B6/Dans_och_lek", "en": "http://www.caisa.fi/en/events/event/9D1EC21DA6130177F096F95A0514F9B6/The_dance_and_play" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p><b>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</b></p>", "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid.</p><p><b>Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med. </b></p><p>Språk: finska</p>", "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p>" }, "name": { "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek – Verkstaden", "en": "The dance and play – Workshop" }, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61866/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61811", "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: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:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/%20name-3560131", "sv": "https://www.lippu.fi/eventseries/%20name-3560131", "en": "https://www.lippu.fi/eventseries/%20name-3560131" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6897, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-29T09:14:35.463106Z", "last_modified_time": "2024-02-06T13:23:27.431371Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738540.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6897/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-29T09:14:35.438571Z", "last_modified_time": "2024-04-05T17:13:57.108927Z", "date_published": null, "start_time": "2024-03-24T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/97FD5655603C4BB686DFA165028CD543/_V_-_LOPPUUNMYYTY", "sv": "http://www.caisa.fi/sv/evenemang/event/97FD5655603C4BB686DFA165028CD543/_V_-_UTSALD", "en": "http://www.caisa.fi/en/events/event/97FD5655603C4BB686DFA165028CD543/_V_-_SOLD_OUT" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>\"V\" on sirkustaiteilija Viivi Roihan omaelämäkerrallinen fiktio, joka käsittelee päätöstä irtaantua entisestä.</p><p>Se on mielikuvituspäiväkirja muutoksesta ja sen mukanaan tuomasta aaltoilevasta liikkeestä.<br> <br>Roihan avoin, herkkä ja fyysisesti vaikuttava esitys tapahtuu lähes tyhjällä näyttämöllä. Ranskalaisen Mika Pussen immersiivinen live-musiikki on olennainen osa esitystä. Kolmas esiintyjä, lyhyt köydenpätkä, kuljettaa sekä esiintyjää että katsojaa halki eri korkeuksien ja tilanteiden, kohti haavoittuvuuden voimaa.<br> <br>Viivi Roiha on Ranskassa asuva ilma-akrobaatti. Hän on työskennellyt yli kymmenen vuotta eri sirkusryhmissä Suomessa ja kansainvälisesti, luoden samalla omia teoksiaan yhteistyössä kollegoidensa kanssa.</p><p>\"V\" on Viivin ensimmäinen sooloesitys. Se pohjaa pitkäjänteiseen työskentelyyn lyhyeksi leikatulla versiolla hänen elämänmittaisesta partneristaan, katosta lattiaan ylettyvästä vertikaaliköydestä. Köyden lyhyys avaa uusia mahdollisuuksia välineen käytössä lattialla ja tuo lisää vaaraan tuntua ilmassa.</p><p>Työryhmä<br>Konsepti ja esiintyminen: Viivi Roiha<br>Äänisuunnittelu ja musiikki : Mika Pusse<br>Teknikko: Anaëlle Husein Sharif Khalil<br>Taiteellinen yhteistyö: Henna Kaikula, Emi Sri Hartati Combet, Pascaline Herveet<br>Valosuunnittelu: Loïc Chauloux<br>Kiitos: Hervé Banache and Mira Ravald<br>Tuotanto: Sirkus Aikamoinen / Jouni Ruuth sekä L’Avant Courrier / Anne Heuveline</p><p>Kesto: 50 min (ei väliaikaa)<br>Ikäsuositus: 12+</p><p>Esitys sisältää lyhyen puheosuuden, mutta sopii myös katsojille, jotka eivät ymmärrä suomea.</p><p>Liput 15 € / 6 € osoitteesta lippu.fi. Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä.</u></a> Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi</p><p>*</p><p>Thanks to all our partners<br>Finalist circusnext 2023, project co-financed by the European Union. The project is also supported by the agreement French Institute and City of Nantes, by The Arts Promotion Centre Finland (Taike), by RueWATT - Fabrique artistique from the Coopérative De Rue et De Cirque (FR), by Dynamo - Workspace for circus and performing arts (DK), by Central del circ (SP), by Sirkus Aikamoinen (FIN) and by Nounous Festival + CIRKO - Center for new circus (FIN).</p><p>Co-producers : Le Théâtre, National Theatre of Saint-Nazaire (FR), ONYX, theatre of Saint-Herblain (FR), Agora Pôle National Cirque Boulazac Aquitaine (FR), Cirque Jules Verne - Pôle National Cirque Amiens(FR), Le Palc - Pôle National Cirque, Châlons-en-Champagne, Grand Est (FR), Sirkus Aikamoinen (FIN) and Circusnext (EU).</p>", "sv": "<p>\"V\" är cirkusartisten Vivi Roihas självbiografiska fiktion och en soloföreställning som bryter mot perfektionens fantasier.</p><p>Roihas verk är en personlig dagbok med falska och överdrivna händelser, bilder och figurer. I föreställningen följer vi med en person som har bestämt sig för att bryta med det förflutna och gå vidare.</p>", "en": "<p>\"V\" is a performance dealing with the decision to break away from what was before.</p><p>It is a personal diary blurred with imagination, showing moments of one moving onwards, and backwards, on the path of change.</p><p>The genuine, sensitive and highly physical performance by Viivi Roiha takes place on an empty stage. <br>Permeable live music by Mika Pusse is an integral part of the performance.<br> <br>The third performer, a short piece of a rope, transports the performer as well as the audience through different heights and inner states, towards the strength of daring to be vulnerable.<br> <br>Viivi Roiha is an aerial acrobat who has been working for over 10 years with different companies internationally as well as creating her own projects with fellow artists.</p><p>\"V\" is Viivi’s first solo piece. It is developed through physical research with a shorter version of her life-long partner, a vertical rope reaching from ceiling to floor.</p><p>The shortness of the rope opens up new possibilities and brings a sense of freedom to the floor work and a feeling of danger for the aerial parts.</p><p>Performance and concept: Viivi Roiha<br>Sound design and live music: Mika PusseTechnical manager: Anaëlle Husein Sharif Khalil<br>Outside eyes: Henna Kaikula, Emi Sri Hartati Combet, Pascaline Herveet<br>Light design: Loïc Chauloux<br>Costume design: Baptiste Sorin<br>Production: Jouni Ruuth / Sirkus Aikamoinen and Anne Heuveline / L’Avant Courrier<br>Thanks to: Hervé Banache and Mira Ravald</p><p>Duration: 50min<br>Age recommendation: 12+<br>The show suits for non-Finnish-speaking people.</p><p>Thanks to all our partners<br>Finalist circusnext 2023, project co-financed by the European Union. The project is also supported by the agreement French Institute and City of Nantes, by The Arts Promotion Centre Finland (Taike), by RueWATT - Fabrique artistique from the Coopérative De Rue et De Cirque (FR), by Dynamo - Workspace for circus and performing arts (DK), by Central del circ (SP), by Sirkus Aikamoinen (FIN) and by Nounous Festival + CIRKO - Center for new circus (FIN).</p><p>Co-producers : Le Théâtre, National Theatre of Saint-Nazaire (FR), ONYX, theatre of Saint-Herblain (FR), Agora Pôle National Cirque Boulazac Aquitaine (FR), Cirque Jules Verne - Pôle National Cirque Amiens(FR), Le Palc - Pôle National Cirque, Châlons-en-Champagne, Grand Est (FR), Sirkus Aikamoinen (FIN) and Circusnext (EU).</p>" }, "name": { "fi": "\"V\" - LOPPUUNMYYTY – Nykysirkusesitys", "sv": "\"V\" - UTSÅLD", "en": "\"V\" - SOLD OUT" }, "short_description": { "fi": "\"V\" on sirkustaiteilija Viivi Roihan omaelämäkerrallinen fiktio, joka käsittelee päätöstä irtaantua entisestä.", "sv": "\"V\" är cirkusartisten Vivi Roihas självbiografiska fiktion och en soloföreställning som bryter mot perfektionens fantasier.", "en": "\"V\" is a performance dealing with the decision to break away from what was before." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61811/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61560", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-batu-3558659/", "sv": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-batu-3558659/", "en": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-batu-3558659/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7190, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-15T14:13:12.109519Z", "last_modified_time": "2024-02-06T13:23:27.330507Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741280.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7190/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-15T14:13:12.095229Z", "last_modified_time": "2024-04-05T17:13:57.043588Z", "date_published": null, "start_time": "2024-03-24T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3D611F31EAADB053CBE7BB2B9F6DFCB4/Artefactos_Bascos_BATU", "sv": "http://www.annantalo.fi/sv/evenemang/event/3D611F31EAADB053CBE7BB2B9F6DFCB4/Artefactos_Bascos_BATU", "en": "http://www.annantalo.fi/en/events/event/3D611F31EAADB053CBE7BB2B9F6DFCB4/Artefactos_Bascos_BATU" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>LOPPUUNMYYTY! Karttoja? Polkuja? Teitä? Taloja? Kaupunkeja? B A T U -esityksessä lapsitaiteilijat pääsevät kokeilemaan mitä kaikkea suorista viivoista muodostuukaan.</p><p>Maalaa, taita, liimaa, liitä ja rakenna… Uteliaisuuden ja luovuuden saa päästä valloilleen! Yhdessä leikkien voidaan rakentaa ihan omanlaisia maailmoja.</p><p>Baskien kielessä, euskerassa, batu-verbin merkityksiä ovat muun muassa liittyä, lisätä, yhdistää, ryhmitellä, koota, kerätä ja kohdata. Verbi tulee alkujaan sanasta bat, joka tarkoittaa yhtä.</p><p>B A T U on valloittava linjojen, polkujen, risteyskohtien, tilojen, karttojen, rakenteiden, yhdistelmien ja löytöjen peli, jossa luovuus ja leikki kohtaavat.</p><p>Artefactos Bascos on muodostunut taiteilijan, esiintyjän, taidehistorioitsijan sekä graafisen suunnittelijan Ieltxu Ortuetan luomien teosten ympärille. Ortueta kehittää esitysprojekteja erityisesti lapsiyleisöille. Artefactos Bascos ajattelee lasta leikkikumppanina ja tekijänä vuorovaikutteisissa teoksissa, jotka liikkuvat kuvataiteen, performanssitaiteen ja epätyypillisten esitystilojen välillä.</p><p>Esitys on sanaton<br>Ikäsuositus: 2–8-vuotiaat<br>Kesto n. 50 min</p><p>Suunnittelu ja esiintyminen: Ieltxu Ortueta<br>Äänisuunnittelu: Gil Fuser<br>Tuotanto: Sendero Cultural / Adryela Rodrigues<br>Kuvat: Hussam Adin Hazimeh</p><p>Interaktiivinen e-kirja pelattavaksi:<br>https://issuu.com/artefactosbascos/docs/pt_batu_ebook</p>", "sv": "<p>SLUTSÅLD! Kartor? Stigar? Vägar? Hus? Städer? Under B A T U-föreställningen får barnkonstnärerna pröva på allt som kan bildas av raka linjer.</p><p>Måla, vik, limma, sammanfoga och bygg... Nyfikenheten och kreativiteten får råda! Genom gemensam lek kan man bygga helt egna världar.</p>", "en": "<p>SOLD OUT! Maps? Paths? Roads? Houses? Cities? The performance B A T U starts from the experimentation of the straight line and its multiplication to discover unique creations with children-artists.</p><p>Join, add, unite, group, assemble, collect and meet are some of the meanings of the verb batu in euskera, the language of the Basques. Etymologically the verb comes from bat, which means one. <br> <br>B A T U is a great game of lines, paths, intersections, spaces, maps, constructions, combinations and discoveries, where creativity and play meet. A simple shape, the rectangle, invites child artists to JOIN together to create. B A T U is a collective happening for the whole family.<br> <br>Artefactos Bascos is a multidisciplinary platform founded by artist, performer, art historian and graphic designer Ieltxu Ortueta. It develops scenic, graphic and performance projects, with a focus on young audiences. Artefactos Bascos thinks of the child as a partner in play and co-creator in interactive works, which move between visual arts, performance art and non-conventional performative spaces.</p><p>Non-verbal<br>Age recommendation: 2–8 years<br>Duration: approx. 50 min<br> <br>Creation, performance and playing space: Ieltxu Ortueta<br>Sound creation: Gil Fuser<br>Production: Sendero Cultural / Adryela Rodrigues<br>Photos: Hussam Adin Hazimeh<br>Performance related workshop B A T U Lab. also available.<br> <br>Interactive e-book to play:<br>https://issuu.com/artefactosbascos/docs/pt_batu_ebook</p>" }, "name": { "fi": "Artefactos Bascos: BATU – Bravo!-festivaali", "sv": "Artefactos Bascos: BATU – Bravo! Festivalen", "en": "Artefactos Bascos: BATU – Bravo! Festival" }, "short_description": { "fi": "LOPPUUNMYYTY! Karttoja? Polkuja? Teitä? Taloja? Kaupunkeja? B A T U -esityksessä lapsitaiteilijat pääsevät kokeilemaan mitä kaikkea suorista viivoista muodostuukaan.", "sv": "SLUTSÅLD! Kartor? Stigar? Vägar? Hus? Städer? Under B A T U-föreställningen får barnkonstnärerna pröva på allt som kan bildas av raka linjer.", "en": "SOLD OUT! Maps? Paths? Roads? Houses? Cities? The performance B A T U starts from the experimentation of the straight line and its multiplication to discover unique creations with children-artists." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61560/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61559", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-batu-3558659/", "sv": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-batu-3558659/", "en": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-batu-3558659/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7189, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-15T14:13:11.991773Z", "last_modified_time": "2024-02-06T13:23:27.239132Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741279.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7189/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-15T14:13:11.971850Z", "last_modified_time": "2024-04-05T17:13:56.971196Z", "date_published": null, "start_time": "2024-03-24T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D6E536CD6C85BDEA52E442E06E4EB562/Artefactos_Bascos_BATU", "sv": "http://www.annantalo.fi/sv/evenemang/event/D6E536CD6C85BDEA52E442E06E4EB562/Artefactos_Bascos_BATU", "en": "http://www.annantalo.fi/en/events/event/D6E536CD6C85BDEA52E442E06E4EB562/Artefactos_Bascos_BATU" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>LOPPUUNMYYTY! Karttoja? Polkuja? Teitä? Taloja? Kaupunkeja? B A T U -esityksessä lapsitaiteilijat pääsevät kokeilemaan mitä kaikkea suorista viivoista muodostuukaan.</p><p>Maalaa, taita, liimaa, liitä ja rakenna… Uteliaisuuden ja luovuuden saa päästä valloilleen! Yhdessä leikkien voidaan rakentaa ihan omanlaisia maailmoja.</p><p>Baskien kielessä, euskerassa, batu-verbin merkityksiä ovat muun muassa liittyä, lisätä, yhdistää, ryhmitellä, koota, kerätä ja kohdata. Verbi tulee alkujaan sanasta bat, joka tarkoittaa yhtä.</p><p>B A T U on valloittava linjojen, polkujen, risteyskohtien, tilojen, karttojen, rakenteiden, yhdistelmien ja löytöjen peli, jossa luovuus ja leikki kohtaavat.</p><p>Artefactos Bascos on muodostunut taiteilijan, esiintyjän, taidehistorioitsijan sekä graafisen suunnittelijan Ieltxu Ortuetan luomien teosten ympärille. Ortueta kehittää esitysprojekteja erityisesti lapsiyleisöille. Artefactos Bascos ajattelee lasta leikkikumppanina ja tekijänä vuorovaikutteisissa teoksissa, jotka liikkuvat kuvataiteen, performanssitaiteen ja epätyypillisten esitystilojen välillä.</p><p>Esitys on sanaton<br>Ikäsuositus: 2–8-vuotiaat<br>Kesto n. 50 min</p><p>Suunnittelu ja esiintyminen: Ieltxu Ortueta<br>Äänisuunnittelu: Gil Fuser<br>Tuotanto: Sendero Cultural / Adryela Rodrigues<br>Kuvat: Hussam Adin Hazimeh</p><p>Interaktiivinen e-kirja pelattavaksi:<br>https://issuu.com/artefactosbascos/docs/pt_batu_ebook</p>", "sv": "<p>SLUTSÅLD! Kartor? Stigar? Vägar? Hus? Städer? Under B A T U-föreställningen får barnkonstnärerna pröva på allt som kan bildas av raka linjer.</p><p>Måla, vik, limma, sammanfoga och bygg... Nyfikenheten och kreativiteten får råda! Genom gemensam lek kan man bygga helt egna världar.</p>", "en": "<p>SOLD OUT! Maps? Paths? Roads? Houses? Cities? The performance B A T U starts from the experimentation of the straight line and its multiplication to discover unique creations with children-artists.</p><p>Join, add, unite, group, assemble, collect and meet are some of the meanings of the verb batu in euskera, the language of the Basques. Etymologically the verb comes from bat, which means one. <br> <br>B A T U is a great game of lines, paths, intersections, spaces, maps, constructions, combinations and discoveries, where creativity and play meet. A simple shape, the rectangle, invites child artists to JOIN together to create. B A T U is a collective happening for the whole family.<br> <br>Artefactos Bascos is a multidisciplinary platform founded by artist, performer, art historian and graphic designer Ieltxu Ortueta. It develops scenic, graphic and performance projects, with a focus on young audiences. Artefactos Bascos thinks of the child as a partner in play and co-creator in interactive works, which move between visual arts, performance art and non-conventional performative spaces.</p><p>Non-verbal<br>Age recommendation: 2–8 years<br>Duration: approx. 50 min<br> <br>Creation, performance and playing space: Ieltxu Ortueta<br>Sound creation: Gil Fuser<br>Production: Sendero Cultural / Adryela Rodrigues<br>Photos: Hussam Adin Hazimeh<br>Performance related workshop B A T U Lab. also available.<br> <br>Interactive e-book to play:<br>https://issuu.com/artefactosbascos/docs/pt_batu_ebook</p>" }, "name": { "fi": "Artefactos Bascos: BATU – Bravo!-festivaali", "sv": "Artefactos Bascos: BATU – Bravo! Festivalen", "en": "Artefactos Bascos: BATU – Bravo! Festival" }, "short_description": { "fi": "LOPPUUNMYYTY! Karttoja? Polkuja? Teitä? Taloja? Kaupunkeja? B A T U -esityksessä lapsitaiteilijat pääsevät kokeilemaan mitä kaikkea suorista viivoista muodostuukaan.", "sv": "SLUTSÅLD! Kartor? Stigar? Vägar? Hus? Städer? Under B A T U-föreställningen får barnkonstnärerna pröva på allt som kan bildas av raka linjer.", "en": "SOLD OUT! Maps? Paths? Roads? Houses? Cities? The performance B A T U starts from the experimentation of the straight line and its multiplication to discover unique creations with children-artists." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61559/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63150", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-dream-scenario-3601622/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-dream-scenario-3601622/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-dream-scenario-3601622/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11193, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-04T13:14:00.270874Z", "last_modified_time": "2024-03-04T13:14:00.270891Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745125.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11193/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-04T13:14:00.246891Z", "last_modified_time": "2024-04-05T17:13:56.903060Z", "date_published": null, "start_time": "2024-03-23T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5F53C97BD7B4A68DDE50F2A07727E12F/Dream_scenario_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5F53C97BD7B4A68DDE50F2A07727E12F/Dream_scenario_16_", "en": "http://www.malmitalo.fi/en/events/event/5F53C97BD7B4A68DDE50F2A07727E12F/Dream_scenario_16_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Maailman suurimmalla elokuvafestivaalilla Torontossa syyskuussa ensiesityksensä saanut Dream Scenario on ohjaaja Kristoffer Borglin omaan käsikirjoitukseen perustuva absurdi kauhukomedia.</p><p>Nicolas Cage esittää yliopistoprofessoria, joka alkaa ilmaantua satunnaisesti ihmisten uniin passiivisena oloneuvoksena. Tohvelisankari yrittää sivuuttaa selittämättömät tapahtumat olankohautuksella, mutta media päättääkin luoda hänestä ilmiön.</p><p>Yhtenä tuottajana elokuvassa on Ari Aster, joka muistetaan ohjauksista Midsommar – loputon yö ja Hereditary – pahan perintö.</p><p>Kesto 100 min<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi<br>Ikäraja 16<br>Ensi-ilta 23.2.2024</p>" }, "name": { "fi": "Dream scenario (16) – Kino Helios", "sv": "Dream scenario (16) – Kino Helios", "en": "Dream scenario (16) – Kino Helios" }, "short_description": { "fi": "Maailman suurimmalla elokuvafestivaalilla Torontossa syyskuussa ensiesityksensä saanut Dream Scenario on ohjaaja Kristoffer Borglin omaan käsikirjoitukseen perustuva absurdi kauhukomedia." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63150/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61810", "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: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:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/%20name-3560131", "sv": "https://www.lippu.fi/eventseries/%20name-3560131", "en": "https://www.lippu.fi/eventseries/%20name-3560131" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6896, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-29T09:14:35.322250Z", "last_modified_time": "2024-02-06T13:23:27.146340Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738539.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6896/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-29T09:14:35.297064Z", "last_modified_time": "2024-04-05T17:13:56.834951Z", "date_published": null, "start_time": "2024-03-23T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/17D3E0102FF49298ECF33AF2C30EDEA6/_V_", "sv": "http://www.caisa.fi/sv/evenemang/event/17D3E0102FF49298ECF33AF2C30EDEA6/_V_", "en": "http://www.caisa.fi/en/events/event/17D3E0102FF49298ECF33AF2C30EDEA6/_V_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>\"V\" on sirkustaiteilija Viivi Roihan omaelämäkerrallinen fiktio, joka käsittelee päätöstä irtaantua entisestä.</p><p>Se on mielikuvituspäiväkirja muutoksesta ja sen mukanaan tuomasta aaltoilevasta liikkeestä.<br> <br>Roihan avoin, herkkä ja fyysisesti vaikuttava esitys tapahtuu lähes tyhjällä näyttämöllä. Ranskalaisen Mika Pussen immersiivinen live-musiikki on olennainen osa esitystä. Kolmas esiintyjä, lyhyt köydenpätkä, kuljettaa sekä esiintyjää että katsojaa halki eri korkeuksien ja tilanteiden, kohti haavoittuvuuden voimaa.<br> <br>Viivi Roiha on Ranskassa asuva ilma-akrobaatti. Hän on työskennellyt yli kymmenen vuotta eri sirkusryhmissä Suomessa ja kansainvälisesti, luoden samalla omia teoksiaan yhteistyössä kollegoidensa kanssa.</p><p>\"V\" on Viivin ensimmäinen sooloesitys. Se pohjaa pitkäjänteiseen työskentelyyn lyhyeksi leikatulla versiolla hänen elämänmittaisesta partneristaan, katosta lattiaan ylettyvästä vertikaaliköydestä. Köyden lyhyys avaa uusia mahdollisuuksia välineen käytössä lattialla ja tuo lisää vaaraan tuntua ilmassa.</p><p>Työryhmä<br>Konsepti ja esiintyminen: Viivi Roiha<br>Äänisuunnittelu ja musiikki : Mika Pusse<br>Teknikko: Anaëlle Husein Sharif Khalil<br>Taiteellinen yhteistyö: Henna Kaikula, Emi Sri Hartati Combet, Pascaline Herveet<br>Valosuunnittelu: Loïc Chauloux<br>Kiitos: Hervé Banache and Mira Ravald<br>Tuotanto: Sirkus Aikamoinen / Jouni Ruuth sekä L’Avant Courrier / Anne Heuveline</p><p>Kesto: 50 min (ei väliaikaa)<br>Ikäsuositus: 12+</p><p>Esitys sisältää lyhyen puheosuuden, mutta sopii myös katsojille, jotka eivät ymmärrä suomea.</p><p>Liput 15 € / 6 € osoitteesta lippu.fi. Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä.</u></a> Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi</p><p>*</p><p>Thanks to all our partners<br>Finalist circusnext 2023, project co-financed by the European Union. The project is also supported by the agreement French Institute and City of Nantes, by The Arts Promotion Centre Finland (Taike), by RueWATT - Fabrique artistique from the Coopérative De Rue et De Cirque (FR), by Dynamo - Workspace for circus and performing arts (DK), by Central del circ (SP), by Sirkus Aikamoinen (FIN) and by Nounous Festival + CIRKO - Center for new circus (FIN).</p><p>Co-producers : Le Théâtre, National Theatre of Saint-Nazaire (FR), ONYX, theatre of Saint-Herblain (FR), Agora Pôle National Cirque Boulazac Aquitaine (FR), Cirque Jules Verne - Pôle National Cirque Amiens(FR), Le Palc - Pôle National Cirque, Châlons-en-Champagne, Grand Est (FR), Sirkus Aikamoinen (FIN) and Circusnext (EU).</p>", "sv": "<p>\"V\" är cirkusartisten Vivi Roihas självbiografiska fiktion och en soloföreställning som bryter mot perfektionens fantasier.</p><p>Roihas verk är en personlig dagbok med falska och överdrivna händelser, bilder och figurer. I föreställningen följer vi med en person som har bestämt sig för att bryta med det förflutna och gå vidare.</p>", "en": "<p>\"V\" is a performance dealing with the decision to break away from what was before.</p><p>It is a personal diary blurred with imagination, showing moments of one moving onwards, and backwards, on the path of change.</p><p>The genuine, sensitive and highly physical performance by Viivi Roiha takes place on an empty stage. <br>Permeable live music by Mika Pusse is an integral part of the performance.<br> <br>The third performer, a short piece of a rope, transports the performer as well as the audience through different heights and inner states, towards the strength of daring to be vulnerable.<br> <br>Viivi Roiha is an aerial acrobat who has been working for over 10 years with different companies internationally as well as creating her own projects with fellow artists.</p><p>\"V\" is Viivi’s first solo piece. It is developed through physical research with a shorter version of her life-long partner, a vertical rope reaching from ceiling to floor.</p><p>The shortness of the rope opens up new possibilities and brings a sense of freedom to the floor work and a feeling of danger for the aerial parts.</p><p>Performance and concept: Viivi Roiha<br>Sound design and live music: Mika PusseTechnical manager: Anaëlle Husein Sharif Khalil<br>Outside eyes: Henna Kaikula, Emi Sri Hartati Combet, Pascaline Herveet<br>Light design: Loïc Chauloux<br>Costume design: Baptiste Sorin<br>Production: Jouni Ruuth / Sirkus Aikamoinen and Anne Heuveline / L’Avant Courrier<br>Thanks to: Hervé Banache and Mira Ravald</p><p>Duration: 50min<br>Age recommendation: 12+<br>The show suits for non-Finnish-speaking people.</p><p>Thanks to all our partners<br>Finalist circusnext 2023, project co-financed by the European Union. The project is also supported by the agreement French Institute and City of Nantes, by The Arts Promotion Centre Finland (Taike), by RueWATT - Fabrique artistique from the Coopérative De Rue et De Cirque (FR), by Dynamo - Workspace for circus and performing arts (DK), by Central del circ (SP), by Sirkus Aikamoinen (FIN) and by Nounous Festival + CIRKO - Center for new circus (FIN).</p><p>Co-producers : Le Théâtre, National Theatre of Saint-Nazaire (FR), ONYX, theatre of Saint-Herblain (FR), Agora Pôle National Cirque Boulazac Aquitaine (FR), Cirque Jules Verne - Pôle National Cirque Amiens(FR), Le Palc - Pôle National Cirque, Châlons-en-Champagne, Grand Est (FR), Sirkus Aikamoinen (FIN) and Circusnext (EU).</p>" }, "name": { "fi": "\"V\" – Nykysirkusesitys", "sv": "\"V\"", "en": "\"V\"" }, "short_description": { "fi": "\"V\" on sirkustaiteilija Viivi Roihan omaelämäkerrallinen fiktio, joka käsittelee päätöstä irtaantua entisestä.", "sv": "\"V\" är cirkusartisten Vivi Roihas självbiografiska fiktion och en soloföreställning som bryter mot perfektionens fantasier.", "en": "\"V\" is a performance dealing with the decision to break away from what was before." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61810/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:62986", "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": [], "price": { "fi": "18 € / 16 €", "sv": "18 € / 16 €", "en": "18 € / 16 €" }, "info_url": { "fi": "https://www.lippu.fi/event/lauluyhtye-chime-rakkautta-ja-rajoja-malmitalo-18012078/", "sv": "https://www.lippu.fi/event/lauluyhtye-chime-rakkautta-ja-rajoja-malmitalo-18012078/", "en": "https://www.lippu.fi/event/lauluyhtye-chime-rakkautta-ja-rajoja-malmitalo-18012078/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7380, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-26T09:13:17.529386Z", "last_modified_time": "2024-02-06T13:23:27.055713Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744305.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7380/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-26T09:13:17.510205Z", "last_modified_time": "2024-04-05T17:13:56.779602Z", "date_published": null, "start_time": "2024-03-23T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7F05CE5941212FE8014232A0884EA23D/Lauluyhtye_Chime_Rakkautta_ja_rajoja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7F05CE5941212FE8014232A0884EA23D/Sangbandet_Chime_Karlek_och_granser", "en": "http://www.malmitalo.fi/en/events/event/7F05CE5941212FE8014232A0884EA23D/Lauluyhtye_Chime_Love_and_Boundaries" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Riemua, räiskettä ja kenties vähän raivoakin - mutta aina, aina rakkaudella!</p><p>Perheitä on monenlaisia ja niihin mahtuu paljon tunteita, joskus jopa liikaakin. Välillä tarvitsemme hetken yksin, jotta voimme tulla takaisin vahvempina ja valmiina rakastamaan. Kuulostaako tutulta?</p><p>Perheen koko tunnekirjo nyt a cappellana!</p>", "sv": "<p>Glädje, dunder och kanske lite ilska – men alltid, alltid med kärlek!</p><p>Det finns många olika slags familjer och i den finns det rum för mycket känslor, ibland till och med lite för mycket.</p>", "en": "<p>Joy, sparkle and perhaps even a little rage – but always, always with love!</p><p>Families come in many forms and can hold a lot of emotions, sometimes too much.</p>" }, "name": { "fi": "Lauluyhtye Chime – Rakkautta ja rajoja", "sv": "Sångbandet Chime – Kärlek och gränser", "en": "Lauluyhtye Chime – Love and Boundaries" }, "short_description": { "fi": "Riemua, räiskettä ja kenties vähän raivoakin - mutta aina, aina rakkaudella!", "sv": "Glädje, dunder och kanske lite ilska – men alltid, alltid med kärlek!", "en": "Joy, sparkle and perhaps even a little rage – but always, always with love!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:62986/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61938", "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: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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/event/bravo-festivaali-15-24-3-2024-stoa-18131812/", "sv": "https://www.lippu.fi/event/bravo-festivaali-15-24-3-2024-stoa-18131812/", "en": "https://www.lippu.fi/event/bravo-festivaali-15-24-3-2024-stoa-18131812/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7227, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-17T14:13:00.501716Z", "last_modified_time": "2024-02-06T13:23:26.962334Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739241.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7227/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-17T14:13:00.482858Z", "last_modified_time": "2024-04-05T17:13:56.661192Z", "date_published": null, "start_time": "2024-03-23T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/12078E6DECA1FE73CDE0B6C35BABD952/NYXXX_Kuuntele_kuinka_hiljaista_SWE_", "sv": "http://www.stoa.fi/sv/evenemang/event/12078E6DECA1FE73CDE0B6C35BABD952/NYXXX_Hor_sa_tyst_det_ar_SWE_", "en": "http://www.stoa.fi/en/events/event/12078E6DECA1FE73CDE0B6C35BABD952/NYXXX_Listen_how_quiet_SWE_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Miltä kuulostaa putoava hiekanjyvä? Voiko muovin rapina kuulostaa räiskyvältä tulelta? Hör så tyst det är – Kuuntele kuinka hiljaista -esityksessä on mahdollisuus tutustua ääniteknologiaan ja luoda itse musiikkia.</p><p>Se on myös tarina etäystävyydestä.</p><p>Yleisö käyttää kuulokkeita koko esityksen ajan ja saa olla mukana luomassa esityksen ääniä. Tutkiessamme, mitä ääni voi olla ja mitä äänet voivat kertoa, saamme käyttää mielikuvitustamme ja kuunteluamme ihan uudella tavalla. Esityksen tavoitteena on tarjota yleisölle osallistumisen ja tutkimisen tunne: kuuntelemista harjoittamalla ymmärrämme toisiamme paremmin ja saamme yhteyden muihin.</p><p>Ruotsalainen esittävän taiteen kollektiivi Nyxxx on vuodesta 2010 lähtien luonut esityksiä, pelejä ja ääni-installaatioita, joissa yleisö on ratkaisevassa osassa. Nyxxxin töitä on nähty muun muassa Unga Dramatenissa, Uppsala Stadsteaterissa, Teater Västernorrlandissa ja bibu-festivaalilla. Esitys on tehty yhteistyössä Regionteatern Blekinge Kronobergin kanssa.</p><p>Konsepti: Nyxxx<br>Esiintyjät: Ebba Petrén and Jannie Östergren. Finnish performer tba.<br>Teksti: Tova Gerge<br>Ohjaajat: Ebba Petrén and Gabriel Widing<br>Lavastus: Sofia Romberg<br>Valosuunnittelu: Kerstin Weimers<br>Äänisuunnittelu: and musical composition Elize Arvefjord<br>Kiertueteknikko: Tba.<br>Lavasterakennus: The workshops of Regionteatern Blekinge Kronoberg</p><p>Kieli: ruotsi / suomi<br>Ikäsuositus 9–12-vuotiaat<br>Kesto: n. 50 min</p>", "sv": "<p>Hur låter ett fallande sandkorn? Kan skrapandet av plast låta som en knastrande brasa? Hör så tyst det är ger möjlighet att ta del av ljudteknik och själv skapa musik.</p><p>Det är också en berättelse om distansvänskap.</p><p>Publiken använder hörlurar under hela föreställningen och får vara med om att skapa föreställningens ljud.</p>", "en": "<p>Hör så tyst set är – Listen, how quiet is a chance to get familiar with sound technology and through an own, unique experience understand and create music.</p><p>What is the sound of a grain of sand falling against a barrel? Can the rustle of plastic feel like a crackling fire?</p><p>Julia is a silence musician. She makes music with very small sounds. Julia’s best friend Dunja, the Arctic Ocean scientist, is far out at sea. Dunja is sending things she finds in the ocean to Julia, who collects them in a sound archive. With the help of the audience and the archive, a roaring undulating headphone show is created.</p><p>“Listen, how quiet” is a chance to get familiar with sound technology and through an own, unique experience understand and create music. It is also a story about friendship at a distance. All audience members wear headphones during the whole performance and get to be a part of creating the sounds. In this exploration of what sound can be and what the sounds can tell, we get to use our imagination and our listening in a new way. The performance aims to offer the audience a sensation of contributing and researching. Through practicing listening, we become better at understanding and connecting to others.</p><p>Since 2010, the Swedish performing arts collective Nyxxx has created performances, games and sound installations where the actions of the audience make all the difference. Their works have been displayed in venues such as Unga Dramaten, Uppsala Stadsteater, Teater Västernorrland and bibu-festival. “Listen, how quiet” was made in cooperation with Regionteatern Blekinge Kronoberg.</p><p>Concept: Nyxxx<br>Performers: Ebba Petrén and Jannie Östergren. Finnish performer tba.<br>Text: Tova Gerge<br>Directors: Ebba Petrén and Gabriel Widing<br>Set design: Sofia Romberg<br>Light design: Kerstin Weimers<br>Sound design: and musical composition Elize Arvefjord<br>Technician on tour: Tba.<br>Carpentry and construction: The workshops of Regionteatern Blekinge Kronoberg</p><p>Language: Swedish/Finnish<br>Age recommendation: Children between 9-12 years<br>Duration: approx. 1 h</p>" }, "name": { "fi": "NYXXX: Kuuntele kuinka hiljaista (SWE) – Bravo!-festivaali", "sv": "NYXXX: Hör så tyst det är (SWE) – Bravo! Festivalen", "en": "NYXXX: Listen, how quiet (SWE) – Bravo! Festival" }, "short_description": { "fi": "Miltä kuulostaa putoava hiekanjyvä? Voiko muovin rapina kuulostaa räiskyvältä tulelta? Hör så tyst det är – Kuuntele kuinka hiljaista -esityksessä on mahdollisuus tutustua ääniteknologiaan ja luoda itse musiikkia.", "sv": "Hur låter ett fallande sandkorn? Kan skrapandet av plast låta som en knastrande brasa? Hör så tyst det är ger möjlighet att ta del av ljudteknik och själv skapa musik.", "en": "Hör så tyst set är – Listen, how quiet is a chance to get familiar with sound technology and through an own, unique experience understand and create music." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61938/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61903", "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:45/?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:p4354/?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": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-wes-peden-rollercoaster-3562406/", "sv": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-wes-peden-rollercoaster-3562406/", "en": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-wes-peden-rollercoaster-3562406/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7153, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-12T11:13:52.394796Z", "last_modified_time": "2024-02-06T13:23:26.872529Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739351.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7153/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-12T11:13:52.344270Z", "last_modified_time": "2024-04-05T17:13:56.591764Z", "date_published": null, "start_time": "2024-03-23T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/03C4E2935B66E0861EBD175F6E3A2762/LOPPUUNMYYTY_Wes_Peden_-_Rollercoaster", "sv": "http://www.vuotalo.fi/sv/evenemang/event/03C4E2935B66E0861EBD175F6E3A2762/SLUTSALD_Wes_Peden_-_Rollercoaster", "en": "http://www.vuotalo.fi/en/events/event/03C4E2935B66E0861EBD175F6E3A2762/SOLD_OUT_Wes_Peden_-_Rollercoaster" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Ultramodernia pop-punk-jongleerausta!</p><p>Rollercoaster on jonglööri Wes Pedenin uusi sooloteos. Energinen, huipputaitava ja leikkisä esitys on saanut inspiraationsa vuoristoradoista. Vääristyneistä vuoristorataäänistä sävellettyjen elektrobiittien siivittämä teos on myös kunnianosoitus menneiden aikojen vuoristoratakyydeille. Rollercoaster venyttää teatterin sääntöjä ja omaperäiset temput edustavat ehkä ihmeellisintä koskaan nähtyä jongleerausta.</p><p>Useilla kansainvälisillä palkinnoilla huomioitu yhdysvaltalainen Wes Peden on lapsuudesta asti tutkinut painovoimaa ja mahdollisuuksia haastaa se. Hän on valmistunut Tukholman taideyliopistosta ja ammattiurallaan esiintynyt jo 25 maassa Japanista Islantiin, olympiastadioneilta Broadway-teattereihin.</p><p>Ohjaus ja esiintyminen: Wes Peden<br>Musiikin sävellys: Alkuperäismusiikki Mika Forsling<br>Lavastus: puhallettavat rakenteet Félix Chameroy<br>Valosuunnittelu: Vilhelm Montán Lindberg, Joel Johansson & Zoe Hunn<br>Valo- ja ääniajo: Florence Schroeder<br>Puvustus: Maria Peterson<br>Outside eye: Viktor Gyllenberg and Florence Huet<br>Hallinto ja kiertuevaraukset: Gandini Juggling<br>Rollercoaster-esityksen ovat tuottaneet Wes Peden ja Gandini Juggling<br>Rahoittajat: Tukholman kaupunki ja Konstnärsnämndens, Ruotsi<br>Tukijat: Subtopia, Burnt Out Punks ja Cirkusflätan, Ruotsi</p><p>Kesto 60 min<br>Ikäsuositus: 8+<br>Kieli: sanaton/suomi</p>", "sv": "<p>Ultramodern pop-punk jonglering!</p><p>Rollercoaster är jonglör Wes Pedens nya soloverk. Den energiska, utomordentligt skickliga och lekfulla föreställningen har fått sin inspiration från berg- och dalbanorna. Verket, som får sin musik av elektrobeat från förvrängda berg- och dalbanaljud, är också en hyllning till berg- och dalbanorna från förr i tiden.</p>", "en": "<p>Ultra-modern pop-punk juggling!</p><p>Wes Peden performs original tricks inspired by rollercoasters and their high-tech seatbelts. Rollercoaster twists theatrical rules to create a safe space place to perform some of the most difficult and unique juggling ever done on stage.</p><p>Surrounded by huge inflatable blue structures and accompanied by electro beats composed of distorted rollercoaster sounds, Wes Peden performs original tricks inspired by rollercoasters and their high-tech seatbelts. A spinning plate ceremony becomes a celebration of the great rides of the past; an epic 3 ball disco juggling evokes the evolution of rollercoasters; a 4-meter transparent tube turns into a path around Wes’ body to make balls flow through loops, helixes, and corkscrews.</p><p>Rollercoaster twists theatrical rules to create a safe space place to perform some of the most difficult and unique juggling ever done on stage!</p><p>Wes has performed around the world from Olympic stadiums in Tokyo to Broadway theatres in NYC and Glacier Museums in Iceland. His energetic, playful and complex style has won awards from the International Juggling Association and Cirque de Demain. Wes uses the skills he has honed from the age of 5 to twist gravity into the most beautiful knots physics will allow.</p><p>Direction & performance: Wes Peden<br>Music: Original music by Mika Forsling<br>Set design: inflatable structures by Félix Chameroy<br>Lighting Design: Vilhelm Montán Lindberg, Joel Johansson & Zoe Hunn<br>Lighting and sound operator: Florence Schroeder<br>Costumes: Maria Peterson<br>Outside eye: Viktor Gyllenberg and Florence Huet<br>Admin and tour booking: Gandini Juggling<br>Rollercoaster is produced by Wes Peden and Gandini Juggling<br>Funded by: Stockholms Stad and Konstnärsnämndens, Sweden<br>With the support of: Subtopia, Burnt Out Punks and Cirkusflätan, Sweden</p><p>Duration: 60 minutes<br>Age range: 8+<br>Language: Finnish</p>" }, "name": { "fi": "LOPPUUNMYYTY Wes Peden - Rollercoaster – Bravo!-festivaali", "sv": "SLUTSÅLD Wes Peden - Rollercoaster – Bravo! Festivalen", "en": "SOLD OUT Wes Peden - Rollercoaster – Bravo! Festival" }, "short_description": { "fi": "Ultramodernia pop-punk-jongleerausta!", "sv": "Ultramodern pop-punk jonglering!", "en": "Ultra-modern pop-punk juggling!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61903/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63043", "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:351/?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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10604, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-07T12:13:05.566600Z", "last_modified_time": "2024-02-07T12:13:05.566622Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743765.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10604/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-02-07T12:13:05.522664Z", "last_modified_time": "2024-04-05T17:13:56.486618Z", "date_published": null, "start_time": "2024-03-23T10:00:00Z", "end_time": "2024-03-23T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EB076BDAA723D387C1DD157BEB903E46/Vuotalon_ilmiomainen_paasiainen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/EB076BDAA723D387C1DD157BEB903E46/Nordhusets_fenomenala_pask", "en": "http://www.vuotalo.fi/en/events/event/EB076BDAA723D387C1DD157BEB903E46/Exciting_Easter_at_Vuosaari_House" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule mukaan ilmiömäisen teatterin pyörteisiin Vuotalolle!</p><p>TAPAHTUMAN OHJELMA</p><p>Klo 12 Puvusto ja valo- ja videokuvausseinä avautuu (Vuotalon aulassa).<br> Puvusto: Teatterimuseon käyttökokoelma ja Teatteri ILMI Ö.<br>Klo 12 Maskeerauspiste sekä Unelmien korttipaja avautuu (K-kerroksen Pikkusalissa)<br>Klo 12.30 Teatterikoulu ILMI Ö:n oppilaat esiintyvät (K-kerroksen Pikkusalissa)<br>Klo 13 Teatterikoulu ILMI Ö:n runobongarit esiintyvät (Vuotalon aulassa)<br>Klo 13.30 Teatterikoulu ILMI Ö:n oppilaat esiintyvät (K-kerroksen Pikkusalissa)</p><p>Lisäksi koko tapahtuman ajan Teatterikoulu ILMI Ö:n oppilaita voi nähdä Vuotalon aulassa ja Pikkusalissa tekemässä pieniä performansseja. Teatteri ILMI Ö:n ja Teatterikoulu ILMI Ö:n henkilökunta ohjaa myös sopivin ajankohdin mukavia teatterileikkejä ja -harjoituksia, joihin jokainen pääsee osallistumaan halutessaan.</p><p>Vuotalon aulassa on myös piste, josta saa lisätietoa Teatteri ILMI Ö:stä ja Teatterikoulu ILMI Ö:stä sekä Teatterimuseon tulevasta perhepäivästä.</p><p>Yhteistyössä: Vuotalo, Teatteri ILMI Ö., Teatterikoulu ILMI Ö., Bravo-festivaali sekä Teatterimuseon käyttökokoelma</p><p>Vapaa pääsy, tervetuloa!</p>", "sv": "<p>Kom med i teaterns fenomenala virvlar på Nordhuset!</p><p>Nordhuset får ett smink- och kostymställe där du kan omvandlas till din drömfigur! Vid fotograferingsväggen kan du ta roliga bilder och videor av de fantastiska skapelserna.</p><p>Även ordsamlare går omkring i Nordhuset – du får skapa kollektiva dikter! Dikterna publiceras på diktscenen.</p><p>Även föreställningar av elever i Teatterikoulu ILMI Ö. och gemensamma teaterlekar som alla kan delta i utlovas.</p><p>I samarbete: Nordhuset, Teatteri ILMI Ö., Teatterikoulu ILMI Ö., Bravo!-festivalen och Teatermuseets brukssamling</p>", "en": "<p>Come and see phenomenal theatre and join our work shops at Vuosaari House!</p><p>Featuring a makeup and clothing section – become your dream character! Take fun photos and videos of your fantastic creations on the photo wall.</p><p>Word collectors will also be making their rounds at Vuosaari House – be a part of collective poetry! These poems will be published at the poetry stage.</p><p>The Easter event also features Theatre School ILMI Ö student shows and theatre games that everyone can participate in.</p><p>In cooperation with: Vuosaari House, the ILMI Ö Theatre., Theatre School ILMI Ö., Bravo festival, and the working collection of the Theatre Museum</p>" }, "name": { "fi": "Vuotalon ilmiömäinen pääsiäinen", "sv": "Nordhusets fenomenala påsk", "en": "Exciting Easter at Vuosaari House" }, "short_description": { "fi": "Tule mukaan ilmiömäisen teatterin pyörteisiin Vuotalolle!", "sv": "Kom med i teaterns fenomenala virvlar på Nordhuset!", "en": "Come and see phenomenal theatre and join our work shops at Vuosaari House!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63043/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63099", "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: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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?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:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10962, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-20T10:14:35.872112Z", "last_modified_time": "2024-02-20T10:14:35.872146Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744871.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10962/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-20T10:14:35.820616Z", "last_modified_time": "2024-04-05T17:13:56.436351Z", "date_published": null, "start_time": "2024-03-23T09:00:00Z", "end_time": "2024-03-23T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5AD8D4224EB004B3603FAAFE593EC8C9/Vuosaaren_kartta_-miniryijytyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/5AD8D4224EB004B3603FAAFE593EC8C9/Workshoppar_Nordsjo_karta_som_minirya", "en": "http://www.vuotalo.fi/en/events/event/5AD8D4224EB004B3603FAAFE593EC8C9/Vuosaari_map_small_ryijy_workshops" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Miltä Vuosaari näyttää ryijynä?</p><p>Tule mukaan tekemään pieniä ryijyjä, joista rakentuu Vuosaaren ryijykartta!</p><p>Ryijyä voi tehdä Vuotalolla</p><p>lauantaina 23.3. klo 11–15 <br>tiistaina 16.4. klo 16–19.15</p><p>Opetustuokioiden ryijy on yhteinen teos, jota tehdään Vuotalolle lahjoitetuista langoista. Ei ennakkoilmoittautumista.</p><p>Yhteistyössä: Helsingin työväenopisto</p><p>Opettaja: Ama Essel</p>", "sv": "<p>Hur ser Nordsjö ut på en rya?</p><p>Kom med och väv miniryor, en ryakarta av Nordsjö:<br>lördag 23.3. kl. 11–15<br>tisdag 16.4. kl. 16–19.15</p><p>Undervisningstillfällenas rya är ett gemensamt verk som görs av garn som har donerats till Nordhuset. Ingen förhandsanmälan.</p><p>I samarbete: Helsingfors finska arbetarinstitut</p><p>Lärare: Ama Essel</p>", "en": "<p>What does a ryijy of Vuosaari look like?</p><p>Join us in making small ryijys into a patchwork map of Vuosaari:<br>Saturday 23 March at 11 am–3 pm<br>Tuesday 16 April at 4–7:15 pm</p><p>The ryijy that people contribute to at the tutorial events is a shared piece of art, which is made of yarn donated to Vuosaari House. No advance registration.</p><p>In cooperation with: Finnish Adult Education Centre</p><p>Teacher: Ama Essel</p>" }, "name": { "fi": "Vuosaaren kartta -miniryijytyöpajat – Vuotalo <3 ryijy -näyttelyn avoimet työpajat", "sv": "Workshoppar Nordsjö karta som minirya", "en": "Vuosaari map – small ryijy workshops" }, "short_description": { "fi": "Miltä Vuosaari näyttää ryijynä?", "sv": "Hur ser Nordsjö ut på en rya?", "en": "What does a ryijy of Vuosaari look like?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63099/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60752", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "33,50 €, ovelta 38,50 €", "sv": "33,50 €, ovelta 38,50 €", "en": "33,50 €, ovelta 38,50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/bohren-der-club-of-gore-de-3469604/", "sv": "https://www.lippu.fi/eventseries/bohren-der-club-of-gore-de-3469604/", "en": "https://www.lippu.fi/eventseries/bohren-der-club-of-gore-de-3469604/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4671, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:44.434196Z", "last_modified_time": "2024-02-06T13:23:26.778387Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735755.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4671/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:28:44.171304Z", "last_modified_time": "2024-04-05T17:13:56.381729Z", "date_published": null, "start_time": "2024-03-22T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C5E4D1ED7D7075B151DFC8B1A9E6843D/BOHREN_DER_CLUB_OF_GORE_DE_Patchouli_Blue_Tour_2024_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C5E4D1ED7D7075B151DFC8B1A9E6843D/Bohren_Der_Club_of_Gore_", "en": "http://www.savoyteatteri.fi/en/events/event/C5E4D1ED7D7075B151DFC8B1A9E6843D/Bohren_Der_Club_of_Gore_" }, "provider_contact_info": null, "provider": { "fi": "Fullsteam Agency", "sv": "Fullsteam Agency", "en": "Fullsteam Agency" }, "description": { "fi": "<p>Saksalainen ambient/dark jazz-yhtye Bohren & Der Club Of Gore saapuu Suomeen ensi keväänä ”Patchouli Blue 2024” -kiertueensa saattelemana. Kansainvälistä kulttimainetta nauttiva kokoonpano esiintyy Helsingin Savoy-teatterissa perjantaina 22. maaliskuuta.</p><p>Vuonna 1992 perustetun ja alunperin lyhyesti Bohren-nimellä tunnetun yhtyeen kokoonpanon muodostavat tätä nykyä multi-instrumentalistit Morten Gass, Robin Rodenberg sekä Christoph Clöser. Trio on kaksikymmentäviisivuotisen uransa aikana luonut täysin omintakeisen ja tunnistettavan sointinsa jossa voi kuulla kaikuja aina Black Sabbathista Portisheadiin ja Tindersticksistä Angelo Badalamentin luomiin unenomaisiin Twin Peaks-tunnelmiin. Keväällä 2022 julkaistulla kahdeksannella studioalbumilla ”Patchouli Blue” sähköpiano, vibrafoni, saksofoni, syntetisaattorit, basso ja rummut soivat yhteen upeammin kuin kertaakaan aiemmin yhtyeen uran aikana.</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>Ovet klo 18. Showtime klo 19.<br>Kesto n. 1 h 30 min, ei väliaikaa.</p><p>LIPUT: Ennakkoon alk. 33,50 EUR + tilausmaksut (alk. 1,50 € www.lippu.fi)<br>Ovelta 38,50 EUR, mikäli esitys ei ole loppuunmyyty.</p>", "sv": "<p>Det tyska ambient/dark jazz-bandet Bohren & Der Club Of Gore kommer till Finland nästa vår med turnén Patchouli Blue 2024. Den internationellt hyllade ensemblen uppträder på Savoyteatern i Helsingfors fredagen den 22 mars.</p><p>Bandet, som ursprungligen kallade sig kort och gott för Bohren, grundades 1992 och består för närvarande av multiinstrumentalisterna Morten Gass, Robin Rodenberg och Christoph Clöser. Trion har under sin 25-åriga karriär utvecklat ett fullständigt säreget och igenkännligt sound där man kan höra ekon från allt från Black Sabbath till Portishead, från Tindersticks till Angelo Badalaments drömska Twin Peaks-stämningar. På det åttonde studioalbumet Patchouli Blue, som släpptes våren 2022, möts elpiano, vibrafon, saxofon, synt, bas och trummor i en samklang som överträffar allt vi hört från bandet hittills.</p><p>Parkett utskänkningsområde, åldersgräns 18 år. Läktare T, ingen utskänkning.</p><p>Dörrar: kl 18. Showtime kl 19</p><p>BILJETTER: I förköp från 33,50 EUR + beställningsavgift (från 1,50 € www.lippu.fi)<br>Vid dörren 38,50 EUR, om spelningen inte är slutsåld.</p>", "en": "<p>German ambient/dark jazz band Bohren & Der Club Of Gore will arrive in Finland next spring with their “Patchouli Blue 2024” tour. The internationally acclaimed band will perform at Savoy Theatre in Helsinki on Friday, 22 March.</p><p>Founded in 1992 and originally known simply as Bohren, the band is now made up of multi-instrumentalists Morten Gass, Robin Rodenberg and Christoph Clöser. Over the course of their 25-year career, the trio has created an entirely original and recognisable sound with echoes ranging from Black Sabbath to Portishead and from Tindersticks to the dreamy Twin Peaks atmosphere created by Angelo Badalamenti. On their eighth studio album “Patchouli Blue”, released in spring 2022, electric piano, vibraphone, saxophone, synthesisers, bass and drums play together more beautifully than ever before during the band’s career.</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><p>Doors at 18:00. Showtime at 19:00.<br>Duration about 1,5 h</p><p>TICKETS: Advance tickets from €33,50 + any order fees (from €1.50 www.lippu.fi)<br>At the door €38.50, if not sold out.</p>" }, "name": { "fi": "BOHREN & DER CLUB OF GORE (DE) – “Patchouli Blue Tour 2024” – Loppuunmyyyty!", "sv": "Bohren & Der Club of Gore – Slutsålt!", "en": "Bohren & Der Club of Gore – Sold out!" }, "short_description": { "fi": "Saksalainen ambient/dark jazz-yhtye Bohren & Der Club Of Gore saapuu Suomeen ensi keväänä ”Patchouli Blue 2024” -kiertueensa saattelemana. Kansainvälistä kulttimainetta nauttiva kokoonpano esiintyy Helsingin Savoy-teatterissa perjantaina 22. maaliskuuta." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60752/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19239, "next": "