Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=8&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 12394, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=9&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=7&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:68329", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384761, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-26T12:13:40.125259Z", "last_modified_time": "2026-05-26T12:13:40.125281Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787441.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384761/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-26T12:13:40.014897Z", "last_modified_time": "2026-06-05T07:13:57.311746Z", "date_published": null, "start_time": "2026-08-27T15:30:00Z", "end_time": "2026-08-27T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/94ED5524E9E1D6FCD7F7DF4CAF06B9BB/Illallinen_Malminkartanonaukiolla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/94ED5524E9E1D6FCD7F7DF4CAF06B9BB/Illallinen_Malminkartanonaukiolla", "en": "http://www.kanneltalo.fi/en/events/event/94ED5524E9E1D6FCD7F7DF4CAF06B9BB/Illallinen_Malminkartanonaukiolla" }, "location_extra_info": null, "provider": null, "name": { "fi": "Illallinen Malminkartanonaukiolla", "sv": "Illallinen Malminkartanonaukiolla", "en": "Illallinen Malminkartanonaukiolla" }, "provider_contact_info": null, "short_description": { "fi": "Nautitaan yhdessä illallinen Malminkartanonaukiolla! Tuo omat eväät, me tarjoamme pöydät." }, "description": { "fi": "<p>Nautitaan yhdessä illallinen Malminkartanonaukiolla! Tuo omat eväät, me tarjoamme pöydät.</p><p>Malminkartanonaukiolla illallistetaan taas yhdessä torstaina 27.8.! Me tarjoamme pöydät ja penkit, tuo mukanasi ruokaa, juomaa, astiat, aterimet ja hyvää mieltä. Ruokailun lomassa illallistajia viihdyttää Michael Bleu yhtyeineen!</p><p>Michael Bleu on monessa erivärisessä liemessä uitettu artisti ja tuottaja. Hänen erityispelialuettaan on 60 -ja 70-lukulainen amerikkasoul, joka kuitenkin tässä tapauksessa esitetään suomenkielellä. Bleu hämmentää ja yllättää tuotantonsa moni-ilmeisyydellä sekoitellen eri ainesosia aivan niin kuin huvittaa.<br>Illallinen alkaa klo 18.30 ja päättyy kello 21 aikoihin.</p><p>Osallistuminen on ilmaista, mutta vaatii ennakkoilmoittautumisen. <br>Ilmoittaudu mukaan illalliselle: https://forms.gle/W92fQ55aEkeZpqci9</p><p>Mikäli joku ilmoittamistasi ihmisistä ei pääsekään osallistumaan illalliselle, ilmoitathan siitä osoitteeseen ella@helsinkiurbanart.com<br>Tapahtuma-alue on esteetön. WC-tilat löytyvät aukion ympäristöstä Malmgård-ravintolasta.</p><p>Tapahtuman järjestää Helsinki Urban Art ry yhteistyössä Kanneltalon kanssa.</p><p>///<br>Come and join us for dinner on Malminkartanonaukio on Thursday, August 27! Bring your own food, drinks and dishes with a happy spirit, we provide the tables and benches. Entertainment alongside dinner will be provided by Michael Bleu and his band!<br>Michael Bleu is an artist and producer who has been immersed in many different genres. His special area of expertise is 60s and 70s American soul, which in this case is presented in Finnish. Bleu confuses and surprises with the diversity of his production, mixing different ingredients just as he pleases.</p><p>Dinner starts at 6.30 pm and ends at around 9 pm. Participation is free but registration in advance is required. <br>Registration for the dinner: https://forms.gle/W92fQ55aEkeZpqci9</p><p>If any of the people you have registered are unable to attend the dinner, please let us know at ella@helsinkiurbanart.com<br>The event area is accessible. Bathrooms can be found by the square in Malmgård restaurants’ facilities.</p><p>The event is hosted by Helsinki Urban Art ry in collaboration with Kanneltalo.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68329/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:6dfc4936-1ec4-4d4f-9d51-1d661e7d943d", "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/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?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:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": { "fi": "10" }, "description": { "fi": "Hintatietojen kuvaus suomeksi" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 2384959, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T06:27:07.428526Z", "last_modified_time": "2026-06-05T06:27:07.428558Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/ec480b40-da1d-f111-8341-6045bddd6dee", "name": "Kuvateksti", "cropping": "", "photographer_name": "Kuvaajan nimi", "alt_text": "Kuvan Alt-teksti", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384959/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?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:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "created_time": "2026-06-05T06:27:10.114057Z", "last_modified_time": "2026-06-05T06:27:10.114104Z", "date_published": "2026-06-05T06:17:59Z", "start_time": "2026-07-03T05:00:00Z", "end_time": "2026-07-03T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 15, "audience_max_age": 55, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 150, "minimum_attendee_capacity": 100, "enrolment_start_time": "2026-06-05T08:00:00+03:00", "enrolment_end_time": "2026-07-01T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "location_extra_info": { "fi": "Tapahtumapaikan lisätiedot suomeksi" }, "provider": { "fi": "Tapahtuman järjestäjä suomeksi" }, "name": { "fi": "[TLDG] LinkedEvents Testailua 5.6.2026 v2.0" }, "provider_contact_info": null, "short_description": { "fi": "Lyhyt kuvaus suomeksi" }, "description": { "fi": "<div><p>Tapahtuman kuvaus suomeksi<br> </p></div>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6dfc4936-1ec4-4d4f-9d51-1d661e7d943d/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69251", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/risa-only-bones-2-0-stoa-21708633/", "sv": "https://www.lippu.fi/event/risa-only-bones-2-0-stoa-21708633/", "en": "https://www.lippu.fi/event/risa-only-bones-2-0-stoa-21708633/" }, "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384958, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T06:13:49.007365Z", "last_modified_time": "2026-06-05T06:13:49.007380Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792294.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384958/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-05T06:13:48.855218Z", "last_modified_time": "2026-06-05T06:13:49.188296Z", "date_published": null, "start_time": "2026-09-05T12: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/47B966A42184CEB31C4A139E637D89FF/RISA_Only_Bones_2_0", "sv": "http://www.stoa.fi/sv/evenemang/event/47B966A42184CEB31C4A139E637D89FF/RISA_Only_Bones_2_0", "en": "http://www.stoa.fi/en/events/event/47B966A42184CEB31C4A139E637D89FF/RISA_Only_Bones_2_0" }, "location_extra_info": null, "provider": null, "name": { "fi": "RISA: Only Bones 2.0", "sv": "RISA: Only Bones 2.0", "en": "RISA: Only Bones 2.0" }, "provider_contact_info": null, "short_description": { "fi": "Kehollisen ilmaisun ihmeellisyyttä juhliva nykysirkusteos vie katsojan matkalle näkemään yli totuttujen raamien." }, "description": { "fi": "<p>Kehollisen ilmaisun ihmeellisyyttä juhliva nykysirkusteos vie katsojan matkalle näkemään yli totuttujen raamien.</p><p>Teos pohtii aikaamme, joka tuntuu muuttuneen takaperoiseksi kuin ihmisyyden degeneraatio. Kaikki tavoittelevat lopullista täyttymystä: sitä hetkeä, kun ponnistus päättyy ja kaikki on viimein valmista. Päämäärään päästäkseen kävelemme toistemme yli kuin eläimet, seurauksista piittaamatta.</p><p>Monitahoinen esitys leikittelee valon ja varjon rajamailla, tapaillen fyysisyyden äärirajoja. Akrobatia ja tanssi sulautuvat yhdeksi hengittäväksi kokonaisuudeksi, joka on yhtä aikaa virtuoosinen ja paljas; keho, tila ja valo synnyttävät lavalle kokonaisen maailman.</p><p>Only Bones-soolokonsepti on <b>Thom Moncktonin</b> kehittämä minimalistinen fyysisen teatterin projekti, joka pohjautuu annettuihin parametreihin, jotka kukin taiteilija voi halutessaan joko rikkoa tai toteuttaa. Alkuperäisenä ohjeena on: \"vain yksi valo, ei kerrontaa, ei lavasteita, ei rekvisiittaa, ei tekstiä ja kaikki rajoitetussa tilassa\". Taiteilijat jäävät sitten omien taitojensa kanssa luomaan oman ainutlaatuisen maailmansa konseptin sisällä.</p><p>Ikäsuositus: 10 +<br>Kesto: n. 60 min.</p><p><b>Työryhmä:</b><br>Ohjaus ja lavalla: Riia Kivimäki & Saku Mäkelä<br>Äänisuunnittelija: Hanna Mikander<br>Valosuunnittelija: Jere Mönkkönen<br>Konsepti: Thom Monckton<br>Esitystä on tukenut: Svenska kulturfonden, Taiteen edistämiskeskus, Subtopia ja Cirko-Uuden Sirkuksen Keskus.<br>Yhteistuotanto: RISA ja Stoa</p><p><b>RISA: Riia Kivimäki</b> ja <b>Saku Mäkelä</b> ovat kansainvälisesti palkittuja tanssi- ja sirkustaiteilijoita Helsingistä. Yhdessä he ovat kehittäneet ainutlaatuisen ja omaleimaisen liikekielen, jossa pariakrobatia ja tanssi yhdistyvät ennenäkemättömällä tavalla. He luovat poikkitaiteellisia nykytaideteoksia, jotka rikkovat genrejen sisäisiä ja välisiä sääntöjä sekä rajoituksia.</p><p>Heidän edellinen kokoillan teoksensa <i>GLG</i> sai kiitosta, niin yleisöltä kuin kriitikoilta. <a href=\"https://www.riiasaku.com\"><u>Voit lukea heistä lisää RISA:n nettisivuilta</u></a>.</p><p><b>Jere Mönkkönen</b> on valosuunnittelija ja tekninen tuottaja. Hän on valosuunnittelijana Suomen kansainvälisesti menestyneimpiä näyttämötaiteiden saralla ja hänen teoksiaan on nähty yli 40 maassa. Suomessa Mönkkösen teoksia on nähty suurimmilla kotimaisilla näyttämöillä ja teattereissa (mm. Helsingin Kaupunginteatteri, Turun Kaupunginteatteri, Kansallisteatteri, Kansallisooppera). Hän on ollut merkittävässä roolissa kehittämässä suomalaista nykysirkusta niin Suomessa kuin kansainvälisestikin. Hän on laajasti kiinnostunut näyttämötaiteista, keskittyen erityisesti sirkuksen sekä visuaalisen- ja esineteatterin maailmoihin. Valosuunnittelijana häntä ensisijaisesti kiinnostaa tukea työstettävän teoksen ydinsanomaa: olkoon se sitten kannanotto, kerrottava tarina tai puhtaasti esteettinen elämys.</p><p><b>Hanna Mikander</b> on kokenut äänisuunnittelija ja tehnyt äänisuunnittelun noin 50 esitykseen. Hän on myös säveltänyt, sovittanut ja tuottanut musiikkia useisiin tuotantoihin, kuten <i>Förgät mig</i> (2025), <i>Fröken Julie</i> (2024), <i>Ronja Rövardotter</i> (2023) ja <i>Själarnas ö</i> (2022). Hän työskentelee Svenska Teaternissa talon suunnittelijana ja on vieraillut suunnittelijana mm. Kulturhuset Stadsteaternissa Tukholmassa, Viiruksessa, Åbo Svenska Teaternissa, Lilla Teaternissa ja Sirius Teaternissa.</p><p><b>Nostoja RISAn edellisen teoksen <i>GLG</i> arvioista:</b></p><p><i>”Saku Mäkelän ja Riia Kivimäen teos on akrobaattinen duetto. Se osaa hyödyntää kaikki dueton mahdollisuudet syvästä eroottisesta yhteen kietoutumisesta siihen henkeäsalpaavaan täydelliseen keskinäiseen luottamukseen, mitä pariakrobatia vaatii.”</i><br>Maria Säkö, Helsingin Sanomat, 3.3.2022</p><p><i>”Se mikä GLG:stä tekee illan ehkä taiteellisesti täysipainoisimman esityksen, on Kivimäen ja Mäkelän huikea taitavuus ja upeasti toteuttama pari- ja ilma-akrobatian sekä tanssin liitto. Tässä esityksessä akrobatia ei ole vain taitavasti toteutettuja temppuja ja liikkeitä, vaan tarinan ja tunteiden kerronta- ja ilmaisukeino.”</i> <br>Annikki Alku, Demokraatti, 3.3.2022</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69251/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69250", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/risa-only-bones-2-0-stoa-21708632/", "sv": "https://www.lippu.fi/event/risa-only-bones-2-0-stoa-21708632/", "en": "https://www.lippu.fi/event/risa-only-bones-2-0-stoa-21708632/" }, "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384957, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T06:13:48.201003Z", "last_modified_time": "2026-06-05T06:13:48.201018Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792293.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384957/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-05T06:13:47.998368Z", "last_modified_time": "2026-06-05T06:13:48.522758Z", "date_published": null, "start_time": "2026-09-03T15: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/F68351C5857D39C0F5434607186C6637/RISA_Only_Bones_2_0", "sv": "http://www.stoa.fi/sv/evenemang/event/F68351C5857D39C0F5434607186C6637/RISA_Only_Bones_2_0", "en": "http://www.stoa.fi/en/events/event/F68351C5857D39C0F5434607186C6637/RISA_Only_Bones_2_0" }, "location_extra_info": null, "provider": null, "name": { "fi": "RISA: Only Bones 2.0", "sv": "RISA: Only Bones 2.0", "en": "RISA: Only Bones 2.0" }, "provider_contact_info": null, "short_description": { "fi": "Kehollisen ilmaisun ihmeellisyyttä juhliva nykysirkusteos vie katsojan matkalle näkemään yli totuttujen raamien." }, "description": { "fi": "<p>Kehollisen ilmaisun ihmeellisyyttä juhliva nykysirkusteos vie katsojan matkalle näkemään yli totuttujen raamien.</p><p>Teos pohtii aikaamme, joka tuntuu muuttuneen takaperoiseksi kuin ihmisyyden degeneraatio. Kaikki tavoittelevat lopullista täyttymystä: sitä hetkeä, kun ponnistus päättyy ja kaikki on viimein valmista. Päämäärään päästäkseen kävelemme toistemme yli kuin eläimet, seurauksista piittaamatta.</p><p>Monitahoinen esitys leikittelee valon ja varjon rajamailla, tapaillen fyysisyyden äärirajoja. Akrobatia ja tanssi sulautuvat yhdeksi hengittäväksi kokonaisuudeksi, joka on yhtä aikaa virtuoosinen ja paljas; keho, tila ja valo synnyttävät lavalle kokonaisen maailman.</p><p>Only Bones-soolokonsepti on <b>Thom Moncktonin</b> kehittämä minimalistinen fyysisen teatterin projekti, joka pohjautuu annettuihin parametreihin, jotka kukin taiteilija voi halutessaan joko rikkoa tai toteuttaa. Alkuperäisenä ohjeena on: \"vain yksi valo, ei kerrontaa, ei lavasteita, ei rekvisiittaa, ei tekstiä ja kaikki rajoitetussa tilassa\". Taiteilijat jäävät sitten omien taitojensa kanssa luomaan oman ainutlaatuisen maailmansa konseptin sisällä.</p><p>Ikäsuositus: 10 +<br>Kesto: n. 60 min.</p><p><b>Työryhmä:</b><br>Ohjaus ja lavalla: Riia Kivimäki & Saku Mäkelä<br>Äänisuunnittelija: Hanna Mikander<br>Valosuunnittelija: Jere Mönkkönen<br>Konsepti: Thom Monckton<br>Esitystä on tukenut: Svenska kulturfonden, Taiteen edistämiskeskus, Subtopia ja Cirko-Uuden Sirkuksen Keskus.<br>Yhteistuotanto: RISA ja Stoa</p><p><b>RISA: Riia Kivimäki</b> ja <b>Saku Mäkelä</b> ovat kansainvälisesti palkittuja tanssi- ja sirkustaiteilijoita Helsingistä. Yhdessä he ovat kehittäneet ainutlaatuisen ja omaleimaisen liikekielen, jossa pariakrobatia ja tanssi yhdistyvät ennenäkemättömällä tavalla. He luovat poikkitaiteellisia nykytaideteoksia, jotka rikkovat genrejen sisäisiä ja välisiä sääntöjä sekä rajoituksia.</p><p>Heidän edellinen kokoillan teoksensa <i>GLG</i> sai kiitosta, niin yleisöltä kuin kriitikoilta. <a href=\"https://www.riiasaku.com\"><u>Voit lukea heistä lisää RISA:n nettisivuilta</u></a>.</p><p><b>Jere Mönkkönen</b> on valosuunnittelija ja tekninen tuottaja. Hän on valosuunnittelijana Suomen kansainvälisesti menestyneimpiä näyttämötaiteiden saralla ja hänen teoksiaan on nähty yli 40 maassa. Suomessa Mönkkösen teoksia on nähty suurimmilla kotimaisilla näyttämöillä ja teattereissa (mm. Helsingin Kaupunginteatteri, Turun Kaupunginteatteri, Kansallisteatteri, Kansallisooppera). Hän on ollut merkittävässä roolissa kehittämässä suomalaista nykysirkusta niin Suomessa kuin kansainvälisestikin. Hän on laajasti kiinnostunut näyttämötaiteista, keskittyen erityisesti sirkuksen sekä visuaalisen- ja esineteatterin maailmoihin. Valosuunnittelijana häntä ensisijaisesti kiinnostaa tukea työstettävän teoksen ydinsanomaa: olkoon se sitten kannanotto, kerrottava tarina tai puhtaasti esteettinen elämys.</p><p><b>Hanna Mikander</b> on kokenut äänisuunnittelija ja tehnyt äänisuunnittelun noin 50 esitykseen. Hän on myös säveltänyt, sovittanut ja tuottanut musiikkia useisiin tuotantoihin, kuten <i>Förgät mig</i> (2025), <i>Fröken Julie</i> (2024), <i>Ronja Rövardotter</i> (2023) ja <i>Själarnas ö</i> (2022). Hän työskentelee Svenska Teaternissa talon suunnittelijana ja on vieraillut suunnittelijana mm. Kulturhuset Stadsteaternissa Tukholmassa, Viiruksessa, Åbo Svenska Teaternissa, Lilla Teaternissa ja Sirius Teaternissa.</p><p><b>Nostoja RISAn edellisen teoksen <i>GLG</i> arvioista:</b></p><p><i>”Saku Mäkelän ja Riia Kivimäen teos on akrobaattinen duetto. Se osaa hyödyntää kaikki dueton mahdollisuudet syvästä eroottisesta yhteen kietoutumisesta siihen henkeäsalpaavaan täydelliseen keskinäiseen luottamukseen, mitä pariakrobatia vaatii.”</i><br>Maria Säkö, Helsingin Sanomat, 3.3.2022</p><p><i>”Se mikä GLG:stä tekee illan ehkä taiteellisesti täysipainoisimman esityksen, on Kivimäen ja Mäkelän huikea taitavuus ja upeasti toteuttama pari- ja ilma-akrobatian sekä tanssin liitto. Tässä esityksessä akrobatia ei ole vain taitavasti toteutettuja temppuja ja liikkeitä, vaan tarinan ja tunteiden kerronta- ja ilmaisukeino.”</i> <br>Annikki Alku, Demokraatti, 3.3.2022</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69250/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:6c992a40-7936-4423-9221-fb2a73807733", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:kulttuuri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:teatteri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p143/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?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:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25261/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7642/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:cd8eb2d6-1e44-456e-9e12-42f18d4a6b38/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_youtube", "link": "https://yt.com", "language": "fi" }, { "name": "extlink_instagram", "link": "https://ig.com", "language": "fi" }, { "name": "extlink_whatsapp", "link": "https://wa.com", "language": "fi" }, { "name": "extlink_facebook", "link": "https://face.com", "language": "fi" }, { "name": "extlink_snapchat", "link": "https://sc.com", "language": "fi" }, { "name": "extlink_reddit", "link": "https://reddid.com", "language": "fi" }, { "name": "extlink_tumblr", "link": "https://tumblr.com", "language": "fi" }, { "name": "extlink_twitter", "link": "https://x.com", "language": "fi" }, { "name": "extlink_tiktok", "link": "https://tt.com", "language": "fi" } ], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=TLDG_-_Staging_Testing3205405590", "sv": "https://tapahtumat.hel.se", "en": "https://tapahtumat.hel.eng", "ru": "https://tapahtumat.hel.ru", "zh_hans": "https://tapahtumat.hel.chi", "ar": "https://tapahtumat.hel.ara" }, "price": { "fi": "15", "sv": "15", "en": "15", "ru": "15", "zh_hans": "15", "ar": "15" }, "description": { "fi": "Additional price information in Finnish", "sv": "Additional price information in Swedish", "en": "Additional price information in English", "ru": "Additional price information in Russian", "zh_hans": "Additional price information in Chinese", "ar": "Additional price information in Arabic" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 2384956, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T14:40:49.462863Z", "last_modified_time": "2026-06-04T14:40:49.462877Z", "url": "https://assets-eur.mkt.dynamics.com/f61dce5f-f37b-ef11-ac1e-000d3a69df77/digitalassets/images/398f83e9-b2ee-ef11-9341-6045bde0ef17", "name": "Caption", "cropping": "", "photographer_name": "Image credit", "alt_text": "Image alt text", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Name of video", "url": "https://video.url.com", "alt_text": "Video alt text" } ], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:kulttuuri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:teatteri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p143/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?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:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25261/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7642/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "created_time": "2026-06-04T14:40:50.369307Z", "last_modified_time": "2026-06-04T14:40:50.369345Z", "date_published": "2026-06-04T14:39:21Z", "start_time": "2026-09-30T09:19:00Z", "end_time": "2026-09-30T11:19:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 12, "audience_max_age": 55, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 150, "minimum_attendee_capacity": 15, "enrolment_start_time": "2026-09-01T08:00:00+03:00", "enrolment_end_time": "2026-09-27T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": { "fi": "https://tapahtumat.hel.fi", "sv": "https://tapahtumat.hel.se", "en": "https://tapahtumat.hel.eng", "ru": "https://tapahtumat.hel.ru", "zh_hans": "https://tapahtumat.hel.chi", "ar": "https://tapahtumat.hel.ara" }, "location_extra_info": { "fi": "Venue location information in Finnish", "sv": "Venue location information in Swedish", "en": "Venue location information in English", "ru": "Venue location information in Russian", "zh_hans": "Venue location information in Chinese", "ar": "Venue location information in Arabic" }, "provider": { "fi": "Event organizer in Finnish", "sv": "Event organizer in Swedish", "en": "Event organizer in English", "ru": "Event organizer in Russian", "zh_hans": "Event organizer in Chinese", "ar": "Event organizer in Arabic" }, "name": { "fi": "[TLDG] - Staging Testing 4.6.2026", "sv": "Event title in Swedish", "en": "Event title in English", "ru": "Event title in Russian", "zh_hans": "Event title in Chinese", "ar": "Event title in Arabic" }, "provider_contact_info": null, "short_description": { "fi": "Short description in Finnish (up to 160 characters)", "sv": "Short description in Swedish (up to 160 characters)", "en": "Short description in English (up to 160 characters)", "ru": "Short description in Russian (up to 160 characters)", "zh_hans": "Short description in Chinese (up to 160 characters)", "ar": "Short description in Arabic (up to 160 characters)" }, "description": { "fi": "<div><p>[TLDG] - Staging Testing 4.6.2026</p></div>", "sv": "<div><p>Event description in Swedish<br> </p></div>", "en": "<div><p>Event description in English<br> </p></div>", "ru": "<div><p>Event description in Russian<br> </p></div>", "zh_hans": "<div><p>Event description in Chinese<br> </p></div>", "ar": "<div><p>Event description in Arabic<br> </p></div>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6c992a40-7936-4423-9221-fb2a73807733/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:8553c3b7-3328-f111-8341-000d3a6746a9", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:kulttuuri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:teatteri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p143/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?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:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25261/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7642/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:cd8eb2d6-1e44-456e-9e12-42f18d4a6b38/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_youtube", "link": "https://yt.com", "language": "fi" }, { "name": "extlink_instagram", "link": "https://ig.com", "language": "fi" }, { "name": "extlink_whatsapp", "link": "https://wa.com", "language": "fi" }, { "name": "extlink_facebook", "link": "https://face.com", "language": "fi" }, { "name": "extlink_snapchat", "link": "https://sc.com", "language": "fi" }, { "name": "extlink_reddit", "link": "https://reddid.com", "language": "fi" }, { "name": "extlink_tumblr", "link": "https://tumblr.com", "language": "fi" }, { "name": "extlink_twitter", "link": "https://x.com", "language": "fi" }, { "name": "extlink_tiktok", "link": "https://tt.com", "language": "fi" } ], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=TLDG__Staging_Testing14812337710", "sv": "https://tapahtumat.hel.se", "en": "https://tapahtumat.hel.eng", "ru": "https://tapahtumat.hel.ru", "zh_hans": "https://tapahtumat.hel.chi", "ar": "https://tapahtumat.hel.ara" }, "price": { "fi": "15", "sv": "15", "en": "15", "ru": "15", "zh_hans": "15", "ar": "15" }, "description": { "fi": "Additional price information in Finnish", "sv": "Additional price information in Swedish", "en": "Additional price information in English", "ru": "Additional price information in Russian", "zh_hans": "Additional price information in Chinese", "ar": "Additional price information in Arabic" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 2384955, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T14:39:39.391265Z", "last_modified_time": "2026-06-04T14:39:39.391296Z", "url": "https://assets-eur.mkt.dynamics.com/f61dce5f-f37b-ef11-ac1e-000d3a69df77/digitalassets/images/398f83e9-b2ee-ef11-9341-6045bde0ef17", "name": "Caption", "cropping": "", "photographer_name": "Image credit", "alt_text": "Image alt text", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384955/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Name of video", "url": "https://video.url.com", "alt_text": "Video alt text" } ], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:kulttuuri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:teatteri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p143/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?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:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25261/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7642/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "created_time": "2026-03-25T10:21:13.435012Z", "last_modified_time": "2026-06-04T14:39:42.232991Z", "date_published": "2026-03-25T10:16:50Z", "start_time": "2026-09-30T09:19:00Z", "end_time": "2026-09-30T11:19:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 12, "audience_max_age": 55, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 150, "minimum_attendee_capacity": 15, "enrolment_start_time": "2026-09-01T08:00:00+03:00", "enrolment_end_time": "2026-09-27T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": { "fi": "https://tapahtumat.hel.fi", "sv": "https://tapahtumat.hel.se", "en": "https://tapahtumat.hel.eng", "ru": "https://tapahtumat.hel.ru", "zh_hans": "https://tapahtumat.hel.chi", "ar": "https://tapahtumat.hel.ara" }, "location_extra_info": { "fi": "Venue location information in Finnish", "sv": "Venue location information in Swedish", "en": "Venue location information in English", "ru": "Venue location information in Russian", "zh_hans": "Venue location information in Chinese", "ar": "Venue location information in Arabic" }, "provider": { "fi": "Event organizer in Finnish", "sv": "Event organizer in Swedish", "en": "Event organizer in English", "ru": "Event organizer in Russian", "zh_hans": "Event organizer in Chinese", "ar": "Event organizer in Arabic" }, "name": { "fi": "[TLDG] - Staging Testing", "sv": "Event title in Swedish", "en": "Event title in English", "ru": "Event title in Russian", "zh_hans": "Event title in Chinese", "ar": "Event title in Arabic" }, "provider_contact_info": null, "short_description": { "fi": "Short description in Finnish (up to 160 characters)", "sv": "Short description in Swedish (up to 160 characters)", "en": "Short description in English (up to 160 characters)", "ru": "Short description in Russian (up to 160 characters)", "zh_hans": "Short description in Chinese (up to 160 characters)", "ar": "Short description in Arabic (up to 160 characters)" }, "description": { "fi": "<div><p>Event description in Finnish</p></div>", "sv": "<div><p>Event description in Swedish<br> </p></div>", "en": "<div><p>Event description in English<br> </p></div>", "ru": "<div><p>Event description in Russian<br> </p></div>", "zh_hans": "<div><p>Event description in Chinese<br> </p></div>", "ar": "<div><p>Event description in Arabic<br> </p></div>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:8553c3b7-3328-f111-8341-000d3a6746a9/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69101", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/gaala-podcast/" }, "price": { "fi": "35 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384851, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-02T07:14:28.583181Z", "last_modified_time": "2026-06-02T07:14:28.583195Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793269.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384851/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-02T07:14:28.478639Z", "last_modified_time": "2026-06-04T12:13:58.249433Z", "date_published": null, "start_time": "2026-11-11T17: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/764B8A75C339D42F77526485CF8DF5F6/Gaala_Liveshow_lisakeikka_" }, "location_extra_info": null, "provider": { "fi": "All Day Entertainment Oy" }, "name": { "fi": "Gaala Liveshow (lisäkeikka)" }, "provider_contact_info": null, "short_description": null, "description": { "fi": "<p>Gaala Liveshow saa lisäesityksen suuren kysynnän vuoksi! Huippusuosittu Gaala-podcast nousee Savoy-teatterin näyttämölle koko illan liveshow’lla, joka juhlistaa elämää ja ystävyyttä! Päivässä loppuunmyyneen show’n tähtinä säkenöivät rakastetut ystävykset Hennariikka Laaksola, Thelma Siberg ja Valtteri Lehtinen. Illan aikana kuullaan hersyvimmät keskustelut kiusallisista tilanteista tunteikkaimpiin hetkiin. Tyylilleen uskollisesti Gaala jakaa palkintoja mitä yllättävimmissä kategorioissa, ja saattaapa joku yleisön joukostakin päätyä pystin saajaksi!</p><p>Kunniavieraana lavalle nousee Gaala-podcastin arvoisa alkuperäisjäsen – Amelie Blauberg!</p><p>Tervetuloa nauttimaan illasta, rakas kutsuvieras! Elämä on Gaala!</p><p>Gaala on Podimon kuunnelluimpiin ohjelmiin lukeutuva lifestylepodcast, joka on jo vuosien ajan viihdyttänyt kuulijoitaan juhlistaen arjen glamouria.</p><p>Ikäraja: S</p><p>Kesto n. 1 h 45 min, sisältää väliajan</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69101/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69244", "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:42/?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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://rockcamp.myclub.fi/flow/courses/10799310", "sv": "https://rockcamp.myclub.fi/flow/courses/10799310", "en": "https://rockcamp.myclub.fi/flow/courses/10799310" }, "price": { "fi": "25€", "sv": "25€", "en": "25€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384953, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T12:13:54.652582Z", "last_modified_time": "2026-06-04T12:13:54.652597Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793483.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384953/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T12:13:54.514947Z", "last_modified_time": "2026-06-04T12:13:54.849676Z", "date_published": null, "start_time": "2026-09-25T14:00:00Z", "end_time": "2026-09-25T18: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.malmitalo.fi/fi/tapahtumat/event/4162B184831D41D1334129262A00F3A3/Rock_Camp", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4162B184831D41D1334129262A00F3A3/Rock_Camp", "en": "http://www.malmitalo.fi/en/events/event/4162B184831D41D1334129262A00F3A3/Rock_Camp" }, "location_extra_info": null, "provider": null, "name": { "fi": "Rock Camp – Musiikkileiri 13–29-v. nuorille", "sv": "Rock Camp", "en": "Rock Camp" }, "provider_contact_info": null, "short_description": { "fi": "Oletko 13–29-vuotias ja kiinnostunut musiikista? Tule mukaan syksyn Rock Camp -päiväleirille Helsingin Malmitalolle 25.–27.9.2026!" }, "description": { "fi": "<p>Oletko 13–29-vuotias ja kiinnostunut musiikista? Tule mukaan syksyn Rock Camp -päiväleirille Helsingin Malmitalolle 25.–27.9.2026!</p><p>Leiri järjestetään yhteistyössä Helsingin kaupungin ja Rock Camp Ry:n kanssa. Leirin aikana tapaat uusia kavereita, joita yhdistää sama intohimo musiikkiin, opit uutta ja pääset soittamaan bändissä kokeneiden valmentajien johdolla. Ei väliä, oletko vasta aloittamassa soittamista vai jo kokenut, meidän leirillä kaikki saavat loistaa!</p><p>Osallistumismaksu: 25 €<br><a href=\"https://rockcamp.myclub.fi/flow/courses/10799310\"><u>Ilmoittaudu leirille tämän linkin kautta 11.9. mennessä</u></a>. Mukaan mahtuu 20 osallistujaa.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69244/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69243", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi//artist/tuulajapirkko/tuula-ja-pirkko-meil-on-aina-toro-4151910/", "sv": "https://www.lippu.fi//artist/tuulajapirkko/tuula-ja-pirkko-meil-on-aina-toro-4151910/", "en": "https://www.lippu.fi//artist/tuulajapirkko/tuula-ja-pirkko-meil-on-aina-toro-4151910/" }, "price": { "fi": "24,80 € / 20 €", "sv": "24,80 € / 20 €", "en": "24,80 € / 20 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384951, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T12:13:53.193699Z", "last_modified_time": "2026-06-04T12:13:53.193717Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793566.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384951/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T12:13:53.071607Z", "last_modified_time": "2026-06-04T12:13:53.342967Z", "date_published": null, "start_time": "2026-09-17T15: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/F02EF3752FAEF588EA2F481E1FC08982/Tuula_ja_Pirkko_Meil_on_aina_Toro", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F02EF3752FAEF588EA2F481E1FC08982/Tuula_ja_Pirkko_Meil_on_aina_Toro", "en": "http://www.kanneltalo.fi/en/events/event/F02EF3752FAEF588EA2F481E1FC08982/Tuula_ja_Pirkko_Meil_on_aina_Toro" }, "location_extra_info": null, "provider": null, "name": { "fi": "Tuula ja Pirkko: Meil on aina Toro", "sv": "Tuula ja Pirkko: Meil on aina Toro", "en": "Tuula ja Pirkko: Meil on aina Toro" }, "provider_contact_info": null, "short_description": { "fi": "Tuula ja Pirkko on viriili, yhteensä n. 170-vuotias parivaljakko Ala-Vittulasta." }, "description": { "fi": "<p>Tuula ja Pirkko on viriili, yhteensä n. 170-vuotias parivaljakko Ala-Vittulasta.</p><p>He eivät oikeastaan juuri pidä toisistaan, mutta jostain tuntemattomasta syystä he ovat viettäneet koko elämänsä hyvin tiiviisti yhdessä. Toisin kuin vanhuksista ehkä yleensä luullaan, ikä ei ole jalostanut heitä seesteiseen suuntaan. Päinvastoin. Tuula rakastaa Cindy Crawfordia ja turvavälejä, Pirkko ei anna arvoa lastenlastensa savitöille eikä piirustuksille, eikä hän edelleenkään osaa leipoa. Tuula ja Pirkko on jätetty hankalan luonteensa vuoksi koronakaranteenin rauhaan jo hyvän aikaa sitten, ja siksi heillä on kaikki maailman aika elellä elämäänsä juuri niin kuin he itse lystäävät.</p><p>Erinäisten sattumien jälkeen Tuula ja Pirkko päättävät karistaa pölyt matkalaukuistaan, suunnata maalliset tomumajansa Finavian lippuluukulle, maksaa lentoveronsa kenties viimeisen kerran ja suunnistaa kohti Fuengirolan aurinkoista costaa. Eikä aikaakaan, kun Toron varjossa käydään tähänastisen elämän ehkä tärkeimmät keskustelut. Tällä matkalla saavat kyytiä niin Tuulan ja Pirkon tyttärien luutuneet asenteet äitejään kohtaan, kuin patriarkaattinen machokulttuurikin. Löytyykö Fugen rannalta romanssi, ökyjahti vai Sean Conneryn rintakarva?</p><p>Esitys on kunnianosoitus hömelöydelle, elämänilolle, vapaalle tahdolle, tajunnanvirralle, omaehtoisuudelle, tyhmille jutuille, unelmille, ihmisyydelle, ihmisen lajityypilliselle tarpeelle valloittaa tuntemattomia alueita sekä itsemääräämisoikeuden tärkeydelle.</p><p>Käsikirjoitus, ohjaus ja kaikki roolit: Ria Kataja ja Minna Kivelä<br>Valosuunnittelu: Niina Sivén<br>Äänisuunnitelu: Esko Paavola</p><p>Tuula ja Pirkko nähtiin ensimmäisen kerran Pentti Järvisen käsikirjoittamassa esityksessä Punkkuelämää, johon he saapuivat Rian ja Minnan ideoimina ensi-illan jälkeen. Sen jälkeen Tuula ja Pirkko ovat tehneet myös 9-osaisen komediasarjan ”Kahden markan mummot – todella karmeeta-show”.</p><p>Kesto: noin 2,5 t sis. väliajan.<br>Ikäsuositus 15 v.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69243/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68465", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816478, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T11:25:39.768999Z", "last_modified_time": "2026-04-14T11:25:39.769024Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786161.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816478/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-14T11:25:39.578873Z", "last_modified_time": "2026-06-04T12:13:48.611136Z", "date_published": null, "start_time": "2026-08-22T12:00:00Z", "end_time": "2026-08-22T15: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.malmitalo.fi/fi/tapahtumat/event/E18E1E966165087FFF8ECD2723E419EA/ANI_Kukkatalo", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E18E1E966165087FFF8ECD2723E419EA/ANI_Kukkatalo", "en": "http://www.malmitalo.fi/en/events/event/E18E1E966165087FFF8ECD2723E419EA/ANI_Kukkatalo" }, "location_extra_info": null, "provider": null, "name": { "fi": "ANI, Kukkatalo – Malmin tapahtumakesä 2026", "sv": "ANI, Kukkatalo – Malms evenemangssommar 2026", "en": "ANI, Kukkatalo – Malmi Summer of Events 2026" }, "provider_contact_info": null, "short_description": { "fi": "Tapahtumakesän viimeinen päivä tarjoaa Kukkatalon bileet ja ANIn karismaattista poppia Ala-Malmin torilla!", "sv": "Evenemangsommarens sista dag bjuder på Kukkatalos fest och ANI:s karismatiska pop på Nedre Malms torg!", "en": "The last day of the Summer of Events offers a Kukkatalo party and ANI's charismatic pop at Ala-Malmi Square!" }, "description": { "fi": "<p>Tapahtumakesän viimeinen päivä tarjoaa Kukkatalon bileet ja ANIn karismaattista poppia Ala-Malmin torilla!</p><p><b>Aikataulu</b><br><b>Lauantai 22.8. ANI, kukkatalo, työpajoja ja muuta puuhaa</b> <br>14.00–18.00 Malmin nuorisotyöyksikön pop up - kahvila<br>14.00–18.00 Malmin nuorisotyöyksikön pop up – ulkonuta<br>14.00–16.00 Kukkatyöpaja<br>14.30–15.00 Will Funk for Food<br>16.00–17.00 Koristautumispaja<br>15.00–16.00 kukkatalo<br>17.00–18.00 ANI</p><p><b>Päivän ohjelma</p><p>14.00–18.00 Malmin nuorisotyöyksikön pop up - kahvila</p><p>14.00–18.00 Malmin nuorisotyöyksikön pop up – ulkonuta</b><br>Malmin nuorisotyöyksikön järjestämä nuorten oma hengailupaikka osana Malmitalon tapahtumakesän päätöspäivää. <br>Ohjelmassa nuorten järjestämää toimintaa: pihapelejä, piirtelyä ja pelailua. Tervetuloa mukaan!</p><p></b>14.00–16.00 Kukkatyöpaja</b><br>Kukkiksen hävikkikukkatyöpajassa askarrellaan kotiin vietäväksi kukkaseppeleitä, tai muita pieniä kukkakoristeita. Tervetuloa!</p><p></b>14.30–15.00 Will Funk for Food</p><p>klo 15.00–16.00 Kukkatalo</b><br>Kukkatalo tunnetaan riehakkaista, viihdyttävistä ja yllätyksellisistä keikoistaan. Yhtyeen musiikissa yhdistyvät indie, räppi ja pop rock asenteella. Yhtyeen kaksi solistia vaikuttavat myös kokoonpanoissa GOOD BOYS ja JÄNÖKLUBI.<br>Helmikuussa 2026 julkaistu toinen albumi Ristiriita valittiin Radio Helsingissä Viikon Levyksi ja sai ylistävää huomiota kriitikoilta. Kukkatalon musiikissa rapin ja rockin yhdistäminen tuntuu luontevalta osalta nykypopin ilmaisua.</p><p><b>klo 16.00–17.00 Koristautumispaja</b><br>Malmin nuorisotyöyksikön nuorten järjestämä koristautumispaja osana Malmitalon tapahtumakesän päätöspäivää. Tule koristautumaan ihanilla glittereillä ja kasvomaaleilla!</p><p><b>klo 17.00–18.00 ANI</b><br>ANI on yksi tämän hetken mielenkiintoisimmista pop artisteista, jonka musiikissa suomalainen sielunmaisema ja poeettiset sanoitukset yhdistyvät nuorekkaaseen soundiin ja huippuluokan tuotantoon.<br>Laulaja lauluntekijänä ANI on ollut mukana lukuisilla kulta ja platinarajan ylittäneillä kappaleilla, joilla esiintyvät muun muassa JVG, BESS, BEHM ja Evelina. Hänen osaamistaan on tunnustettu myös Emma ehdokkuuksilla Vuoden musiikintekijänä sekä Vuoden pop artistina.<br>ANIn live esiintymiset tunnetaan vahvasta läsnäolosta, energisyydestä ja aitoudesta, joka tekee jokaisesta keikasta ainutkertaisen kokemuksen.</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>Evenemangsommarens sista dag bjuder på Kukkatalos fest och ANI:s karismatiska pop på Nedre Malms torg!</p><p><b>Tidtabell</b><br>15.00–16.00 Kukkatalo<br>17.00–18.00 ANI</p><p><b>Dagens program</p><p>kl. 15.00–16.00 Kukkatalo</b><br>Kukkatalo är känt för sina högljudda, underhållande och överraskande spelningar. Bandets musik kombinerar indie, rap och pop med en rockig attityd. Bandets två solister spelar även i GOOD BOYS och JÄNÖKLUBI.<br>Det andra albumet, Ristiriita, som släpptes i februari 2026, valdes till Veckans album i Radio Helsinki och hyllades av kritikerna. I Kukkatalos musik framstår kombinationen av rap och rock som en naturlig del av det nutida poputtrycket.</p><p><b>kl. 17.00–18.00 ANI</b><br>ANI är en av de intressantaste pop-artisterna just nu, som i sin musik förenar det finländska själslandskapet och poetiska texterna med ett yngre sound och en produktion i toppklass.<br>Som sångare och låtskrivare har ANI deltagit i flera låtar som passerat guld- och platinagränsen, vilka gästas av bland annat JVG, BESS, BEHM och Evelina. Hans talang har också uppmärksammats med Emma-nomineringar för Årets musikskapare och Årets popartist.<br>ANI:s liveuppträdanden är kända för sin starka närvaro, energi och autenticitet, vilket gör varje spelning till en unik upplevelse.</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>The last day of the Summer of Events offers a Kukkatalo party and ANI's charismatic pop at Ala-Malmi Square!</p><p><b>Schedule</b><br>15.00–16.00 Kukkatalo<br>17.00–18.00 ANI</p><p><b>Programme of the day</p><p>15.00–16.00 Kukkatalo</b><br>Kukkatalo is known for its raucous, entertaining and surprising gigs. The band's music combines indie, rap and pop with a rock attitude. The band's two soloists are also involved in the ensembles GOOD BOYS and JÄNÖKLUBI.<br>The band’s second album, Ristiriita, released in February 2026, was chosen as Album of the Week by Radio Helsinki and received critical acclaim. In Kukkatalo's music, the combination of rap and rock seems a natural part of their form of contemporary pop.</p><p><b>17.00–18.00 ANI</b><br>ANI is one of the most fascinating pop artists of the moment, combining Finnish mental landscapes and poetic lyrics with a youthful sound and high class production values.<br>As a singer-songwriter, ANI has been involved in numerous songs that have sold gold and platinum, featuring artists such as JVG, BESS, BEHM and Evelina. Her talent has also been recognised with Emma nominations for Music Maker of the Year and Pop Artist of the Year.<br>ANI's live performances are known for their strong presence, energy and authenticity, making every show a unique experience.</p><p>Entry to the events is free of charge!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68465/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68463", "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:42/?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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816477, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T11:25:38.950309Z", "last_modified_time": "2026-04-14T11:25:38.950324Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786177.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816477/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-14T11:25:38.715015Z", "last_modified_time": "2026-06-04T12:13:47.693404Z", "date_published": null, "start_time": "2026-08-20T13:00:00Z", "end_time": "2026-08-20T17: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.malmitalo.fi/fi/tapahtumat/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/Taiteiden_yo_Lala_Salama_Juhlat_ja_tyopajoja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/Konstens_natt_Lala_Salama_Juhlat_och_verkstader", "en": "http://www.malmitalo.fi/en/events/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/The_Night_of_the_Arts_Lala_Salama_Juhlat_and_workshops" }, "location_extra_info": null, "provider": null, "name": { "fi": "Taiteiden yö: Lala Salama, Juhlat ja työpajoja – Malmin tapahtumakesä 2026", "sv": "Konstens natt: Lala Salama, Juhlat och verkstäder – Malms evenemangssommar 2026", "en": "The Night of the Arts: Lala Salama, Juhlat and workshops – Malmi Summer of Events 2026" }, "provider_contact_info": null, "short_description": { "fi": "Taiteiden yössä painetaan kangaskasseja, juhlitaan indiepopin tahdissa ja koetaan illan huipentava rock jyräys Lala Salaman kanssa!", "sv": "Under Konstens natt trycker man tygkassar, firar i takt till indiepop och upplever kvällens kulminering med rockdundret Lala Salama!", "en": "The Night of the Arts will be a night of printing tote bags, partying to indie pop and a rockin' good time with Lala Salama!" }, "description": { "fi": "<p>Taiteiden yössä painetaan kangaskasseja, juhlitaan indiepopin tahdissa ja koetaan illan huipentava rock jyräys Lala Salaman kanssa!</p><p><b>Aikataulu</b><br><b>Torstai 20.8. Taiteiden yö: Lala Salama, Juhlat ja työpajoja</b>\t<br>16.00–18.00 Yksin hanke: Kangaskassien painatusta <br>16.00–19.00 Työväenopisto: Hippiäisestä muurahaisten poluille - maalaa elonkirjoa kasviväreillä!<br>16.00–19.00 Työväenopisto: Heijastintyöpaja<br>16.00–17.00 Työväenopisto: Kesän muistoja -yhteislaulut<br>17.00–18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Päivän ohjelma<br>klo 16.00–18.00 Yksin hanke: Kangaskassien painatusta</b><br>Taiteiden yössä pääsee painamaan omia kangaskasseja rennossa ja luovassa työpajassa. Tule tekemään ja viihtymään!</p><p>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla<br> <br>Klo 16-19 Työväenopisto: Heijastintyöpaja<br> <br>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</p><p><b>klo 17.00–18.00 Juhlat</b><br>Suomen kiinnostavimpiin indieyhtyeisiin lukeutuva Juhlat ammentaa melodiseen kitarapopiinsa 2000 luvun alun radiohiteistä, skandinaavisesta melankoliasta ja amerikkalaisesta aikuisrockista.<br>Vuonna 2025 julkaistu toinen albumi Yöllä taivas kaatuu keräsi ylistäviä arvioita ja toi yhtyeelle Indie Awards ehdokkuuksia. Yhtye on nähty muun muassa Provinssissa, Ruisrockissa ja Tavastialla.</p><p><b>klo 19.00–20.00 Lala Salama</b><br>Lala Salama on dynaaminen rock trio, jonka ilmaisussa yhdistyvät anteeksipyytelemätön herkkyys ja jyrähtelevä särö. Kansainvälistä kulttimainetta kerännyt yhtye tunnetaan intensiivisistä keikoistaan ja vahvasta yhteydestä yleisöön.</p><p>Kokoonpano:<br>Rosa Jules – kitara, laulu<br>Aliisa Keränen – rummut, taustalaulut<br>Elli Holmström – basso, taustalaulut</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>Under Konstens natt trycker man tygkassar, firar i takt till indiepop och upplever kvällens kulminering med rockdundret Lala Salama!</p><p><b>Tidtabell</b><br>16.00–18.00 Yksin-projekt: Tryck på tygkasse<br>16-17 Työväenopisto: Kesän muistoja -yhteislaulut<br>16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla <br>16-19 Työväenopisto: Heijastintyöpaja<br>17.00-18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Dagens program<br>klo 16.00–18.00 Yksin-projektet: Tryck på tygkasse</b><br>Under Konstens natt kan man trycka egna tygkassar i en lättsam och kreativ verkstad. Kom med och tillverka och trivas!</p><p>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla<br> <br>Klo 16-19 Työväenopisto: Heijastintyöpaja<br> <br>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</p><p><b>kl. 17.00–18.00 Juhlat</b><br>Juhlat, som är en av Finlands intressantaste indiegrupper, inhämtar inspiration från 2000-talets radiohits, skandinavisk melankoni och amerikansk vuxenrock till sin melodiska gitarrpop.<br>Deras andra album, Yöllä taivas kaatuu, som släpptes 2025, fick strålande recensioner och gav bandet Indie Awards-nomineringar. Bandet har bland annat setts på Provinssirock, Ruisrock och Tavastia.</p><p><b>kl. 19.00–20.00 Lala Salama</b><br>Lala Salama är en dynamisk rocktrio vars uttryck kombinerar en oförställd känslighet med en dundrande skärpa. Bandet med internationellt kultrykte är känt för sina intensiva spelningar och för sin starka kontakt med publiken.</p><p>Sammansättning:<br>Rosa Jules – gitarr, sång<br>Aliisa Keränen – trummor, bakgrundssång<br>Elli Holmström - bas, körsång</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>The Night of the Arts will be a night of printing tote bags, partying to indie pop and a rockin' good time with Lala Salama!</p><p><b>Schedule</b><br>16.00–18.00 Yksin (‘Alone’) project: Printing tote bags<br>16-17 Työväenopisto: Kesän muistoja -yhteislaulut<br>16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla <br>16-19 Työväenopisto: Heijastintyöpaja</p><p>17.00–18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Programme of the day<br>16.00–18.00 Yksin project: Printing tote bags</b><br>The Night of the Arts lets you print your own tote bags in a relaxed and creative workshop. Get creative and have fun!</p><p>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla<br> <br>Klo 16-19 Työväenopisto: Heijastintyöpaja<br> <br>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</p><p><b>17.00–18.00 Juhlat</b><br>Juhlat, one of Finland's most interesting indie bands, draws inspiration for its melodic guitar pop from early 21st century radio hits, Scandinavian melancholy and American grown-up rock.<br>Their second album, Yöllä taivas kaatuu, was released in 2025, garnering rave reviews and even earning the band Indie Awards nominations. The band has performed in festivals such as Provinssi and Ruisrock and at Tavastia.</p><p><b>19.00–20.00 Lala Salama</b><br>Lala Salama is a dynamic rock trio whose expression combines unapologetic vulnerability with harsher edges. The band, which has built up an international cult following, is known for its intense live performances and strong connection with the audience.</p><p>Line-up:<br>Rosa Jules – guitar, vocals<br>Aliisa Keränen – drums, backing vocals<br>Elli Holmström – bass, backing vocals</p><p>Entry to the events is free of charge!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68463/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68271", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1674197, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T15:14:02.902267Z", "last_modified_time": "2026-03-19T15:14:02.902283Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786140.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1674197/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T15:14:02.758211Z", "last_modified_time": "2026-06-04T12:13:39.839416Z", "date_published": null, "start_time": "2026-06-12T11:30:00Z", "end_time": "2026-06-12T17: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.malmitalo.fi/fi/tapahtumat/event/01BA3D940BFC1583059744C211303906/Helsinki-paiva_Malmilla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/01BA3D940BFC1583059744C211303906/Helsingforsdagen_i_Malm", "en": "http://www.malmitalo.fi/en/events/event/01BA3D940BFC1583059744C211303906/Helsinki_Day_in_Malmi" }, "location_extra_info": null, "provider": null, "name": { "fi": "Helsinki-päivä Malmilla – Malmin tapahtumakesä 2026", "sv": "Helsingforsdagen i Malm – Malms evenemangssommar 2026", "en": "Helsinki Day in Malmi – Malmi Summer of Events 2026" }, "provider_contact_info": null, "short_description": { "fi": "Helsinki-päivä Malmilla tarjoaa yhteisötaidetta, tanssia ja illan huippukeikat: Laineen Kasperi ja F. Tule juhlimaan kesäistä kaupunkipäivää!", "sv": "Helsingforsdagen i Malm bjuder på samhällskonst, dans och spelningar med Laineen Kasperi och F på kvällen. Kom och fira sommardagen i staden!", "en": "Helsinki Day in Malmi will offer community art, dance and the evening's top performances: Laineen Kasperi and F. Come and celebrate a summer’s day in the city!" }, "description": { "fi": "<p>Helsinki-päivä Malmilla tarjoaa yhteisötaidetta, tanssia ja illan huippukeikat: Laineen Kasperi ja F. Tule juhlimaan kesäistä kaupunkipäivää!</p><p><b>Aikataulu</b><br>14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa yhteisötaidetta kaiken ikäisille <br>16.00–19.00 Malmin seurakunnan toimintapiste <br>16.00–16.45 Kaupunkitanssit <br>17.00–18.00 Laineen Kasperi<br>18.00–19.00 MALMI/Kollektiivi: Koe Malmi nuorten silmin -videoteos<br>19.00–20.00 F</p><p><b>klo 14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa yhteisötaidetta kaiken ikäisille</b><br>Malmin nuorisotyöyksikön kesätyöntekijät toteuttavat kaikille avointa hyvänmielen toimintaa. Tule mukaan!</p><p><b>klo 16.00–19.00 Malmin seurakunnan toimintapiste</b></p><p><b>klo 16.00–16.45 Kaupunkitanssit</b><br>Tanssiteatteri Tsuumin ammattilaisten ohjauksella järjestettävää matalan kynnyksen tanssinopetusta, johon kaikki ovat tervetulleita. Helsinki-päivän tanssilajina svengaava bugg!</p><p><b>18.00–19.00 MALMI/Kollektiivi: Koe Malmi nuorten silmin –videoteos</b><br>Tule Malmitalon auditorioon kokemaan vaikuttava videoteos, Kerroksia, joka tuo valkokankaalle nuorten dokumentaarisia valokuvia Malmista. Kerroksia tarjoaa ainutlaatuisen ja tuoreen näkökulman tuttuihin kulmiin – näe ja tunne kaupunginosa nuorten omien kokemusten kautta.</p><p>Teoksen ovat toteuttaneet Stadin ammattiopiston media-alan opiskelijat, yhteistyössä MALMI/Kollektiivin kanssa.</p><p><b>klo 17.00–18.00 Laineen Kasperi</b><br>Laineen Kasperi tunnetaan räppärinä, tuottajana, sekä yleisön tajuntaa ravistelevana esiintyjänä. Laine on työskennellyt uransa aikana lähes kaikilla taiteen alueilla ja tehnyt yhteistyötä lukuisten maamme ykkösartistien kanssa.</p><p>Laineen Kasperin uusin albumi ”Jumala on lomalla” ilmestyi keväällä 2025, ja on saanut mitä parhaimman vastaanoton.<br>Alla Laineen Kasperin puhelimeen keikan jälkeen saapunut viesti:<br>”Siis voihan vid-du et oli hieno keikka eilen!</p><p>Suorastaan spirituaalinen kokemus! Uskomatonta tsekata noin voimakasta lähetystä ja kuunnella lyyristä viestiä, joka tuntuu kanavoituvan suoraan sieltä jostain ikuisen viisauden lähteestä. Oot kyllä huippu tekijä ja universaalin ymmärryksen sanoiksi pukija.”</p><p><b>klo 19–20 F</b><br>Emma-palkittu rap/R&B-artisti F julkaisi keväällä 2024 uuden albuminsa Self-helpless. Self-helpless on antiteesi itsensä jatkuvalle kehittämiselle ja ylistys keskeneräisyydelle.<br>Visuaalisesti albumi kumartaa 90-luvun ikonisten tähtien, kuten Anna Nicole Smithin ja Pamela Andersonin suuntaan. Albumilta julkaistiin viisi singleä: musiikkivideollaan vakuuttanut Taas mennään, Muija on ku kone, Teetä (feat. Tuplakääk), <br>Naispaholainen II ja Exit. Rohkeista ja visuaalisesti kekseliäistä livekeikoistaan ylistetty F tunnetaan parhaiten kultaa myyneestä Ihana-hitistään.</p><p>Monipuolinen, vahvoja albumikokonaisuuksia luova artisti on ollut ehdolla Emma Gaalassa useasti ja vuonna 2021 hänet palkittiin vuoden musiikkivideopalkinnolla.</p><p><b>Tapahtumiin on vapaa pääsy!</b></p>", "sv": "<p>Helsingforsdagen i Malm bjuder på samhällskonst, dans och spelningar med Laineen Kasperi och F på kvällen. Kom och fira sommardagen i staden!</p><p>Tidtabell<br>14.30–18.30 Unga sommarjobbare vid Malms ungdomsarbetsenhet har planerat samhällskonst för alla åldrar <br>16.00–19.00 Malms församlings aktivitetspunkt <br>16.00–16.45 Stadsdans <br>17.00–18.00 Laineen Kasperi <br>19.00–20.00 F</p><p>kl. 14.30–18.30 Unga sommarjobbare vid Malms ungdomsarbetsenhet har planerat samhällskonst för alla åldrar<br>Sommarjobbarna vid enheten för ungdomsarbete i Malm ordnar feel good-verksamhet som är öppen för alla. Kom med!<br>kl. 16.00–19.00 Malms församlings aktivitetspunkt</p><p>kl. 16.00–16.45 Stadsdans<br>Danslektioner med låg tröskel under ledning av proffs från Tanssiteatteri Tsuumi, där alla är välkomna.</p><p>kl. 17–18 Laineen Kasperi<br>Laineen Kaseri är känd som en rappare, producent och artist som skakar om publikens medvetande. Under sin karriär har Laine arbetat med nästan alla konstarter, och han har samarbetat med många av de största artisterna i vårt land. <br>Laineen Kasperis senaste album ”Jumala on lomalla” kom våren 2025 och har fått ett fint mottagande.</p><p>Nedan följer ett meddelande som kom till Laineen Kasperis telefon efter en spelning:<br>”Alltså vilken jä--a bra spelning i går! <br>En rent spirituell upplevelse! Fantastiskt att se en så mäktig sändning och höra det lyriska budskapet, som känns som att det kanaliseras direkt ur nån evig visdomskälla. Du är superbra och klär den universella förståelsen i ord.”</p><p>kl. 19–20 F<br>Den Emma-belönade rap/R&B-artisten F släppte sitt nya album Self-helpless våren 2024. Self-helpless är en antites till att hela tiden utveckla sig själv och en hyllning till det halvfärdiga.</p><p>Visuellt bugar albumet mot ikoniska 90-talsstjärnor som Anna Nicole Smith och Pamela Anderson. Från albumet släpptes fem singlar: Taas mennään, som imponerade med sin musikvideo, Muija on ku kone, Teetä (feat. Tuplakääk), Naispaholainen II och Exit. F, som hyllats för sina djärva och visuellt uppfinningsrika livespelningar, är bäst känd för sin hit Ihana, som sålt guld.</p><p>F är en mångsidig artist som skapar starka albumhelheter och har varit nominerad på Emma-galan flera gånger. År 2021 belönades hon med priset för årets musikvideo.</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>Helsinki Day in Malmi will offer community art, dance and the evening's top performances: Laineen Kasperi and F. Come and celebrate a summer’s day in the city!</p><p>Schedule<br>14.30–18.30 Community art for all ages, created by Malmi Youth Work Unit's summer interns <br>16.00–19.00 Malmi parish activity point <br>16.00–16.45 Dancing in the City <br>17.00–18.00 Laineen Kasperi <br>19.00–20.00 F</p><p>14.30–18.30 Community art for all ages, created by the Malmi Youth Work Unit's summer interns<br>Malmi Youth Work Unit’s summer workers host pleasant activities open to all. Join us!<br>16.00–19.00 Malmi parish activity point</p><p>16.00–16.45 Dancing in the City<br>Low-threshold dance classes for everyone hosted by Tsuumi Dance Theatre professionals.</p><p>17.00–18.00 Laineen Kasperi<br>Laineen Kasperi is known as a rapper, producer and performer who shakes the audience to their core. During his career, Laine has worked in almost every field of art and collaborated with many of the top artists in Finland. <br>Laineen Kasperi's latest album Jumala on lomalla was released in spring 2025, and has been very well received.</p><p>Below is a message that Laineen Kasperi received on his phone after a show:<br>\"I mean, God-damn, you gave a great performance last night! <br>It was a truly spiritual experience! It's incredible to watch such a powerful performer and listen to a lyrical message that seems to be channeled directly from some source of eternal wisdom. But you are a top creator and a poet that can put the universal understanding into words.\"</p><p>19.00–20.00 F<br>Emma Award-winning rap/R&B artist F released her new album Self-helpless in spring 2024. Self-helpless is the antithesis of continuous self-improvement and a celebration of unfinished business.</p><p>Visually, the album bows to iconic 90s stars like Anna Nicole Smith and Pamela Anderson. Five singles were released from the album: Taas mennään, Muija on ku kone, Teetä (feat. Double Head), Female Devil II and Exit. Praised for her bold and visually inventive live shows, F is best known for her gold-selling hit Ihana.</p><p>A versatile artist who creates strong albums, she has been nominated in the Emma Gaala awards several times, and she won Music Video of the Year in 2021.</p><p>Entry to the events is free of charge!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68271/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69233", "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:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702290/", "sv": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702290/", "en": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702290/" }, "price": { "fi": "15 / 7 €", "sv": "15 / 7 €", "en": "15 / 7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384946, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T10:13:55.160756Z", "last_modified_time": "2026-06-04T10:13:55.160772Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791976.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384946/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T10:13:55.034450Z", "last_modified_time": "2026-06-04T10:13:55.333700Z", "date_published": null, "start_time": "2026-11-27T17:00:00Z", "end_time": "2026-11-27T19: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/A30CB5D0F313FCDE93ADD51AE9BE95FA/We_Music_EMILII_Kaisa_Ollila_Milou_Vilma_Talvitie_Caisa_30_Club_", "sv": "http://www.caisa.fi/sv/evenemang/event/A30CB5D0F313FCDE93ADD51AE9BE95FA/We_Music_EMILII_Kaisa_Ollila_Milou_Vilma_Talvitie_Caisa_30_Club_", "en": "http://www.caisa.fi/en/events/event/A30CB5D0F313FCDE93ADD51AE9BE95FA/We_Music_EMILII_Kaisa_Ollila_Milou_Vilma_Talvitie_Caisa_30_Club_" }, "location_extra_info": null, "provider": null, "name": { "fi": "We Music: EMILII – Kaisa Ollila – Milou – Vilma Talvitie Caisa 30 Club", "sv": "We Music: EMILII – Kaisa Ollila – Milou – Vilma Talvitie Caisa 30 Club", "en": "We Music: EMILII – Kaisa Ollila – Milou – Vilma Talvitie Caisa 30 Club" }, "provider_contact_info": null, "short_description": null, "description": { "fi": "<p>We Music – EMILII, Kaisa Ollila, Milou ja Vilma Talvitie – on vastavoima yksilökeskeiselle artistikulttuurille.</p><p>Taiteilijakollektiivi juhlii yhteisöllisyyttä ja yhteenkuuluvuutta. Kollektiivissa kannustetaan eri taiteiden muotojen yhdistämiseen, musiikkigenrejen sekoittamiseen, kokeiluun ja kielten diversiteettiin.</p><p>We Musicin debyyttiesitys nähdään kulttuurikeskus Caisassa 27.11. Illan aikana koetaan neljä erilaista esitystä, jotka yhdistelevät musiikkia, teatteria, visuaalisuutta ja liikettä. Artistit vierailevat myös toistensa esityksissä ja ovat näin hetken osa toistensa taidetta. Illan esitykset ovat siksi uniikkeja.</p><p><b>EMILII</b> on eksistentiaalinen kriisi kiedottuna elektroniseen soundiin. <br><b>Kaisla Ollila</b> on minimusikaali lavalla ja luonnossa. <br><b>Milou</b> on suomalaista melankoliaa ranskaksi romantisoituna.<br><b>Vilma Talvitie</b> on yhden naisen maailmaa kiertävä yhtye, jossa ääni, keho ja piano sulautuvat yhdeksi.</p><p>Esityskielet: suomi, ranska, englanti <br>Esityksen kesto: 2 t 20 min sisältäen väliajan <br>Liput: 15 / 7 euroa osoitteesta lippu.fi</p><p>Esitys sopii nuorille ja aikuisille, monikieliselle yleisölle ja kaikille monimuotoisesta taiteesta kiinnostuneille.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69233/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69232", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702287/", "sv": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702287/", "en": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702287/" }, "price": { "fi": "15 / 7 €", "sv": "15 / 7 €", "en": "15 / 7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384945, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T10:13:52.719757Z", "last_modified_time": "2026-06-04T10:13:52.719772Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791964.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384945/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T10:13:52.369602Z", "last_modified_time": "2026-06-04T10:13:52.878330Z", "date_published": null, "start_time": "2026-10-30T17:00:00Z", "end_time": "2026-10-30T19: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/AF8043AFA23C9A82F0871693042F7CA3/Caisa_30_Club_-_Luciana_Garcia_Ensemble", "sv": "http://www.caisa.fi/sv/evenemang/event/AF8043AFA23C9A82F0871693042F7CA3/Caisa_30_Club_-_Luciana_Garcia_Ensemble", "en": "http://www.caisa.fi/en/events/event/AF8043AFA23C9A82F0871693042F7CA3/Caisa_30_Club_-_Luciana_Garcia_Ensemble" }, "location_extra_info": null, "provider": null, "name": { "fi": "Caisa 30 Club - Luciana Garcia Ensemble", "sv": "Caisa 30 Club - Luciana Garcia Ensemble", "en": "Caisa 30 Club - Luciana Garcia Ensemble" }, "provider_contact_info": null, "short_description": { "fi": "Luciana García Ensemble tuo yhteen queer-taiteilijoita monipuolisista kulttuurisista taustoista tutkimaan ääntä identiteetin, vastarinnan ja kollektiivisen mielikuvituksen tilana.", "en": "Luciana García Ensemble brings together queer musicians from diverse cultural and national backgrounds to explore sound as a space of identity, resistance, and collective imagination." }, "description": { "fi": "<p>Luciana García Ensemble tuo yhteen queer-taiteilijoita monipuolisista kulttuurisista taustoista tutkimaan ääntä identiteetin, vastarinnan ja kollektiivisen mielikuvituksen tilana.</p><p>Jazzin, vapaan improvisaation, maailmanlaajuisten vaikutteiden ja tajunnanvirtaan pohjautuvan esitystavan kautta yhtye luo musiikillisia kertomuksia, jotka haastavat konventioita ja juhlistavat moninaisuutta.</p><p>Luciana Garcían sävellykset ammentavat queer-teorian tutkimuksesta ja eletyistä queer-kokemuksista, tavoitteenaan edistää tasa-arvoa, lisätä LGBTQIA+-yhteisön näkyvyyttä ja vahvistaa yhteisöllisyyttä musiikin välityksellä. Garcían projekti tutkii, kuinka musiikki ja taide voivat jatkaa mahdollisuuksiensa laajentamista ja purkaa ennakkokäsityksiä siitä, miten asioiden pitäisi olla.</p><p>Luciana García (CH) – piano, sävellys <br>Devina Boughton (USA/FI) – trumpetti <br>Ami Kajan (FI) – basso <br>Vilho Louhivuori (FI) – rummut <br>Agnieszka Placzek (PO) – saksofonit <br>Alisa Khodos (USA) – viulu</p><p><b>Luciana García</b> on Santiago de Chilestä kotoisin oleva pianisti, visionäärinen säveltäjä, improvisoija ja väitöstutkija, joka asuu nykyään Helsingissä. Hänet tunnetaan ainutlaatuisesta tavastaan yhdistää sävelkielessään modernia jazzia ja latinalaisamerikkalaisia vaikutteita.</p><p>García kanavoi musiikissaan intohimoansa sosiaalista oikeudenmukaisuutta kohtaan, käyttäen sitä välineenä inspiroidakseen muutosta ja vahvistaakseen yhteisöllisiä siteitä. García punoo jokaisessa projektissaan ja esiintymisessään syvällisiä kulttuurisia kertomuksia, jotka heijastavat hänen sitoutumistaan yhdenvertaisuuteen ja pyrkimykseen kohti muutosta.</p>", "en": "<p>Luciana García Ensemble brings together queer musicians from diverse cultural and national backgrounds to explore sound as a space of identity, resistance, and collective imagination.</p><p>Through jazz, free improvisation, global influences, and stream-of-consciousness performance, this ensemble creates musical narratives that challenge conventions and celebrate multiplicity.</p><p>The compositions created by Luciana García draw from research in queer theory and lived queer experiences, aiming to promote equity, amplify LGBTQIA+ visibility, and foster a sense of community through music. García’s project explores how music and art can continue to expand their possibilities and dismantle all preconceived notions of what should be. <br> <br>Luciana García (CH) – piano, compositions <br>Devina Boughton (USA/FI) – trumpet <br>Ami Kajan (FI) – bass <br>Vilho Louhivuori (FI) – drums <br>Agnieszka Placzek (PO) – saxophones <br>Alisa Khodos (USA) – violin</p><p><b>Luciana García</b> is a Chilean pianist, visionary composer, improviser, and doctoral researcher from Santiago de Chile and based in Helsinki. They are renowned for their innovative fusion of contemporary jazz and Latin American roots.</p><p>Luciana channels their passion for social justice into their music, using it as a powerful platform for inspiring change and fostering community connections. With each performance and project, García weaves deep cultural narratives that reflect their commitment to equity and transformation.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69232/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69223", "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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/we-jazz-presents-bill-frisell-trio-us-4171788/" }, "price": { "fi": "59-79 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384944, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T09:13:54.963613Z", "last_modified_time": "2026-06-04T09:13:54.963629Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793529.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384944/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T09:13:54.600072Z", "last_modified_time": "2026-06-04T09:13:55.156883Z", "date_published": null, "start_time": "2027-02-16", "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/4F8661641CE7F07C4F551F5AA5B40563/We_Jazz_presents_BILL_FRISELL_TRIO_US_" }, "location_extra_info": null, "provider": { "fi": "We Jazz Oy" }, "name": { "fi": "We Jazz presents: BILL FRISELL TRIO (US)" }, "provider_contact_info": null, "short_description": { "fi": "Rakastettu Bill Frisell Trio palaa Suomeen helmikuussa 2027" }, "description": { "fi": "<p>Rakastettu Bill Frisell Trio palaa Suomeen helmikuussa 2027</p><p><b>Legendaarinen amerikkalaiskitaristi Bill Frisell palaa Suomeen 16.2.2027 ja esiintyy Helsingin Savoy-teatterissa triokokoonpanonsa kanssa. Edellisellä kerralla Helsingin-konserttinsa loppuunmyynyt Bill Frisell Trio tuo kitaristin yhteen basisti Thomas Morganin ja rumpali Rudy Roystonin kanssa, ja kolmikon pitkään hioutunut yhtyessoitto on konserttitilanteessa maagista kuultavaa.</b></p><p>Maailman arvostetuimpiin jazz-yhtyeisiin lukeutuva <b>Bill Frisell Trio</b> palaa Helsinkiin ja esiintyy tiistaina 16.2. Savoy-teatterissa. Kitaristi <b>Bill Frisellin</b>, basisti <b>Thomas Morganin</b> ja rumpali <b>Rudy Roystonin</b> muodostama kokoonpano on tunnettu taianomaisen intensiivisistä konserteistaan, jossa musiikki soljuu ajatuksen lailla jo pitkään yhdessä musisoineen kokoonpanon kuljettaessa tarinaa. Vuonna 2020 julkaistu albumi <i>Valentine</i> (Blue Note Records) on trion mestariteos, ja livenä musiikki löytää saa vielä uusia tasoja. Bill Frisell Trio myi edellisen Helsingin-keikkansa loppuun keväällä 2025, jonka jälkeen yhtyeen paluuta on odotettu innokkaaasti. Tänä vuonna 75-vuotisjuhlakonserttiensa myötä laajasti esiintynyt tyylikkään kitarismin mestari on uransa vedossa ja odotettavissa onkin jopa hurjat odotuksen ylittävä talvinen tiistai-ilta Savoyssa.</p><p>Bill Frisell Trion Helsingin-esiintymisen järjestäjänä toimii helsinkiläinen We Jazz, joka on hiljattain laajentanut toimintaansa levymerkkinsä, lehtensä ja festivaalituotantojensa ohella aktiiviseksi keikkajärjestäjäksi. We Jazz Agency järjestää keikkoja jatkossa säännöllisesti esitellen artisteja, joiden musiikkiin se uskoo. Erityisesti Helsingin keikkatarjonnan piristäminen ympärivuotisesti on We Jazzin fokuksessa.</p><p><i>“With Valentine, Frisell, Royston and Morgan revel in the tight but loose interplay that is a hallmark of the best groups, plying a course as deeply lyrical as it is adventurous. Feels like the beginning of a great adventure.”</i> — AllAboutJazz</p><p><i>\"Kitaristi Bill Frisell soittaa melkein mitä tahansa, mutta kuulostaa silti aina itseltään.\"</i> – Helsingin Sanomat</p><p>Ovet klo 18.00. Showtime vahvistuu myöhemmin.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69223/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69220", "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: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: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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697155/", "sv": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697155/", "en": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697155/" }, "price": { "fi": "24,80 € / 20 € / 15 €", "sv": "24,80 € / 20 € / 15 €", "en": "24,80 € / 20 € / 15 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384943, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T08:13:51.288141Z", "last_modified_time": "2026-06-04T08:13:51.288155Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793522.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384943/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-06-04T08:13:51.178755Z", "last_modified_time": "2026-06-04T08:13:51.453857Z", "date_published": null, "start_time": "2026-10-24T15: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/6114EEBE6655621C6C513B53F58CFDDB/Will_Funk_For_Food_A_Fistful_of_Funk", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6114EEBE6655621C6C513B53F58CFDDB/Will_Funk_For_Food_A_Fistful_of_Funk", "en": "http://www.kanneltalo.fi/en/events/event/6114EEBE6655621C6C513B53F58CFDDB/Will_Funk_For_Food_A_Fistful_of_Funk" }, "location_extra_info": null, "provider": null, "name": { "fi": "Will Funk For Food: A Fistful of Funk", "sv": "Will Funk For Food: A Fistful of Funk", "en": "Will Funk For Food: A Fistful of Funk" }, "provider_contact_info": null, "short_description": { "fi": "Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.", "en": "One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking." }, "description": { "fi": "<p>Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.</p><p><i>A Fistful of Funk</i> on katutanssia, absurdia teatteria ja livemusiikkia yhdistelevä englanninkielinen esitys, joka käsittelee ystävyyttä, sukupuoliroolien ja maskuliinisuuden teemoja leikin, huumorin ja virtuoosimaisen katutanssin avulla.</p><p>Teoksessa viisi yksinäistä cowboyta lähtee yhdessä eeppiselle matkalle halki aavikon. Matkalla 1970-luvun funk-tanssi yhdistyy näytelmäkirjailija Juho Keräsen tekstiin, jonka inspiraationa on Sergio Leonen lännenelokuvien toksinen machismo ja hypermaskuliinisuus.</p><p>Katutanssityyli <i>locking</i> toimii <i>A Fistful of Funk</i> -teoksen punaisena lankana, josta lähdetään kutomaan yhteyksiä tanssiteatterin ja klovnerian maailmaan. Tästä sopasta syntyy hurmaavan päätön seikkailu, jossa kunkin esiintyjän omintakeisuus ja ainutlaatuisuus ruokkii toisiaan.</p><p>Locking on 1970-luvulla Yhdysvaltain länsirannikolla afrikkalaisamerikkalaisten keskuudessa syntynyt tanssityyli, jolle ovat ominaisia terävät pysähdykset, groovaavat askeleet ja akrobaattiset temput. Esityksessä syvennytään yhteen lockingin keskeisistä elementeistä: <i>characteriin</i> eli tanssijan ominaislaatuun. Western-tyylilajia käytetään ponnahduslautana keskusteluille ystävyyden ja veljeyden teemoista, sekä leikkisästä kilpailusta katutanssikulttuurille ominaisten kaksintaistelujen, eli battlejen muodossa.</p><p>Will Funk For Food on vuonna 2008 perustettu, yksi Suomen kansainvälisesti menestyneimmistä katutanssiryhmistä, joka on erikoistunut locking-tanssityyliin. WFFF tekee tanssilajiaan tunnetuksi Suomessa, ja pyrkii toiminnallaan vakiinnuttamaan katutanssia osaksi suomalaista kulttuuritarjontaa sekä tuomaan iloa ja riemua kaikenikäisille. Tanssiryhmän suurimpia meriittejä ovat kolminkertainen peräkkäinen SM-kulta, sekä esityksiä niin Japanissa, Ranskassa kuin Itämeren takana Ruotsissa. <br> <br>Lavalla nähdään Will Funk For Foodin jäsenistä Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg ja Sami Pajari sekä äänisuunnittelija-muusikko Sebastian Kurtén ja rumpali Elias Ojutkangas.</p><p>Esityskieli: englanti<br>Kesto: 75 min</p>", "en": "<p>One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking.</p><p>The work is inspired by the hypermasculinity and toxic machismo of western films and the genre's cavalcade of characters. A Fistful of Funk revolves around locking from which it begins to weave connections to the world of contemporary dance theatre.</p><p>The performance dives head-first into one of the main elements of locking dance: character. Ultimately, character is the distinctive feature that separates dancers from each other and contributes to the uniqueness of their individual styles.</p><p>The group seeks to dismantle the masculinity familiar from westerns and explore what masculinity and masculine encounters can be instead. In addition to exploring the themes of friendship and brotherhood, the performance uses the western setting as a platform for playful street dance duels, known as battles in street dance culture.</p><p>Locking, which was originally danced to funk music, was created by African Americans living on the West Coast of the United States in the 1970s. Locking is characterised by precise, sharp pauses and acrobatic tricks, combined with the grooving 'party steps' of the West Coast social dances.</p><p>In addition to locking, the performance utilises the movement language of contemporary dance, physical theatre, and clown techniques. The aim is to create an adventurous, narrative stage where each performer’s originality and uniqueness feed each other.</p><p>Will Funk For Food, founded in 2008, is one of the most internationally successful street dance groups in Finland specialised in locking. WFFF is making locking known in Finland and aims to establish street dance as part of the Finnish cultural scene and bring joy to all ages. The dance group has won three consecutive Finnish Championships and performed internationally in Japan, France, and Sweden.</p><p>The stage will feature Will Funk For Food's Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg and Sami Pajari, as well as sound designer and musician Sebastian Kurtén, and drummer Elias Ojutkangas.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69220/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69219", "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: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: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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697154/", "sv": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697154/", "en": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697154/" }, "price": { "fi": "24,80 € / 20 € / 15 €", "sv": "24,80 € / 20 € / 15 €", "en": "24,80 € / 20 € / 15 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384942, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T08:13:50.663782Z", "last_modified_time": "2026-06-04T08:13:50.663800Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793521.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384942/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-06-04T08:13:50.513970Z", "last_modified_time": "2026-06-04T08:13:50.882563Z", "date_published": null, "start_time": "2026-10-23T15: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/3D5186F0397CA11109A4134517C6DBB6/Will_Funk_For_Food_A_Fistful_of_Funk", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3D5186F0397CA11109A4134517C6DBB6/Will_Funk_For_Food_A_Fistful_of_Funk", "en": "http://www.kanneltalo.fi/en/events/event/3D5186F0397CA11109A4134517C6DBB6/Will_Funk_For_Food_A_Fistful_of_Funk" }, "location_extra_info": null, "provider": null, "name": { "fi": "Will Funk For Food: A Fistful of Funk", "sv": "Will Funk For Food: A Fistful of Funk", "en": "Will Funk For Food: A Fistful of Funk" }, "provider_contact_info": null, "short_description": { "fi": "Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.", "en": "One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking." }, "description": { "fi": "<p>Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.</p><p><i>A Fistful of Funk</i> on katutanssia, absurdia teatteria ja livemusiikkia yhdistelevä englanninkielinen esitys, joka käsittelee ystävyyttä, sukupuoliroolien ja maskuliinisuuden teemoja leikin, huumorin ja virtuoosimaisen katutanssin avulla.</p><p>Teoksessa viisi yksinäistä cowboyta lähtee yhdessä eeppiselle matkalle halki aavikon. Matkalla 1970-luvun funk-tanssi yhdistyy näytelmäkirjailija Juho Keräsen tekstiin, jonka inspiraationa on Sergio Leonen lännenelokuvien toksinen machismo ja hypermaskuliinisuus.</p><p>Katutanssityyli <i>locking</i> toimii <i>A Fistful of Funk</i> -teoksen punaisena lankana, josta lähdetään kutomaan yhteyksiä tanssiteatterin ja klovnerian maailmaan. Tästä sopasta syntyy hurmaavan päätön seikkailu, jossa kunkin esiintyjän omintakeisuus ja ainutlaatuisuus ruokkii toisiaan.</p><p>Locking on 1970-luvulla Yhdysvaltain länsirannikolla afrikkalaisamerikkalaisten keskuudessa syntynyt tanssityyli, jolle ovat ominaisia terävät pysähdykset, groovaavat askeleet ja akrobaattiset temput. Esityksessä syvennytään yhteen lockingin keskeisistä elementeistä: <i>characteriin</i> eli tanssijan ominaislaatuun. Western-tyylilajia käytetään ponnahduslautana keskusteluille ystävyyden ja veljeyden teemoista, sekä leikkisästä kilpailusta katutanssikulttuurille ominaisten kaksintaistelujen, eli battlejen muodossa.</p><p>Will Funk For Food on vuonna 2008 perustettu, yksi Suomen kansainvälisesti menestyneimmistä katutanssiryhmistä, joka on erikoistunut locking-tanssityyliin. WFFF tekee tanssilajiaan tunnetuksi Suomessa, ja pyrkii toiminnallaan vakiinnuttamaan katutanssia osaksi suomalaista kulttuuritarjontaa sekä tuomaan iloa ja riemua kaikenikäisille. Tanssiryhmän suurimpia meriittejä ovat kolminkertainen peräkkäinen SM-kulta, sekä esityksiä niin Japanissa, Ranskassa kuin Itämeren takana Ruotsissa.</p><p>Lavalla nähdään Will Funk For Foodin jäsenistä Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg ja Sami Pajari sekä äänisuunnittelija-muusikko Sebastian Kurtén ja rumpali Elias Ojutkangas.</p><p>Esityskieli: englanti<br>Kesto: 75 min</p>", "en": "<p>One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking.</p><p>The work is inspired by the hypermasculinity and toxic machismo of western films and the genre's cavalcade of characters. A Fistful of Funk revolves around locking from which it begins to weave connections to the world of contemporary dance theatre.</p><p>The performance dives head-first into one of the main elements of locking dance: character. Ultimately, character is the distinctive feature that separates dancers from each other and contributes to the uniqueness of their individual styles.</p><p>The group seeks to dismantle the masculinity familiar from westerns and explore what masculinity and masculine encounters can be instead. In addition to exploring the themes of friendship and brotherhood, the performance uses the western setting as a platform for playful street dance duels, known as battles in street dance culture.</p><p>Locking, which was originally danced to funk music, was created by African Americans living on the West Coast of the United States in the 1970s. Locking is characterised by precise, sharp pauses and acrobatic tricks, combined with the grooving 'party steps' of the West Coast social dances.</p><p>In addition to locking, the performance utilises the movement language of contemporary dance, physical theatre, and clown techniques. The aim is to create an adventurous, narrative stage where each performer’s originality and uniqueness feed each other.</p><p>Will Funk For Food, founded in 2008, is one of the most internationally successful street dance groups in Finland specialised in locking. WFFF is making locking known in Finland and aims to establish street dance as part of the Finnish cultural scene and bring joy to all ages. The dance group has won three consecutive Finnish Championships and performed internationally in Japan, France, and Sweden.</p><p>The stage will feature Will Funk For Food's Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg and Sami Pajari, as well as sound designer and musician Sebastian Kurtén, and drummer Elias Ojutkangas.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69219/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69218", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi//artist/piirpauke/piirpauke-4057795/", "sv": "https://www.lippu.fi//artist/piirpauke/piirpauke-4057795/", "en": "https://www.lippu.fi//artist/piirpauke/piirpauke-4057795/" }, "price": { "fi": "24,80 € / 20 €", "sv": "24,80 € / 20 €", "en": "24,80 € / 20 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384941, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T07:14:04.286037Z", "last_modified_time": "2026-06-04T07:14:04.286052Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793520.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384941/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T07:14:04.130603Z", "last_modified_time": "2026-06-04T07:14:04.508919Z", "date_published": null, "start_time": "2026-10-17T15: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/3B06A297742011CB6953FF880E05BBCE/Piirpauke", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3B06A297742011CB6953FF880E05BBCE/Piirpauke", "en": "http://www.kanneltalo.fi/en/events/event/3B06A297742011CB6953FF880E05BBCE/Piirpauke" }, "location_extra_info": null, "provider": null, "name": { "fi": "Piirpauke", "sv": "Piirpauke", "en": "Piirpauke" }, "provider_contact_info": null, "short_description": { "fi": "Maailmanmusiikin legenda Piirpauke konsertoi Kanneltalossa." }, "description": { "fi": "<p>Maailmanmusiikin legenda Piirpauke konsertoi Kanneltalossa.</p><p>Kiistatta kautta aikain suosituimpiin kotimaisiin instrumentaaliyhtyeisiin lukeutuva Piirpauke on sukeltanut vuosien saatossa ennakkoluulottomasti monien eri kulttuurien musiikkiperinteisiin, joihin lukeutuvat mm. nuevo flamenco, mbalax, jazz, progressiivinen rock, musica llanera sekä romanialainen ja turkkilainen musiikki. Piirpaukeen tuoreimman albumin <i>Lumon</i> hengessä Kanneltalon keikalla kuullaan muun muassa Jean Sibeliuksen, Oskari Merikannon, Toivo Kuulan, Selim Palmgrenin ja Yrjö Kilpisen sävellyksistä.</p><p>Vuonna 1975 syntynsä Pori Jazzeilla saaneen yhtyeen debyyttialbumia on myyty enemmän kuin mitään muuta Suomessa julkaistua pelkästään soitinmusiikkia sisältävää pitkäsoittoa. Laajaa arvostusta nauttiva, genrensä merkittävimpiin nimiin lukeutuva Piirpauke on merkittävän uransa aikana soittanut satoja konsertteja ympäri maailman ja esiintynyt samoilla areenoilla huippunimien, kuten Miles Davis, Ravi Shankar, Astor Piazzolla ja Nirvana, kanssa. <br> <br>Kokoonpano:<br>Sakari Kukko – piano, saksofonit, huilut<br>Matti Salo – kitarat<br>Ari Hossi – basso<br>Ilmari Heikinheimo – rummut, perkussiot</p><p>Kesto 2 t sis. väliaika</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69218/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68524", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/show-dinner/savoy-the-glanz-of-berlin-roaring-20s-show-4146054/", "en": "https://www.lippu.fi/artist/show-dinner/savoy-the-glanz-of-berlin-roaring-20s-show-4146054/" }, "price": { "fi": "17-77 €, S&D 139 €", "en": "17-77 €, S&D 139 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1913059, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-05T10:13:28.299302Z", "last_modified_time": "2026-05-05T10:13:28.299318Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789970.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913059/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-05T10:13:28.139623Z", "last_modified_time": "2026-06-03T15:13:24.014325Z", "date_published": null, "start_time": "2026-11-28T17: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/ED206D52BE77B6A07C9B114AFABB9E15/The_Glanz_of_Berlin_Roaring_20_s_show", "en": "http://www.savoyteatteri.fi/en/events/event/ED206D52BE77B6A07C9B114AFABB9E15/The_Glanz_of_Berlin_Roaring_20_s_show" }, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri", "en": "Savoy Theatre" }, "name": { "fi": "The Glanz of Berlin – Roaring 20’s show", "en": "The Glanz of Berlin – Roaring 20’s show" }, "provider_contact_info": null, "short_description": { "fi": "Astu sisään 1920-luvun Berliinin villiin, säihkyvään yöhön!", "en": "Step into the wild, glittering night of 1920s Berlin!" }, "description": { "fi": "<p>Astu sisään 1920-luvun Berliinin villiin, säihkyvään yöhön!</p><p>Dekadentteja iltoja, hurmaavaa loistoa, maailmanluokan esiintyjiä ja vastustamatonta musiikkia – <b>The Glanz of Berlin</b> on unohtumaton matka legendaariseen Berliinin kaksikymmentäluvun sykkeeseen. Esityksen tähtenä loistaa <b>Evi Niessner</b> – <i>The Voice of Vintage</i>, joka tuo Weimarin ajan yöelämän huuman tähän päivään.</p><p>The Glanz of Berlin on ilotulitusta: musiikkia, tanssia, akrobatiaa, kabareeta, huumoria ja vintage glamouria. Kansainvälinen live orkesteri <b>THE GLANZ</b> ympäröi yleisön jazzin, tangon ja swingin sävelillä.</p><p>Esitys yhdistää show’lle luodut koreografiat ja akrobaattiset numerot aitoihin Weimarin ajan kappaleisiin, niiden moderneihin sovituksiin ja täysin uusiin sävellyksiin kuten esityksen nimikkokappaleeseen <i>Glanz auf dem Vulkan</i>. 1920-luku ei ole koskaan kuulostanut näin raikkaalta ja sähäkältä.</p><p>Evi Niessnerin suunnittelema kokonaisuus - vaikuttavat videoprojisoinnit, draaman täyttämä valosuunnittelu ja ylelliset käsintehdyt puvut luovat lavalle hohtavan maailman, joka kutsuu sukeltamaan ajan henkeen.</p><p>Show’ta on esitetty Saksassa menestyksekkäästi vuodesta 2020 alkaen, sen saksankielisellä nimellä <i>Glanz auf dem Vulkan</i>. Esitys on ollut sekä yleisömenestys että kriitikkojen suosiossa. Nyt The Glanz of Berlin nähdään Suomessa ensimmäistä kertaa!</p><p>The Glanz of Berlin on kunnianosoitus 1920-luvun rohkeille naisille ja pelottomille taiteilijoille, jotka loivat aikakauden täynnä vapautta, luovuutta ja ennakkoluulottomuutta. Show muistuttaa, että taide, huumori ja intohimo ovat edelleen vahvimmat vastavoimamme elämän myllerryksille.</p><p><b>Luvassa on ainutlaatuinen taiteen, vapauden ja ihmisyyden juhla! Iloinen 20-luku on jälleen täällä!</b></p><p>Esityksen kieli: englanti ja saksa, suomenkielinen tekstitys</p><p>Kesto n. 2 h 20 min, sis. 30 min väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b><i>Show & Dinner</b></i><br>Tarjolla myös herkulliset <i>Show & Dinner</i> -paketit – nauti päivällistä teatterin yhteydessä sijaitsevassa Ravintola Minne Gardenissa ennen esitystä klo 17.00!</p><p><i>Show & Dinner liput 139 € sisältävät parhaat paikat, kolmen ruokalajin illallisen ja naulakkopalvelumaksun.</p><p><b><i>Show & Dinner -paketit ovat myynnissä omina lipputyyppeinään Lippu.fi verkkokaupassa. <br>Pe 27.11. on toistaiseksi täyteen varattu.</b></i></p><p>Menu-vaihtoehdot:</p><p><b>Kabaree 1920</b><br>Porsaanpotkaterriiniä, hyydytettyä madeiralientä ja knöödeliä L<br>Yön yli mureaksi haudutettu häränrinta-sauerbraten, punakaalipaistosta ja perunafondant L,G<br>Omenastruudeli, kirsikkahilloa ja vaniljajäätelöä L<br> <br><b>Grün 1920 (kasvismenu)</b><br>Maa-artisokkakeittoa L,G<br>Kotijuustoschnitzel, savojinkaalta ja perunafondant L<br>Omenastruudeli, kirsikkahilloa ja vaniljajäätelöä L</p><p>- Menun hinta ei sisällä juomia.<br>- Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua (klo 17.00).<br>- Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</i></p><p><b>Jatkot 1920-luvun hengessä</b><br>Perjantain esityksen jälkeen luvassa myös riemukkaat 20-luvun jatkobileet salakapakkahenkeen muuntautuvassa Ravintola Minnessä n. klo 21.15-00.00. Vapaa pääsy! Savoy-teatterin narikka palvelee jatkojen loppuun saakka.</p>", "en": "<p>Step into the wild, glittering night of 1920s Berlin!</p><p>Decadent evenings, dazzling glamour, world class performers and irresistible music – <b>The Glanz of Berlin</b> is an unforgettable journey into the legendary pulse of Berlin in the Roaring Twenties. Shining at the heart of the show is <b>Evi Niessner – The Voice of Vintage</b>, who brings the intoxicating nightlife of the Weimar era vividly into the present day.</p><p><b>The Glanz of Berlin</b> is a spectacular fireworks display of music, dance, acrobatics, cabaret, humor, and vintage glamour. The international live orchestra <b>THE GLANZ</b> surrounds the audience with the sounds of jazz, tango, and swing.</p><p>The show combines specially created choreography and acrobatic numbers with authentic Weimar era songs, their modern arrangements, and entirely new compositions, including the show’s signature piece <i>Glanz auf dem Vulkan</i>. The 1920s have never sounded this fresh or electrifying.</p><p>Designed by Niessner – the stunning video projections, drama filled lighting design, and luxurious handmade costumes create a luminous world on stage that invites the audience to dive into the spirit of the era.</p><p>The show has been performed to great success in Germany since 2020, known as Glanz auf dem Vulkan, winning both audiences and critics alike. <b>Now, The Glanz of Berlin arrives in Finland for the very first time!</b></p><p><b>The Glanz of Berlin</b> is a tribute to the bold women and fearless artists of the 1920s who created an era defined by freedom, creativity, and open mindedness. The show reminds us that art, humor, and passion remain our strongest forces in times of turbulence.</p><p><b>An extraordinary celebration of art, freedom, and humanity awaits! The Roaring Twenties are here again!</b></p><p>Languages: English and German, with Finnish subtitles</p><p>Duration: 2 h 20 min, including a 30 minute intermission</p><p>The floor: R18 alcohol serving area. The balcony: no age restrictions, no alcohol serving.</p><p><b><i>Show & Dinner</b></i><br>Delicious <i>Show & Dinner</i> packages are also available – enjoy dinner at Restaurant Minne Garden, located in connection with the theater, before the performance at 5:00 PM.</p><p><i>Show & Dinner tickets (€139) include the best seats, a three course dinner, and cloakroom service.</p><p>Menu options</p><p><b>Kabaree 1920</b><br>Pork hock terrine with jellied Madeira jus and dumpling (L)<br>Slow braised beef sauerbraten, sautéed red cabbage and potato fondant (L,G)<br>Apple strudel with cherry jam and vanilla ice cream (L)</p><p><b>Grün 1920 (vegetarian menu)</b><br>Jerusalem artichoke soup (L,G)<br>House cheese schnitzel, savoy cabbage and potato fondant (L)<br>Apple strudel with cherry jam and vanilla ice cream (L)</p><p>Please note:<br>The menu price does not include beverages.<br>Dinner is served at Restaurant Minne Garden in the Savoy Theatre two hours before the performance (at 5:00 PM).<br>Special dietary requirements are accommodated with advance notice (no later than three days before the performance).</p><p><b>Afterparty in 1920s Style</b><br>After the Friday performance, the celebration continues with joyous Roaring Twenties themed afterparty festivities at Restaurant Minne, Free admission! The Savoy Theatre cloakroom will remain open until the end of the afterparty.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68524/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68523", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/show-dinner/savoy-the-glanz-of-berlin-roaring-20s-show-4146054/", "en": "https://www.lippu.fi/artist/show-dinner/savoy-the-glanz-of-berlin-roaring-20s-show-4146054/" }, "price": { "fi": "17-77 €, S&D 139 €", "en": "17-77 €, S&D 139 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1913057, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-05T10:13:27.751991Z", "last_modified_time": "2026-05-05T10:13:27.752004Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789968.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913057/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-05T10:13:27.571258Z", "last_modified_time": "2026-06-03T15:13:23.676603Z", "date_published": null, "start_time": "2026-11-27T17: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/53B3685E5B1C3F9D0B722FA5726C767C/The_Glanz_of_Berlin_Roaring_20_s_show", "en": "http://www.savoyteatteri.fi/en/events/event/53B3685E5B1C3F9D0B722FA5726C767C/The_Glanz_of_Berlin_Roaring_20_s_show" }, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri", "en": "Savoy Theatre" }, "name": { "fi": "The Glanz of Berlin – Roaring 20’s show", "en": "The Glanz of Berlin – Roaring 20’s show" }, "provider_contact_info": null, "short_description": { "fi": "Astu sisään 1920-luvun Berliinin villiin, säihkyvään yöhön!", "en": "Step into the wild, glittering night of 1920s Berlin!" }, "description": { "fi": "<p>Astu sisään 1920-luvun Berliinin villiin, säihkyvään yöhön!</p><p>Dekadentteja iltoja, hurmaavaa loistoa, maailmanluokan esiintyjiä ja vastustamatonta musiikkia – <b>The Glanz of Berlin</b> on unohtumaton matka legendaariseen Berliinin kaksikymmentäluvun sykkeeseen. Esityksen tähtenä loistaa <b>Evi Niessner</b> – <i>The Voice of Vintage</i>, joka tuo Weimarin ajan yöelämän huuman tähän päivään.</p><p>The Glanz of Berlin on ilotulitusta: musiikkia, tanssia, akrobatiaa, kabareeta, huumoria ja vintage glamouria. Kansainvälinen live orkesteri <b>THE GLANZ</b> ympäröi yleisön jazzin, tangon ja swingin sävelillä.</p><p>Esitys yhdistää show’lle luodut koreografiat ja akrobaattiset numerot aitoihin Weimarin ajan kappaleisiin, niiden moderneihin sovituksiin ja täysin uusiin sävellyksiin kuten esityksen nimikkokappaleeseen <i>Glanz auf dem Vulkan</i>. 1920-luku ei ole koskaan kuulostanut näin raikkaalta ja sähäkältä.</p><p>Evi Niessnerin suunnittelema kokonaisuus - vaikuttavat videoprojisoinnit, draaman täyttämä valosuunnittelu ja ylelliset käsintehdyt puvut luovat lavalle hohtavan maailman, joka kutsuu sukeltamaan ajan henkeen.</p><p>Show’ta on esitetty Saksassa menestyksekkäästi vuodesta 2020 alkaen, sen saksankielisellä nimellä <i>Glanz auf dem Vulkan</i>. Esitys on ollut sekä yleisömenestys että kriitikkojen suosiossa. Nyt The Glanz of Berlin nähdään Suomessa ensimmäistä kertaa!</p><p>The Glanz of Berlin on kunnianosoitus 1920-luvun rohkeille naisille ja pelottomille taiteilijoille, jotka loivat aikakauden täynnä vapautta, luovuutta ja ennakkoluulottomuutta. Show muistuttaa, että taide, huumori ja intohimo ovat edelleen vahvimmat vastavoimamme elämän myllerryksille.</p><p><b>Luvassa on ainutlaatuinen taiteen, vapauden ja ihmisyyden juhla! Iloinen 20-luku on jälleen täällä!</b></p><p>Esityksen kieli: englanti ja saksa, suomenkielinen tekstitys</p><p>Kesto n. 2 h 20 min, sis. 30 min väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b><i>Show & Dinner</b></i><br>Tarjolla myös herkulliset <i>Show & Dinner</i> -paketit – nauti päivällistä teatterin yhteydessä sijaitsevassa Ravintola Minne Gardenissa ennen esitystä klo 17.00!</p><p><i>Show & Dinner liput 139 € sisältävät parhaat paikat, kolmen ruokalajin illallisen ja naulakkopalvelumaksun.</p><p><b><i>Show & Dinner -paketit ovat myynnissä omina lipputyyppeinään Lippu.fi verkkokaupassa. <br>Pe 27.11. on toistaiseksi täyteen varattu.</b></i></p><p>Menu-vaihtoehdot:</p><p><b>Kabaree 1920</b><br>Porsaanpotkaterriiniä, hyydytettyä madeiralientä ja knöödeliä L<br>Yön yli mureaksi haudutettu häränrinta-sauerbraten, punakaalipaistosta ja perunafondant L,G<br>Omenastruudeli, kirsikkahilloa ja vaniljajäätelöä L<br> <br><b>Grün 1920 (kasvismenu)</b><br>Maa-artisokkakeittoa L,G<br>Kotijuustoschnitzel, savojinkaalta ja perunafondant L<br>Omenastruudeli, kirsikkahilloa ja vaniljajäätelöä L</p><p>- Menun hinta ei sisällä juomia.<br>- Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua (klo 17.00).<br>- Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</i></p><p><b>Jatkot 1920-luvun hengessä</b><br>Perjantain esityksen jälkeen luvassa myös riemukkaat 20-luvun jatkobileet salakapakkahenkeen muuntautuvassa Ravintola Minnessä n. klo 21.15-00.00. Vapaa pääsy! Savoy-teatterin narikka palvelee jatkojen loppuun saakka.</p>", "en": "<p>Step into the wild, glittering night of 1920s Berlin!</p><p>Decadent evenings, dazzling glamour, world class performers and irresistible music – <b>The Glanz of Berlin</b> is an unforgettable journey into the legendary pulse of Berlin in the Roaring Twenties. Shining at the heart of the show is <b>Evi Niessner – The Voice of Vintage</b>, who brings the intoxicating nightlife of the Weimar era vividly into the present day.</p><p><b>The Glanz of Berlin</b> is a spectacular fireworks display of music, dance, acrobatics, cabaret, humor, and vintage glamour. The international live orchestra <b>THE GLANZ</b> surrounds the audience with the sounds of jazz, tango, and swing.</p><p>The show combines specially created choreography and acrobatic numbers with authentic Weimar era songs, their modern arrangements, and entirely new compositions, including the show’s signature piece <i>Glanz auf dem Vulkan</i>. The 1920s have never sounded this fresh or electrifying.</p><p>Designed by Niessner – the stunning video projections, drama filled lighting design, and luxurious handmade costumes create a luminous world on stage that invites the audience to dive into the spirit of the era.</p><p>The show has been performed to great success in Germany since 2020, known as Glanz auf dem Vulkan, winning both audiences and critics alike. <b>Now, The Glanz of Berlin arrives in Finland for the very first time!</b></p><p><b>The Glanz of Berlin</b> is a tribute to the bold women and fearless artists of the 1920s who created an era defined by freedom, creativity, and open mindedness. The show reminds us that art, humor, and passion remain our strongest forces in times of turbulence.</p><p><b>An extraordinary celebration of art, freedom, and humanity awaits! The Roaring Twenties are here again!</b></p><p>Languages: English and German, with Finnish subtitles</p><p>Duration: 2 h 20 min, including a 30 minute intermission</p><p>The floor: R18 alcohol serving area. The balcony: no age restrictions, no alcohol serving.</p><p><b><i>Show & Dinner</b></i><br>Delicious <i>Show & Dinner</i> packages are also available – enjoy dinner at Restaurant Minne Garden, located in connection with the theater, before the performance at 5:00 PM.</p><p><i>Show & Dinner tickets (€139) include the best seats, a three course dinner, and cloakroom service.</p><p>Menu options</p><p><b>Kabaree 1920</b><br>Pork hock terrine with jellied Madeira jus and dumpling (L)<br>Slow braised beef sauerbraten, sautéed red cabbage and potato fondant (L,G)<br>Apple strudel with cherry jam and vanilla ice cream (L)</p><p><b>Grün 1920 (vegetarian menu)</b><br>Jerusalem artichoke soup (L,G)<br>House cheese schnitzel, savoy cabbage and potato fondant (L)<br>Apple strudel with cherry jam and vanilla ice cream (L)</p><p>Please note:<br>The menu price does not include beverages.<br>Dinner is served at Restaurant Minne Garden in the Savoy Theatre two hours before the performance (at 5:00 PM).<br>Special dietary requirements are accommodated with advance notice (no later than three days before the performance).</p><p><b>Afterparty in 1920s Style</b><br>After the Friday performance, the celebration continues with joyous Roaring Twenties themed afterparty festivities at Restaurant Minne, Free admission! The Savoy Theatre cloakroom will remain open until the end of the afterparty.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68523/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }