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=55&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 11836, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=56&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=54&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:67233", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491270, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-03T12:12:01.089698Z", "last_modified_time": "2025-11-03T12:12:01.089708Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779181.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491270/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-03T12:12:01.040151Z", "last_modified_time": "2025-11-03T14:13:13.177584Z", "date_published": null, "start_time": "2025-11-08T13: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, "short_description": { "fi": "Bianca Hissen ja Laura Ceminin elokuva seuraa Helsingissä toimivaa palestiinalaista Al Huriya Dabken -tanssiryhmää.", "en": "Their Eyes Will Sear Holes In The Night Sky is a film by Bianca Hisse and Laura Cemin, in collaboration with Al Huriya Dabke, a Palestinian dance group based in Helsinki, whose practice the film follows." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/652438AAC9D42FC87F224A15136B6946/Liikkeella_marraskuussa_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky", "sv": "http://www.caisa.fi/sv/evenemang/event/652438AAC9D42FC87F224A15136B6946/Liikkeella_marraskuussa_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky", "en": "http://www.caisa.fi/en/events/event/652438AAC9D42FC87F224A15136B6946/Moving_in_November_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky" }, "description": { "fi": "<p>Bianca Hissen ja Laura Ceminin elokuva seuraa Helsingissä toimivaa palestiinalaista Al Huriya Dabken -tanssiryhmää.</p><p>Ryhmän jäsenet ovat sekä palestiinalaisia että suomalaisia, jotka ovat halunneet oppia ja edistää Dabke-tanssin perinnettä. Eri ikäisistä ja eri taustoista tulevista ihmisistä koostuva ryhmä kokoontuu Helsingissä viikottain, vastarinnan eleenä jatkuvan olemassaolon häivyttämisen ja hävittämisen aikana.</p><p>Dabke on Levantin alueelta peräisin oleva perinteinen rivitanssi, joka on tuhansien vuosien ajan rytmittänyt ilon ja yhteisöllisen voiman hetkiä. Palestiinassa, Libanonissa, Syyriassa ja Jordaniassa tanssittu tanssi koostuu sille erityisistä rytmeistä ja askeleista, mutta sen ydinolemus on kuitenkin yhteys: jaettu liike, joka koostuu yhtäaikaisesta askelpoljennasta, värähdellen sekä maan että tanssijoiden lävitse.</p><p>Dabkessa tanssijat perinteisesti pitävät kiinni toistensa käsistä tai olkapäistä ja muodostavat puoliympyrään kaartuvan rivin. Aina avonaisena pysyvä piiri on ele ulospäin: jatkuva kutsu liittyä, katsoa ja osallistua. Palestiinalaisille Dabke on enemmän kuin juhla: se on sietokyvyn harjoittamista, unohtamasta kieltäytymistä, sekä elävä todiste kulttuurista, jonka olemassaoloa uhkaavat pakkosiirto ja miehitys.</p><p>Elokuva dokumentoi tanssiryhmän viikoittaisia harjoituksia, ja näyttää, kuinka Dabkea opetellaan ja opetetaan eri sukupolvien, kielten ja elettyjen kokemusten kesken. Tanssin voimallisen yhteyden ja siihen liittyvän yhdessäolon lisäksi elokuva tuo esille kääntämisen ja väärinymmärryksen hetkiä, osoittaen, kuinka askeleet muuntuvat ja merkitykset muovautuvat harjoittelun tuloksena. Teos pohtii, kuinka pakkosiirto haastaa ja muovaa kulttuurin harjoittamisen muotoja ja paljastaa tanssin dynaamisen, jaetun kielen, joka tuo eri paikoista ja taustoista tulevia ihmisiä yhteen.</p><p>Kesto: 8 min<br>Kieli: englanti ja arabia, tekstitys englanniksi ja arabiaksi<br>Vapaa pääsy</p><p>Teos on osa Focus on the Local Landscape - Paikallisjälkiä -ohjelmaa Liikkeellä marraskuussa -festivaalin kehyksessä 6.–16.11.2025. Osana festivaalia Focus on the Local Landscape -taiteilijat käyvät yhteistä keskustelua avoimessa, Anna Kozoninan ja Audience Clubin moderoimassa Soup Talks -keskustelussa 16.11. klo 13 Eskuksen tiloissa.</p>", "en": "<p>Their Eyes Will Sear Holes In The Night Sky is a film by Bianca Hisse and Laura Cemin, in collaboration with Al Huriya Dabke, a Palestinian dance group based in Helsinki, whose practice the film follows.</p><p>The group consists of people from Palestine together with Finnish participants who have chosen to learn and carry forward the tradition of dancing Dabke. Spanning different ages and backgrounds, the group gathers weekly in Helsinki to dance as an act of resistance in the face of ongoing erasure.</p><p>Dabke is a traditional line dance originating from the Levant, where it has long marked moments of joy and collective strength. Across Palestine, Lebanon, Syria, and Jordan, Dabke takes on distinct rhythms and steps, yet the dance is bound by its core spirit of unity: a communal movement, marked by synchronized stomping, where each step reverberates through the ground and through the group.</p><p>In Dabke, the dancers traditionally join hands or shoulders to form a line that curves into a half-circle or open arc. The never-closed circle formation is a gesture outwards, as a continuous invitation for others to join, witness, and participate. For Palestinians, Dabke has become more than celebration – it is a practice of endurance, a refusal to forget, and a living manifestation of a culture threatened by displacement and occupation.</p><p>The film documents the group’s weekly rehearsal, showing how Dabke is learned and transmitted across generations, languages, and different lived experiences of the dance. Alongside the powerful harmony and togetherness of the choreography, the film draws attention to moments of translation and misinterpretation in learning the steps, showing how steps are modified and meanings reshaped through practice. The work reflects on how displacement challenges and transforms cultural practices, revealing dance as a dynamic, shared language that links people across places and backgrounds.</p><p>This performance is a part of the Focus on the Local Landscape within the frame of Moving in November 6.-16.11.2025. As part of the festival, there will be an open Soup Talks discussion with the Focus on the Local Landscape artists hosted by Anna Kozonina and the Audience Club on the 16th of November at 13 in Eskus.</p><p>Language: English and Arabic, English and Arabic subtitles</p>" }, "name": { "fi": "Liikkeellä marraskuussa – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa", "sv": "Liikkeellä marraskuussa – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa", "en": "Moving in November – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67233/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67224", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491269, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-03T12:12:00.855705Z", "last_modified_time": "2025-11-03T12:12:00.855715Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779180.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491269/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-03T12:12:00.772484Z", "last_modified_time": "2025-11-03T14:13:12.984924Z", "date_published": null, "start_time": "2025-11-08T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Bianca Hissen ja Laura Ceminin elokuva seuraa Helsingissä toimivaa palestiinalaista Al Huriya Dabken -tanssiryhmää.", "en": "Their Eyes Will Sear Holes In The Night Sky is a film by Bianca Hisse and Laura Cemin, in collaboration with Al Huriya Dabke, a Palestinian dance group based in Helsinki, whose practice the film follows." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/FF33B12EEDEFAC0BFB49C42509AA4D26/Liikkeella_marraskuussa_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky", "sv": "http://www.caisa.fi/sv/evenemang/event/FF33B12EEDEFAC0BFB49C42509AA4D26/Liikkeella_marraskuussa_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky", "en": "http://www.caisa.fi/en/events/event/FF33B12EEDEFAC0BFB49C42509AA4D26/Moving_in_November_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky" }, "description": { "fi": "<p>Bianca Hissen ja Laura Ceminin elokuva seuraa Helsingissä toimivaa palestiinalaista Al Huriya Dabken -tanssiryhmää.</p><p>Ryhmän jäsenet ovat sekä palestiinalaisia että suomalaisia, jotka ovat halunneet oppia ja edistää Dabke-tanssin perinnettä. Eri ikäisistä ja eri taustoista tulevista ihmisistä koostuva ryhmä kokoontuu Helsingissä viikottain, vastarinnan eleenä jatkuvan olemassaolon häivyttämisen ja hävittämisen aikana.<br>Dabke on Levantin alueelta peräisin oleva perinteinen rivitanssi, joka on tuhansien vuosien ajan rytmittänyt ilon ja yhteisöllisen voiman hetkiä. Palestiinassa, Libanonissa, Syyriassa ja Jordaniassa tanssittu tanssi koostuu sille erityisistä rytmeistä ja askeleista, mutta sen ydinolemus on kuitenkin yhteys: jaettu liike, joka koostuu yhtäaikaisesta askelpoljennasta, värähdellen sekä maan että tanssijoiden lävitse.</p><p>Dabkessa tanssijat perinteisesti pitävät kiinni toistensa käsistä tai olkapäistä ja muodostavat puoliympyrään kaartuvan rivin. Aina avonaisena pysyvä piiri on ele ulospäin: jatkuva kutsu liittyä, katsoa ja osallistua. Palestiinalaisille Dabke on enemmän kuin juhla: se on sietokyvyn harjoittamista, unohtamasta kieltäytymistä, sekä elävä todiste kulttuurista, jonka olemassaoloa uhkaavat pakkosiirto ja miehitys.</p><p>Elokuva dokumentoi tanssiryhmän viikoittaisia harjoituksia, ja näyttää, kuinka Dabkea opetellaan ja opetetaan eri sukupolvien, kielten ja elettyjen kokemusten kesken. Tanssin voimallisen yhteyden ja siihen liittyvän yhdessäolon lisäksi elokuva tuo esille kääntämisen ja väärinymmärryksen hetkiä, osoittaen, kuinka askeleet muuntuvat ja merkitykset muovautuvat harjoittelun tuloksena. Teos pohtii, kuinka pakkosiirto haastaa ja muovaa kulttuurin harjoittamisen muotoja ja paljastaa tanssin dynaamisen, jaetun kielen, joka tuo eri paikoista ja taustoista tulevia ihmisiä yhteen.</p><p>Kesto: 8 min<br>Kieli: englanti ja arabia, tekstitys englanniksi ja arabiaksi<br>Vapaa pääsy</p><p>Teos on osa Focus on the Local Landscape - Paikallisjälkiä -ohjelmaa Liikkeellä marraskuussa -festivaalin kehyksessä 6.–16.11.2025. Osana festivaalia Focus on the Local Landscape -taiteilijat käyvät yhteistä keskustelua avoimessa, Anna Kozoninan ja Audience Clubin moderoimassa Soup Talks -keskustelussa 16.11. klo 13 Eskuksen tiloissa.</p>", "en": "<p>Their Eyes Will Sear Holes In The Night Sky is a film by Bianca Hisse and Laura Cemin, in collaboration with Al Huriya Dabke, a Palestinian dance group based in Helsinki, whose practice the film follows.</p><p>The group consists of people from Palestine together with Finnish participants who have chosen to learn and carry forward the tradition of dancing Dabke. Spanning different ages and backgrounds, the group gathers weekly in Helsinki to dance as an act of resistance in the face of ongoing erasure.</p><p>Dabke is a traditional line dance originating from the Levant, where it has long marked moments of joy and collective strength. Across Palestine, Lebanon, Syria, and Jordan, Dabke takes on distinct rhythms and steps, yet the dance is bound by its core spirit of unity: a communal movement, marked by synchronized stomping, where each step reverberates through the ground and through the group.</p><p>In Dabke, the dancers traditionally join hands or shoulders to form a line that curves into a half-circle or open arc. The never-closed circle formation is a gesture outwards, as a continuous invitation for others to join, witness, and participate. For Palestinians, Dabke has become more than celebration – it is a practice of endurance, a refusal to forget, and a living manifestation of a culture threatened by displacement and occupation.</p><p>The film documents the group’s weekly rehearsal, showing how Dabke is learned and transmitted across generations, languages, and different lived experiences of the dance. Alongside the powerful harmony and togetherness of the choreography, the film draws attention to moments of translation and misinterpretation in learning the steps, showing how steps are modified and meanings reshaped through practice. The work reflects on how displacement challenges and transforms cultural practices, revealing dance as a dynamic, shared language that links people across places and backgrounds.</p><p>This performance is a part of the Focus on the Local Landscape within the frame of Moving in November 6.-16.11.2025. As part of the festival, there will be an open Soup Talks discussion with the Focus on the Local Landscape artists hosted by Anna Kozonina and the Audience Club on the 16th of November at 13 in Eskus.</p><p>Language: English and Arabic, English and Arabic subtitles</p>" }, "name": { "fi": "Liikkeellä marraskuussa – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa", "sv": "Liikkeellä marraskuussa – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa", "en": "Moving in November – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67224/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67234", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491268, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-03T12:12:00.010915Z", "last_modified_time": "2025-11-03T12:12:00.010927Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780046.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491268/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-03T12:11:59.909738Z", "last_modified_time": "2025-11-03T12:12:00.120530Z", "date_published": null, "start_time": "2025-11-06", "end_time": "2025-11-29", "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, "short_description": { "fi": "Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025", "sv": "Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025", "en": "Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/01EC2DEF51004ECD5537475B67122A31/Annamari_Eskola_Kierto_ikebanataidetta_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/01EC2DEF51004ECD5537475B67122A31/Annamari_Eskola_Kierto_ikebanataidetta_", "en": "http://www.malmitalo.fi/en/events/event/01EC2DEF51004ECD5537475B67122A31/Annamari_Eskola_Kierto_ikebanataidetta_" }, "description": { "fi": "<p>Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025</p><p>Kasvien elämänkierto, kiertyvät muodot ja materiaalien kierrättäminen ovat Annamari Eskolan installaatioiden teemoja. Vuodenkierrossa marraskuu on pimeintä aikaa, mutta kuolleissa kasveissa elämä on läsnä monella tasolla. <br>Annamari Eskola on opiskellut ikebanaa, japanilaista kukkien asettelun taidetta Sogetsu-koulukunnan oppien mukaan vuodesta 2012 asti. Moderni Sogetsu-tyyli on ottanut vaikutteita länsimaisesta taiteesta ja yhdistelee kasveja muihin elementteihin. Eskola käyttää taiteessaan kotiseutunsa Koillis-Helsingin kasvimateriaaleja. Niissä on hyödynnetty puutarhajätteitä sekä vainottuja vieraslajeja kuten jättitatarta ja japanintatarta. Joutomaiden romulöydökset ja elävät kukat yhdistyvät veistoksiksi, jotka näyttelyn päätyttyä palaavat materiaaleina kiertoon. <br> <br>Näyttelyn avajaiset järjestetään ke 5.11. klo 17 alkaen.<br> <br>Vapaa pääsy!</p>", "sv": "<p>Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025</p>", "en": "<p>Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025</p>" }, "name": { "fi": "Annamari Eskola: Kierto – ikebanataidetta", "sv": "Annamari Eskola: Kierto – ikebanataidetta", "en": "Annamari Eskola: Kierto – ikebanataidetta" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67234/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:e76857f9-9d1b-4eb7-b047-02e51af29cc2", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20547/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?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:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?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:p21812/?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:p2240/?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:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?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:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?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:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?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:p8025/?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:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?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:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "en": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "ru": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "zh_hans": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "ar": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634" }, "description": { "fi": "Hintatietojen lisätiedot - Suomeksi", "en": "Hintatietojen lisätiedot", "ru": "Hintatietojen lisätiedot", "zh_hans": "Hintatietojen lisätiedot", "ar": "Hintatietojen lisätiedot" }, "price": { "fi": "5", "en": "4", "ru": "4", "zh_hans": "4", "ar": "4" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1491262, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-31T11:39:30.803576Z", "last_modified_time": "2025-10-31T11:39:30.803600Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/b64288a3-3a8e-f011-b4cc-000d3ab33a80", "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/1491262/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "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/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" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?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:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?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:p21812/?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:p2240/?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:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?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:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?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:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?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:p8025/?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:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?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:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "created_time": "2025-11-03T11:20:48.709607Z", "last_modified_time": "2025-11-03T11:42:21.540287Z", "date_published": "2025-10-31T08:03:24Z", "start_time": "2025-12-24T06:00:00Z", "end_time": "2025-12-24T17: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": 50, "minimum_attendee_capacity": 1, "enrolment_start_time": "2025-10-31T08:00:00+02:00", "enrolment_end_time": "2025-12-22T08:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "31.10.2025 - TLDG\nKielivalinnan muuttaminen ei valu Linked Eventsiin", "en": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "ru": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "zh_hans": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "ar": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2" }, "info_url": { "en": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "ru": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "zh_hans": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "ar": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634" }, "description": { "fi": "<div><p>31.10.2025 - TLDG<br>Kielivalinnan muuttaminen ei valu Linked Eventsiin<br>- SWE Otsikko ja kuvaukset lisätty.<br>- SWE Otsikko ja kuvaukset poistettu.</p></div>", "en": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>", "ru": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>", "zh_hans": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>", "ar": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>" }, "name": { "fi": "Testitesti sv", "en": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "ru": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "zh_hans": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "ar": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapahtumapaikan lisätiedot - Suomi", "en": "Tapahtumapaikan lisätiedot - Englanti", "ru": "Tapahtumapaikan lisätiedot - Venäjä", "zh_hans": "Tapahtumapaikan lisätiedot - Kiina", "ar": "Tapahtumapaikan lisätiedot arabiaksi" }, "provider": { "fi": "Digia", "en": "Digia", "ru": "Digia", "zh_hans": "Digia", "ar": "Digia" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:e76857f9-9d1b-4eb7-b047-02e51af29cc2/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66262", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3896720", "sv": "https://www.lippu.fi/eventseries/name-3896720", "en": "https://www.lippu.fi/eventseries/name-3896720" }, "description": null, "price": { "fi": "15 € / 20€", "sv": "15 € / 20€", "en": "15 € / 20€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1155819, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T12:14:01.655567Z", "last_modified_time": "2025-07-01T12:14:01.655582Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773104.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155819/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T12:14:01.545206Z", "last_modified_time": "2025-11-03T11:12:25.042198Z", "date_published": null, "start_time": "2025-11-22T13: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, "short_description": { "fi": "Kuolematon Punahilkka - satu aikuisille on syväsukellus sukupolvien ketjussa kulkevaan Punahilkan tarinaan ja sisällämme vaanivaan suteen.", "sv": "Kuolematon Punahilkka är en föreställning som bjuder vuxna på den klassiska sagan. Även de gamla trivs då clownerna badar åskådarna i skratt och gråt", "en": "The Immortal Little Red Riding Hood brings the classic tale back to adults. Even grown-ups will be thoroughly entertained as a pair of clowns lead the audience through waves of laughter and tears." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8F23B416E41C081E098C2C201E7DFB77/Red_Nose_Company_Kuolematon_Punahilkka_satu_aikuisille", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8F23B416E41C081E098C2C201E7DFB77/Red_Nose_Company_Kuolematon_Punahilkka_en_saga_for_vuxna", "en": "http://www.kanneltalo.fi/en/events/event/8F23B416E41C081E098C2C201E7DFB77/Red_Nose_Company_The_Immortal_Little_Red_Riding_Hood_A_Fairy_Tale_for_Grown-Ups" }, "description": { "fi": "<p>Kuolematon Punahilkka - satu aikuisille on syväsukellus sukupolvien ketjussa kulkevaan Punahilkan tarinaan ja sisällämme vaanivaan suteen.</p><p>Punahilkan tarinan syntymän aikoihin satuja kerrottiin aikuisten viihdykkeeksi. Nyt klovnikaksikko, Babylon & Ré (Minna Puolanto ja Hanna Seppä), tarjoilee oman tulkintansa tästä klassikosta jälleen aikuisille. Tässä versiossa ei tarvitse sensuroida tai annostella hurjimpiakaan sävyjä ja tulkintoja, joita satuun on eri aikoina liitetty. Teoksen ohjaajana toimii Niina Sillanpää. <br> <br>Punahilkka on siirtynyt viattomasta lapsuudesta aikuisuuteen. Mitä hänelle kuuluu? Mitä yksin metsään lähteminen hänelle tässä kohtaa elämää tarkoittaa? Klovnit päätyvät pohtimaan sadun symboliikkaa ja filosofoimaan elämän mysteeristä, menopaussista ja sankarillisuuden vaateesta. Susikin asuu ja vaanii heidän sisällään. Kuinka kestää pahuus itsessä? Mummon piirakat ovat lapsuuden muistoissa makoisia, mutta sukupolvien läpi kulkeva ankara kasvatus on joskus tihkunut myös omien lasten osaksi. Klovneissa nousevat pintaan läpi aikojen virtaavat tarinat, tottumukset, tajut ja tunteet – niin vihat, onnet kuin surutkin. <br> <br>Teoksessa piirtyvät esiin sadun lukemattomat eri versiot ja arkkityyppiset teemat, kuten hyvän ja pahan taistelu. Klovnit kertovat, säikäyttävät, opettavat ja viihdyttävät pelkäämättä tarttua sadun tummempiinkaan juonteisiin. Susi ja Punahilkka kohtaavat toisensa monella tasolla. Esitys pohtii toisaalta sitä, miksi suden päällä on kulttuurissamme aina raskas pahuuden painolasti? Voisiko ollakin niin, että Punahilkka edustaa sadussa pahuutta? Ihminen vie tilaa muilta lajeilta, eikä taida lopettaa ennen kuin on hävittänyt myös itsensä. <br> <br>Kaiken lisäksi klovnit tuntevat luissaan ja ytimissään, kuinka sadunkertojien ahdinko kasvaa tässä ajassamme. Vaikka he joutuvatkin hautaamaan oman tehtävänsä, nuoruutensa, kauneutensa, säästötilinsä, kaikki unelmansa ja muutaman pahan tapansa, Punahilkka ei kuole koskaan. <br> <br>Työryhmä on tehnyt aiemmin Punahilkasta esitykset lapsille (Punahilkan paluu, Red Nose Company 2023) sekä nuorille (Punahilkka K13, Red Nose Company 2024). Kuolematon Punahilkka on työryhmän kolmas tulkinta sadusta. <br> <br>HUUDEILLA<br> Kanneltalon esitykset ovat osa Helsingin kaupungin rahoittamaa Huudeilla-aluehanketta. Kannelmäen ja Malminkartanon alueiden asukkaat ovat päässeet seuraamaan teoksen valmistumista avoimissa harjoituksissa prosessin eri vaiheissa. Mukana olleille tarjotaan kutsuliput Kanneltalon esityksiin. <br> <br><b>TYÖRYHMÄ</b> <br> Näyttämöllä: Minna Puolanto ja Hanna Seppä <br> Ohjaus: Niina Sillanpää <br> Käsikirjoitus: Työryhmä <br> Valo ja äänisuunnittelu: Jere Kolehmainen <br> Pukusuunnittelu: Noora Salmi ja työryhmä <br> Valokuvat: Ilari Kallinen <br> Tuotanto: Red Nose Company <br> Yhteistuotanto: Red Nose Company, Kanneltalo, Huudeilla-aluehanke <br> <br>Kesto: 1,5 h (ei väliaikaa) <br>Ikäsuositus: aikuisille, K14</p>", "sv": "<p>Kuolematon Punahilkka är en föreställning som bjuder vuxna på den klassiska sagan. Även de gamla trivs då clownerna badar åskådarna i skratt och gråt</p><p>För hundratals år sedan, när berättelsen om Rödluvan uppstod, berättades sagor som underhållning för vuxna. Clownduon Babylon & Ré (Minna Puolanto och Hanna Seppä) som nu underhåller oss bjuder återigen sin egen tolkning av denna klassiker till vuxna. Niina Sillanpää har regisserat verket.</p><p>För hundratals år sedan, när berättelsen om Rödluvan uppstod, berättades sagor som underhållning för vuxna. Clownduon Babylon & Ré (Minna Puolanto och Hanna Seppä) som nu underhåller oss bjuder återigen sin egen tolkning av denna klassiker till vuxna. Niina Sillanpää har regisserat verket.</p><p>Föreställningen vänder helt på sagan och öppnar den från alla håll. Clownerna tar sig an Rödluvans betydelser, barlaster och folkloristiska skikt. De leder oss, skrämmer, undervisar och naturligtvis underhåller de oss utan rädsla för att ta tag i de mörkare sakerna. Bra och ont bor i oss alla. Vågar vi titta på våra mörka punkter? Ser vi även ljuset bredvid? Clownerna badar åskådarna i skratt och gråt. De känner i märg och ben hur sagoberättarnas trångmål ökar i vår tid som är kärv för kulturen. Även om clownerna är tvungna att begrava vissa drömmar och kanske några dåliga vanor, kommer Rödluvan aldrig att dö.</p><p>Föreställningen behandlar sagornas arketypiska teman, oräkneliga olika versioner av berättelsen och traditioner för framförandet. Arbetsgruppen har tidigare lagt fram föreställningen Rödluvan för barn (Punahilkan paluu, Red Nose Company 2023) och för unga (Punahilkka K13, Red Nose Company 2024). I föreställningen för vuxna kan skaparna utnyttja allt material de samlat in om Rödluvan. Nu behöver man inte censurera eller portionera ut ens de mest raka nyanser och tolkningar som under olika tider har fogats till sagan.</p><p><b>HUUDEILLA</b><br>Föreställningarna är en del av det av Helsingfors stad finansierade regionprojektet Huudeilla. Invånarna i Gamlas och Malmgård får delta i delaktiggörande öppna övningar i olika faser av produktionen av verket. I manuset beaktas observationer och iakttagelser som samlats in av åskådarna. De som deltagit bjuds på biljetter till Gamlasgårdens föreställningar.<br> <br>Längd 1,5 h (ingen paus)<br>Åldersrekommendation: 14+</p><p><b>ARBETSGRUPP</b><br>På scenen Minna Puolanto och Hanna Seppä <br>Regi Niina Sillanpää<br>Manus: arbetsgrupp<br>Ljus- och ljudplanering Jere Kolehmainen<br>Kostymering Noora Salmi<br>Fotografier och grafisk uppsyn Ilari Kallinen<br>Produktion Red Nose Company <br>Samproduktion Red Nose Company, Gamlasgården, områdesprojektet Huudeilla</p>", "en": "<p>The Immortal Little Red Riding Hood brings the classic tale back to adults. Even grown-ups will be thoroughly entertained as a pair of clowns lead the audience through waves of laughter and tears.</p><p>Hundreds of years ago, around the time the Little Red Riding Hood story first emerged, fairy tales were primarily intended as entertainment for adults. Now, the delightful clown duo Babylon & Ré (Minna Puolanto and Hanna Seppä) offer their own take on this classic to an adult audience. The performance is directed by Niina Sillanpää.</p><p>Hundreds of years ago, around the time the Little Red Riding Hood story first emerged, fairy tales were primarily intended as entertainment for adults. Now, the delightful clown duo Babylon & Ré (Minna Puolanto and Hanna Seppä) offer their own take on this classic to an adult audience. The performance is directed by Niina Sillanpää.</p><p>The show turns the fairy tale inside out, examining it from every angle. The clowns dissect the meanings, historic burdens and folkloric layers of Little Red Riding Hood. They guide, startle, enlighten and, of course, entertain, fearlessly diving into even the darkest threads of the tale. Good and evil live in all of us. Do we dare look into our own shadowy corners? And if we do, will we also see light beside them? The clowns will bathe the audience in laughter and tears. They will feel the growing despair of storytellers in a time when culture is being hollowed out. Even though the clowns may have to bury some of their dreams and perhaps a few bad habits, Little Red Riding Hood never dies.</p><p>This performance explores the archetypal themes of the tale, its countless variations and the traditions of performing stories. The team has previously created Little Red Riding Hood performances for children (The Return of Little Red Riding Hood, Red Nose Company 2023) and teens (Little Red Riding Hood, Red Nose Company 2024). Now, in this version for adults, they bring together all the material they have ever gathered about the story. No need to censor or dilute even the boldest shades or interpretations that have been associated with the tale through the ages.</p><p><b>IN THE HOOD</b><br>The performances are part of the Huudeilla (\"In the Hood\") neighbourhood project, funded by the City of Helsinki. Residents of the Kannelmäki and Malminkartano areas are invited to take part in open, participatory rehearsals during various stages of the production process. Feedback and observations collected from the participants will be incorporated into the script. Those involved in the workshops will receive complimentary tickets to performances at Kanneltalo.<br> <br>Duration: 1.5 hours (no intermission)<br>Recommended age: 14+</p><p><b>CREATIVE TEAM</b><br>On stage: Minna Puolanto and Hanna Seppä <br>Directed by: Niina Sillanpää<br>Script: Creative team<br>Light and sound design: Jere Kolehmainen<br>Costume design: Noora Salmi<br>Photography and visual design: Ilari Kallinen<br>Production: Red Nose Company <br>Co-production: Red Nose Company, Kanneltalo, Huudeilla Neighbourhood Project</p>" }, "name": { "fi": "Red Nose Company: Kuolematon Punahilkka – satu aikuisille", "sv": "Red Nose Company: Kuolematon Punahilkka – en saga för vuxna", "en": "Red Nose Company: The Immortal Little Red Riding Hood – A Fairy Tale for Grown-Ups" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66262/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66261", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3896720", "sv": "https://www.lippu.fi/eventseries/name-3896720", "en": "https://www.lippu.fi/eventseries/name-3896720" }, "description": null, "price": { "fi": "15 € / 20€", "sv": "15 € / 20€", "en": "15 € / 20€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1155818, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T12:14:01.232482Z", "last_modified_time": "2025-07-01T12:14:01.232497Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773102.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155818/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T12:14:01.103165Z", "last_modified_time": "2025-11-03T11:12:24.709301Z", "date_published": null, "start_time": "2025-11-21T16: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, "short_description": { "fi": "Kuolematon Punahilkka - satu aikuisille on syväsukellus sukupolvien ketjussa kulkevaan Punahilkan tarinaan ja sisällämme vaanivaan suteen.", "sv": "Kuolematon Punahilkka är en föreställning som bjuder vuxna på den klassiska sagan. Även de gamla trivs då clownerna badar åskådarna i skratt och gråt", "en": "The Immortal Little Red Riding Hood brings the classic tale back to adults. Even grown-ups will be thoroughly entertained as a pair of clowns lead the audience through waves of laughter and tears." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FFB4C3A600A33C41C233CBD1F8F9A662/Red_Nose_Company_Kuolematon_Punahilkka_satu_aikuisille", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FFB4C3A600A33C41C233CBD1F8F9A662/Red_Nose_Company_Kuolematon_Punahilkka_en_saga_for_vuxna", "en": "http://www.kanneltalo.fi/en/events/event/FFB4C3A600A33C41C233CBD1F8F9A662/Red_Nose_Company_The_Immortal_Little_Red_Riding_Hood_A_Fairy_Tale_for_Grown-Ups" }, "description": { "fi": "<p>Kuolematon Punahilkka - satu aikuisille on syväsukellus sukupolvien ketjussa kulkevaan Punahilkan tarinaan ja sisällämme vaanivaan suteen.</p><p>Punahilkan tarinan syntymän aikoihin satuja kerrottiin aikuisten viihdykkeeksi. Nyt klovnikaksikko, Babylon & Ré (Minna Puolanto ja Hanna Seppä), tarjoilee oman tulkintansa tästä klassikosta jälleen aikuisille. Tässä versiossa ei tarvitse sensuroida tai annostella hurjimpiakaan sävyjä ja tulkintoja, joita satuun on eri aikoina liitetty. Teoksen ohjaajana toimii Niina Sillanpää. <br> <br>Punahilkka on siirtynyt viattomasta lapsuudesta aikuisuuteen. Mitä hänelle kuuluu? Mitä yksin metsään lähteminen hänelle tässä kohtaa elämää tarkoittaa? Klovnit päätyvät pohtimaan sadun symboliikkaa ja filosofoimaan elämän mysteeristä, menopaussista ja sankarillisuuden vaateesta. Susikin asuu ja vaanii heidän sisällään. Kuinka kestää pahuus itsessä? Mummon piirakat ovat lapsuuden muistoissa makoisia, mutta sukupolvien läpi kulkeva ankara kasvatus on joskus tihkunut myös omien lasten osaksi. Klovneissa nousevat pintaan läpi aikojen virtaavat tarinat, tottumukset, tajut ja tunteet – niin vihat, onnet kuin surutkin. <br> <br>Teoksessa piirtyvät esiin sadun lukemattomat eri versiot ja arkkityyppiset teemat, kuten hyvän ja pahan taistelu. Klovnit kertovat, säikäyttävät, opettavat ja viihdyttävät pelkäämättä tarttua sadun tummempiinkaan juonteisiin. Susi ja Punahilkka kohtaavat toisensa monella tasolla. Esitys pohtii toisaalta sitä, miksi suden päällä on kulttuurissamme aina raskas pahuuden painolasti? Voisiko ollakin niin, että Punahilkka edustaa sadussa pahuutta? Ihminen vie tilaa muilta lajeilta, eikä taida lopettaa ennen kuin on hävittänyt myös itsensä. <br> <br>Kaiken lisäksi klovnit tuntevat luissaan ja ytimissään, kuinka sadunkertojien ahdinko kasvaa tässä ajassamme. Vaikka he joutuvatkin hautaamaan oman tehtävänsä, nuoruutensa, kauneutensa, säästötilinsä, kaikki unelmansa ja muutaman pahan tapansa, Punahilkka ei kuole koskaan. <br> <br>Työryhmä on tehnyt aiemmin Punahilkasta esitykset lapsille (Punahilkan paluu, Red Nose Company 2023) sekä nuorille (Punahilkka K13, Red Nose Company 2024). Kuolematon Punahilkka on työryhmän kolmas tulkinta sadusta. <br> <br>HUUDEILLA<br> Kanneltalon esitykset ovat osa Helsingin kaupungin rahoittamaa Huudeilla-aluehanketta. Kannelmäen ja Malminkartanon alueiden asukkaat ovat päässeet seuraamaan teoksen valmistumista avoimissa harjoituksissa prosessin eri vaiheissa. Mukana olleille tarjotaan kutsuliput Kanneltalon esityksiin. <br> <br><b>TYÖRYHMÄ</b> <br> Näyttämöllä: Minna Puolanto ja Hanna Seppä <br> Ohjaus: Niina Sillanpää <br> Käsikirjoitus: Työryhmä <br> Valo ja äänisuunnittelu: Jere Kolehmainen <br> Pukusuunnittelu: Noora Salmi ja työryhmä <br> Valokuvat: Ilari Kallinen <br> Tuotanto: Red Nose Company <br> Yhteistuotanto: Red Nose Company, Kanneltalo, Huudeilla-aluehanke <br> <br>Kesto: 1,5 h (ei väliaikaa) <br>Ikäsuositus: aikuisille, K14</p>", "sv": "<p>Kuolematon Punahilkka är en föreställning som bjuder vuxna på den klassiska sagan. Även de gamla trivs då clownerna badar åskådarna i skratt och gråt</p><p>För hundratals år sedan, när berättelsen om Rödluvan uppstod, berättades sagor som underhållning för vuxna. Clownduon Babylon & Ré (Minna Puolanto och Hanna Seppä) som nu underhåller oss bjuder återigen sin egen tolkning av denna klassiker till vuxna. Niina Sillanpää har regisserat verket.</p><p>För hundratals år sedan, när berättelsen om Rödluvan uppstod, berättades sagor som underhållning för vuxna. Clownduon Babylon & Ré (Minna Puolanto och Hanna Seppä) som nu underhåller oss bjuder återigen sin egen tolkning av denna klassiker till vuxna. Niina Sillanpää har regisserat verket.</p><p>Föreställningen vänder helt på sagan och öppnar den från alla håll. Clownerna tar sig an Rödluvans betydelser, barlaster och folkloristiska skikt. De leder oss, skrämmer, undervisar och naturligtvis underhåller de oss utan rädsla för att ta tag i de mörkare sakerna. Bra och ont bor i oss alla. Vågar vi titta på våra mörka punkter? Ser vi även ljuset bredvid? Clownerna badar åskådarna i skratt och gråt. De känner i märg och ben hur sagoberättarnas trångmål ökar i vår tid som är kärv för kulturen. Även om clownerna är tvungna att begrava vissa drömmar och kanske några dåliga vanor, kommer Rödluvan aldrig att dö.</p><p>Föreställningen behandlar sagornas arketypiska teman, oräkneliga olika versioner av berättelsen och traditioner för framförandet. Arbetsgruppen har tidigare lagt fram föreställningen Rödluvan för barn (Punahilkan paluu, Red Nose Company 2023) och för unga (Punahilkka K13, Red Nose Company 2024). I föreställningen för vuxna kan skaparna utnyttja allt material de samlat in om Rödluvan. Nu behöver man inte censurera eller portionera ut ens de mest raka nyanser och tolkningar som under olika tider har fogats till sagan.</p><p><b>HUUDEILLA</b><br>Föreställningarna är en del av det av Helsingfors stad finansierade regionprojektet Huudeilla. Invånarna i Gamlas och Malmgård får delta i delaktiggörande öppna övningar i olika faser av produktionen av verket. I manuset beaktas observationer och iakttagelser som samlats in av åskådarna. De som deltagit bjuds på biljetter till Gamlasgårdens föreställningar.<br> <br>Längd 1,5 h (ingen paus)<br>Åldersrekommendation: 14+</p><p><b>ARBETSGRUPP</b><br>På scenen Minna Puolanto och Hanna Seppä <br>Regi Niina Sillanpää<br>Manus: arbetsgrupp<br>Ljus- och ljudplanering Jere Kolehmainen<br>Kostymering Noora Salmi<br>Fotografier och grafisk uppsyn Ilari Kallinen<br>Produktion Red Nose Company <br>Samproduktion Red Nose Company, Gamlasgården, områdesprojektet Huudeilla</p>", "en": "<p>The Immortal Little Red Riding Hood brings the classic tale back to adults. Even grown-ups will be thoroughly entertained as a pair of clowns lead the audience through waves of laughter and tears.</p><p>Hundreds of years ago, around the time the Little Red Riding Hood story first emerged, fairy tales were primarily intended as entertainment for adults. Now, the delightful clown duo Babylon & Ré (Minna Puolanto and Hanna Seppä) offer their own take on this classic to an adult audience. The performance is directed by Niina Sillanpää.</p><p>Hundreds of years ago, around the time the Little Red Riding Hood story first emerged, fairy tales were primarily intended as entertainment for adults. Now, the delightful clown duo Babylon & Ré (Minna Puolanto and Hanna Seppä) offer their own take on this classic to an adult audience. The performance is directed by Niina Sillanpää.</p><p>The show turns the fairy tale inside out, examining it from every angle. The clowns dissect the meanings, historic burdens and folkloric layers of Little Red Riding Hood. They guide, startle, enlighten and, of course, entertain, fearlessly diving into even the darkest threads of the tale. Good and evil live in all of us. Do we dare look into our own shadowy corners? And if we do, will we also see light beside them? The clowns will bathe the audience in laughter and tears. They will feel the growing despair of storytellers in a time when culture is being hollowed out. Even though the clowns may have to bury some of their dreams and perhaps a few bad habits, Little Red Riding Hood never dies.</p><p>This performance explores the archetypal themes of the tale, its countless variations and the traditions of performing stories. The team has previously created Little Red Riding Hood performances for children (The Return of Little Red Riding Hood, Red Nose Company 2023) and teens (Little Red Riding Hood, Red Nose Company 2024). Now, in this version for adults, they bring together all the material they have ever gathered about the story. No need to censor or dilute even the boldest shades or interpretations that have been associated with the tale through the ages.</p><p><b>IN THE HOOD</b><br>The performances are part of the Huudeilla (\"In the Hood\") neighbourhood project, funded by the City of Helsinki. Residents of the Kannelmäki and Malminkartano areas are invited to take part in open, participatory rehearsals during various stages of the production process. Feedback and observations collected from the participants will be incorporated into the script. Those involved in the workshops will receive complimentary tickets to performances at Kanneltalo.<br> <br>Duration: 1.5 hours (no intermission)<br>Recommended age: 14+</p><p><b>CREATIVE TEAM</b><br>On stage: Minna Puolanto and Hanna Seppä <br>Directed by: Niina Sillanpää<br>Script: Creative team<br>Light and sound design: Jere Kolehmainen<br>Costume design: Noora Salmi<br>Photography and visual design: Ilari Kallinen<br>Production: Red Nose Company <br>Co-production: Red Nose Company, Kanneltalo, Huudeilla Neighbourhood Project</p>" }, "name": { "fi": "Red Nose Company: Kuolematon Punahilkka – satu aikuisille", "sv": "Red Nose Company: Kuolematon Punahilkka – en saga för vuxna", "en": "Red Nose Company: The Immortal Little Red Riding Hood – A Fairy Tale for Grown-Ups" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66261/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:9d7ed465-3b3d-f011-b4cc-main9101", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:65018/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?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:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?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:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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:p2240/?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:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?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:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?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:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?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:p8025/?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:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TLDG_174_Toistuvat_tapahtumat_v112141050340" }, "description": { "fi": "lapset" }, "price": { "fi": "10" } }, { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TLDG_174_Toistuvat_tapahtumat_v112141050340" }, "description": { "fi": "aikuiset" }, "price": { "fi": "5" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?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:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?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:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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:p2240/?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:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?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:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?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:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?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:p8025/?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:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "created_time": "2025-11-03T10:30:00.642801Z", "last_modified_time": "2025-11-03T10:30:00.642822Z", "date_published": "2025-05-30T09:49:37Z", "start_time": "2025-11-30T09:58:00Z", "end_time": "2025-11-30T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 2, "audience_max_age": 24, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 150, "minimum_attendee_capacity": 100, "enrolment_start_time": "2025-11-30T07:00:00+02:00", "enrolment_end_time": "2025-11-30T13:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "pricetestaus hw v1" }, "info_url": null, "description": { "fi": "<div><p>TLDG_174_Toistuvat tapahtumat v1</p></div>" }, "name": { "fi": "Svedutestaus" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Digia" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:9d7ed465-3b3d-f011-b4cc-main9101/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67173", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/" }, "description": null, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491155, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-23T09:13:56.623474Z", "last_modified_time": "2025-10-23T09:13:56.623487Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777303.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491155/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-23T09:13:56.522014Z", "last_modified_time": "2025-10-31T15:13:37.033498Z", "date_published": null, "start_time": "2025-11-21T16: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, "short_description": { "fi": "Sorry, Baby on Eva Victorin käsikirjoittama, ohjaama ja tähdittämä vaikuttava esikoiselokuva, joka sai maailmanensi-iltansa arvostetulla Sundancen elokuvafestivaalilla." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/470FF4694E5BB032FAE2D9D4FEAB2770/Kino_Helios_Sorry_baby_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/470FF4694E5BB032FAE2D9D4FEAB2770/Kino_Helios_Sorry_baby_12_", "en": "http://www.malmitalo.fi/en/events/event/470FF4694E5BB032FAE2D9D4FEAB2770/Kino_Helios_Sorry_baby_12_" }, "description": { "fi": "<p>Sorry, Baby on Eva Victorin käsikirjoittama, ohjaama ja tähdittämä vaikuttava esikoiselokuva, joka sai maailmanensi-iltansa arvostetulla Sundancen elokuvafestivaalilla.</p><p>Muissa rooleissa nähdään Naomi Ackie (I Wanna Dance: The Whitney Houston Movie, Mickey 17), Lucas Hedges (Manchester by the Sea, Boy Erased) ja John Carroll Lynch (Fargo, Jackie).</p><p>Agnes on kokenut menneisyydessään trauman. Silti elämä jatkuu – ainakin kaikilla muilla hänen ympärillään. Kun Agnesin luo saapuu kylään hänen hyvä ystävänsä, joka on suuren elämänmuutoksen keskellä, Agnes alkaa vähitellen ymmärtää, kuinka paikoilleen hän on jäänyt ja ryhtyy etsimään keinoja päästä eteenpäin.</p><p>Ikäraja: 12<br>Kesto: 103 min<br>Ensi-ilta: 31.10.2025<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Kino Helios: Sorry, baby (12)", "sv": "Kino Helios: Sorry, baby (12)", "en": "Kino Helios: Sorry, baby (12)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67173/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67172", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/" }, "description": null, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491154, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-23T09:13:53.938182Z", "last_modified_time": "2025-10-23T09:13:53.938195Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777299.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491154/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-23T09:13:53.833962Z", "last_modified_time": "2025-10-31T15:13:34.106688Z", "date_published": null, "start_time": "2025-11-14T13: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, "short_description": { "fi": "Sorry, Baby on Eva Victorin käsikirjoittama, ohjaama ja tähdittämä vaikuttava esikoiselokuva, joka sai maailmanensi-iltansa arvostetulla Sundancen elokuvafestivaalilla." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3C3F39BE3EC086BD6169108A643F7C54/Kino_Helios_Sorry_baby_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3C3F39BE3EC086BD6169108A643F7C54/Kino_Helios_Sorry_baby_12_", "en": "http://www.malmitalo.fi/en/events/event/3C3F39BE3EC086BD6169108A643F7C54/Kino_Helios_Sorry_baby_12_" }, "description": { "fi": "<p>Sorry, Baby on Eva Victorin käsikirjoittama, ohjaama ja tähdittämä vaikuttava esikoiselokuva, joka sai maailmanensi-iltansa arvostetulla Sundancen elokuvafestivaalilla.</p><p>Muissa rooleissa nähdään Naomi Ackie (I Wanna Dance: The Whitney Houston Movie, Mickey 17), Lucas Hedges (Manchester by the Sea, Boy Erased) ja John Carroll Lynch (Fargo, Jackie).</p><p>Agnes on kokenut menneisyydessään trauman. Silti elämä jatkuu – ainakin kaikilla muilla hänen ympärillään. Kun Agnesin luo saapuu kylään hänen hyvä ystävänsä, joka on suuren elämänmuutoksen keskellä, Agnes alkaa vähitellen ymmärtää, kuinka paikoilleen hän on jäänyt ja ryhtyy etsimään keinoja päästä eteenpäin.</p><p>Ikäraja: 12<br>Kesto: 103 min<br>Ensi-ilta: 31.10.2025<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Kino Helios: Sorry, baby (12)", "sv": "Kino Helios: Sorry, baby (12)", "en": "Kino Helios: Sorry, baby (12)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67172/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66562", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491264, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-31T14:13:36.777505Z", "last_modified_time": "2025-10-31T14:13:36.777520Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775017.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491264/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-10-31T14:13:36.613370Z", "last_modified_time": "2025-10-31T14:13:36.991884Z", "date_published": null, "start_time": "2025-11-19T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa elokuviin vauva- ja taaperokansa! Nyt saa kruisailla vaunuilla sisälle leffateatteriin!", "sv": "Välkomna på film bebisar och knattar! Nu får man köra in med vagnen till biografen!", "en": "Welcome to the cinema, babies and toddlers! Now you can cruise straight into the cinema with your baby pram!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/948091316E61C109C7897176C1C398E2/Naperokino_Drive-in-tapahtuma_", "sv": "http://www.stoa.fi/sv/evenemang/event/948091316E61C109C7897176C1C398E2/Naperokino_Drive-in-tapahtuma_", "en": "http://www.stoa.fi/en/events/event/948091316E61C109C7897176C1C398E2/Naperokino_Drive-in-tapahtuma_" }, "description": { "fi": "<p>Tervetuloa elokuviin vauva- ja taaperokansa! Nyt saa kruisailla vaunuilla sisälle leffateatteriin!</p><p>Naperokinon drive-in-tapahtumassa opetellaan elokuvissa käymistä lempeästi valaistussa ja mukavasti sisustetussa teatterisalissa. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille.</p><p>Kello 9.30 alkaen Stoan Teatterisalin ovet aukeavat vaunuille ja klo 10.00 alkaa dokumenttielokuva: My Octopus Teacher / Mustekala opettajana.</p><p>Rento esityspaikka ja -tilanne mahdollistavat syöttämisen/imettämisen, päiväuneksunnan sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa. <br> <br>Ikäsuositus: 0–3-vuotiaille kotijoukkojensa kanssa <br>Kieli: englanti, tekstitys suomi<br>Elokuvan kesto: elokuvan kesto 1h 30 min, ikäraja: sallittu <br>Vapaa pääsy, ei ennakkoilmoittautumista. Mukaan mahtuu 40 ensimmäistä vaunuyksikköä.</p>", "sv": "<p>Välkomna på film bebisar och knattar! Nu får man köra in med vagnen till biografen!</p><p>I Naperokinos drive-in-evenemang tränar man biobesök i en biosalong med mild belysning och bekväm inredning. Vid sidan av filmerna är Naperokino en mötesplats för små barn och deras vuxna.Naperokino är avsett för hemmamammor och -pappor, mor- och farföräldrar samt familjedagvårdare.</p><p>I Stoas teatersal erbjuds 0–3-åringar och deras föräldrar kl. 9.30–11.30 inhemska och utländska animerade filmer, som man kan komma och titta på fast bara en kort stund om gången.</p><p>Kl. 12–14 börjar småbarnens vila och då tittar man på långfilm som de vuxna får välja. Röstningen är i gång på Stoas FB-sida från och med början av september.<br>En lugn, trevlig föreställningsplats och -situation möjliggör matning/amning, dagsvila och bekantandet av biobesök i barnets takt. Toaletter och möjlighet till blöjbyte finns precis bakom hörnet.</p><p>Åldersrekommendation: 0–3 åringar med förälder.<br>Fritt inträde, kräver ingen förhandsanmälan.</p>", "en": "<p>Welcome to the cinema, babies and toddlers! Now you can cruise straight into the cinema with your baby pram!</p><p>The Babykino drive-in event teaches young children how to visit a cinema in a softly lit and comfortably decorated theatre hall.</p><p>In addition to the films, Babykino provides a meeting place for small children and their adults. The Babykino is intended for stay-at-home mothers and fathers, grandparents and family day-care providers.</p><p>Recommended age: 0–3-year-olds with their families<br>Free entry, no advance registration.</p>" }, "name": { "fi": "Naperokino: Drive-in-tapahtuma", "sv": "Naperokino: Drive-in-tapahtuma", "en": "Naperokino: Drive-in-tapahtuma" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66562/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66799", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1469243, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-12T11:14:05.451784Z", "last_modified_time": "2025-08-12T11:14:05.451800Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775903.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1469243/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-12T11:14:05.323451Z", "last_modified_time": "2025-10-31T09:13:29.226555Z", "date_published": null, "start_time": "2025-10-31T16:00:00Z", "end_time": "2025-10-31T19:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "We Jazz saapuu jälleen Stoaan upeine esiintyjineen!", "sv": "We Jazz med dess ståtliga uppträdare anländer igen till Stoa!", "en": "We Jazz and its fantastic performers are back at Stoa! The Olli Ahvenlahti New Quintet, consisting of some of the top names in jazz, will take to the stage." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/434F80EBC109DA49CDEC0F0CB1A88096/Olli_Ahvenlahti_New_Quintet_Ida_Alanen_Trio", "sv": "http://www.stoa.fi/sv/evenemang/event/434F80EBC109DA49CDEC0F0CB1A88096/Olli_Ahvenlahti_New_Quintet_Ida_Alanen_Trio", "en": "http://www.stoa.fi/en/events/event/434F80EBC109DA49CDEC0F0CB1A88096/Olli_Ahvenlahti_New_Quintet_Ida_Alanen_Trio" }, "description": { "fi": "<p>We Jazz saapuu jälleen Stoaan upeine esiintyjineen!</p><p>Lavalle nousevat jazzin ykkösnimistä koostuva Olli Ahvenlahti New Quintet ja Ida Alanen Trio. Lisäksi luvassa on artistihaastatteluja ja Digelius Music pop up –levykauppa.</p><p>Aikataulu:<br>klo 18 Ida Alanen Trio<br>klo 19 artistihaastattelu<br>klo 19.45 Olli Ahvenlahti New Quintet</p><p>We Jazz Records julkaisi 2024 huhtikuussa Olli Ahvenlahden odotetun uuden albumin Mirror Mirror. Viime vuonna 75 vuotta täyttänyt maestro Ahvenlahti on suomalaisen jazzin elävä legenda, joka jatkaa uudella levyllään 70-luvun klassikkolevyillään The Poet ja Bandstand aloittamaansa tutkimusmatkaa orgaanisesti groovaavan jazzfunkin maailmaan. Onkin helppo ennustaa, että uudet kappaleet albumilta ottavat paikkansa saman jatkumon oivina edustajina Ahvenlahden ja samalla kotimaisen jazzin tarinassa. Ahvenlahden yhtyeessä levyllä ja keikoilla mukana ovat trumpetisti Jukka Eskola, saksofonisti Joonatan Rautio, basisti Ville Herrala ja rumpali Jaska Lukkarinen – kukin maamme ykkösryhmää toteuttamassa säveltäjän visiota.</p><p><b>Ida Alanen Trion</b> musiikki ammentaa inspiraationsa visuaalisista muodoista, orgaanisista tekstuureista sekä unikuvastosta. Trio tulkitsee Alasen sävellyksiä suvereenisti, leikitellen vaivattomasti huolellisesti orkestroitujen sävellysten ja vapaan improvisaation välillä.</p><p>Pianisti-säveltäjä Ida Alanen viimeistelee parhaillaan maisteriopintojaan Amsterdamin Konservatoriolla Harmen Fraanjen johdolla. Alanen, kontrabasisti Jonathan Bäckström ja rumpali Olavi Louhivuori ovat kovassa nosteessa olevia tekijöitä ja vahvasti omaäänisiä muusikoita.<br> <br>Norjalaisen AMP Music & Recordsin kanssa syksyllä 2023 julkaistu trion esikoisalbumi Awake Asleep tutkii maisemia unen ja valveillaolon rajamailta, tuoden alitajunnan kuvia päivänvaloon. Tämä vahva debyytti nosti yhtyeen valokeilaan niin suomalaisella kuin eurooppalaisellakin jazzkentällä.</p><p>We Jazzin vuotuista pääfestivaalia on kuvailtu termeillä ”installaatio” ja ”utopia”. Nämä sanat kiteyttävät We Jazzin hengen ja suuntaavat ajatuksia perinteisen jazzfestivaalikentän ulkopuolelle.</p><p>Jazzin esittämisen tapojen uudistaminen onkin yksi tapahtuman keskeisistä pyrkimyksistä parhaan mahdollisen musiikin tarjoilemisen ohella. We Jazz on osuva läpileikkaus omaäänisestä jazzmusiikista halki genren laajan tyylispektrin.</p><p>Vapaa pääsy. Tulethan ajoissa paikalle, salissa rajattu määrä paikkoja.</p>", "sv": "<p>We Jazz med dess ståtliga uppträdare anländer igen till Stoa!</p><p>Bland annat Olli Ahvenlahti New Quintet som omfattas av spetsnamn stiger på scenen. Ytterligare utlovas artistintervjuer och en popup-skivaffär, Digelius Music.</p><p>I april 2024 utgavs Olli Ahvenlahtis förväntade nya album Mirror Mirror av We Jazz Records. Maestro Ahvenlahti som fyllde 75 år i fjol är en levande legend inom den finska jazzmusiken. På den nya skivan fortsätter han sin expedition till den organiskt groovande jazzfunken. Ahvenlahti påbörjade expeditionen under skivklassikerna The Poet och Bandstand på 1970-talet. Det är lätt att förutspå att de nya låtarna ur albumet hittar sin plats som ypperliga representanter för den samma fortsättningen i Ahvenlahtis och samtidigt den finska jazzens historia. På skivan och på spelningarna omfattas Ahvenlahtis band av trumpetisten Jukka Eskola, saxofonisten Joonatan Rautio, basisten Ville Herrala och trumslagaren Jaska Lukkarinen – var och en förverkligar kompositörens vision i vårt lands band nummer ett.</p><p>We Jazzens årliga huvudfestival har beskrivits med termerna ”installation” och ”utopi”. Dessa ord sammanfattar We Jazz andan och riktar tankarna utanför den traditionella jazzfestivalplanen.</p><p>Vid sidan av erbjudande av bästa möjliga musik är förnyelsen av framförandesätten för jazz en central strävan under evenemanget. We Jazz är ett träffande tvärsnitt från den särpräglade jazzmusiken genom genrens omfattande stilspektrum.</p><p>Fritt inträde.</p>", "en": "<p>We Jazz and its fantastic performers are back at Stoa! The Olli Ahvenlahti New Quintet, consisting of some of the top names in jazz, will take to the stage.</p><p>The evening also offers artist interviews and a Digelius Music pop-up record shop.</p><p>We Jazz Records released Olli Ahvenlahti's highly anticipated new album Mirror Mirror in April 2024. Maestro Ahvenlahti, who turned 75 last year, is a living legend of Finnish jazz. With his new album he continues the exploration into the world of organically groovy jazz-funk that he started with his classic 70s albums The Poet and Bandstand. It is easy to predict that the new songs from the album will take their place as great examples of the same continuum in the story of Ahvenlahti, as well as in the history of Finnish jazz. Ahvenlahti’s band includes trumpeter Jukka Eskola, saxophonist Joonatan Rautio, bassist Ville Herrala and drummer Jaska Lukkarinen both on the album and in the gigs. All of these names are among the frontliners in Finland, now helping to make the composer's vision into reality.</p><p>The annual main festival of We Jazz has been described as an ‘installation’ and a ‘utopia’. These words sum up the spirit of We Jazz, taking us beyond the traditional jazz festival scene.</p><p>Reforming the way jazz is performed is one of the key goals of the event – right alongside providing the best possible music. We Jazz is an apt cross-section of characterful jazz music across the genre's broad spectrum of styles.</p><p>Free entry. Come early, limited seats available.</p>" }, "name": { "fi": "Olli Ahvenlahti New Quintet | Ida Alanen Trio – Sounds of Stoa: We Jazz", "sv": "Olli Ahvenlahti New Quintet | Ida Alanen Trio – Sounds of Stoa: We Jazz", "en": "Olli Ahvenlahti New Quintet | Ida Alanen Trio – Sounds of Stoa: We Jazz" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66799/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67227", "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:105/?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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491224, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-30T15:13:42.227141Z", "last_modified_time": "2025-10-30T15:13:42.227165Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773563.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491224/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-10-30T15:13:41.993106Z", "last_modified_time": "2025-10-30T15:13:42.503535Z", "date_published": null, "start_time": "2025-11-20T07:00:00Z", "end_time": "2025-11-20T18: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, "short_description": { "fi": "Linda Bondestam loihtii kuvitusnäyttelyynsä jotain aivan uutta, mutta esillä on myös jotain vanhaa, varsin ajankohtaista ja ehdottomasti myös yllättävää!", "sv": "Linda Bondestam skapar något alldeles nytt till sin illustrationsutställning, men visar även något gammalt, något mycket aktuellt och något verkligen överraskande!", "en": "Linda Bondestam conjures up something entirely new for her illustration exhibition, but there will also be something old, surprisingly timely and most definitely unexpected!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BD65FA9F6F0ACB279C1A46CFDFAB71E1/Lastenkulttuuria_jokaiselle_Linda_Bondestam_Hopi_hopi_-_toivoa_paremmasta_maailmasta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/BD65FA9F6F0ACB279C1A46CFDFAB71E1/Barnkultur_for_alla_Linda_Bondestam_Hopi_hopi_-_med_hopp_om_en_battre_varld", "en": "http://www.kanneltalo.fi/en/events/event/BD65FA9F6F0ACB279C1A46CFDFAB71E1/Children_s_Culture_for_All_Linda_Bondestam_Chop_chop_Hope_for_a_Better_World" }, "description": { "fi": "<p>Linda Bondestam loihtii kuvitusnäyttelyynsä jotain aivan uutta, mutta esillä on myös jotain vanhaa, varsin ajankohtaista ja ehdottomasti myös yllättävää!</p><p>”Hahmot vain syntyvät, kun minulla on paperi edessä ja kynä kädessä. En edes tiedä, mistä ne tulevat. Joskus istun vaikkapa junassa, katson keitä kanssani matkustaa ja piirrän salaa.”, Linda kertoo. <br> <br>Piirtämisen lisäksi Linda maalaa sekä käyttää vesivärejä ja liituja. Sen jälkeen hän jatkaa työstäen kuvat tietokoneella valmiiksi teoksiksi. Hänen mielestään lastenkirjallisuudessa pitää olla moninaisuutta, siksi hän miettii paljon sitä, keille antaa näkyvyyttä kirjoissaan. Linda uskaltaa käsitellä ihmisen toiminnan synkkiä vaikutuksia maapallollamme, kuvittaen kirjoihinsa kuitenkin lempeää toivoa paremmasta maailmasta.<br> <br>Linda Bondestam (s. 1977) on yksi Pohjoismaiden merkittävimmistä lastenkirjojen tekijöistä. Hänen kuvittamansa teokset on usein julkaistu samaan aikaan sekä ruotsiksi että suomeksi. Lisäksi hänen kuvittamiaan kirjoja on käännetty parillekymmenelle kielelle. Bondestam on palkittu muun muassa Pohjoismaiden neuvoston lasten- ja nuortenkirjapalkinnolla, ja hän on saanut lukuisia palkintoehdokkuuksia niin Suomessa kuin Ruotsissa. Vuonna 2024 Linda Bondestam voitti merkittävän ruotsalaisen August-palkinnon lasten- ja nuortenkirjallisuuden sarjan teoksellaan Chop chop. En tapper jordbos berättelse (Förlaget 2024). Hopi hopi. Reippaan robotin tarina. (Teos 2024). <br> <br>Lainaus Linda Bondestamin haastattelusta Suomen Kuvalehdessä 25.1.2025.</p>", "sv": "<p>Linda Bondestam skapar något alldeles nytt till sin illustrationsutställning, men visar även något gammalt, något mycket aktuellt och något verkligen överraskande!</p><p>”Figurerna bara uppstår när jag har papper framför mig och penna i handen. Jag vet inte ens var de kommer ifrån. Ibland sitter jag till exempel på tåget, kollar vem som reser med mig och tecknar i all hemlighet”, berättar Linda. <br> <br>Förutom att rita, målar Linda och använder vattenfärger och kritor. Sen fortsätter hon bearbeta bilderna på dator tills de är färdiga. Enligt henne ska det finnas mångfald i barnlitteraturen, och därför funderar hon mycket på vem som ska ges synlighet i hennes böcker. Linda vågar ta itu med de dystra konsekvenserna av mänsklig verksamhet på vår planet, men föreställer sig ändå behaglig förhoppning om en bättre värld.</p><p>Linda Bondestam (f. 1977) är en av de viktigaste barnboksskaparna i Norden. De verk som hon illustrerats har ofta publicerats samtidigt på både svenska och finska. Dessutom har de böcker som hon har illustrerat översatts till tjugo språk. Bondestam har prisbelönats bland annat med nordiskt rådets barn- och ungdomsbokpris och har fått flera priskandidater såväl i Finland som i Sverige. År 2024 vann Linda Bondestam det betydande svenska August-priset i barn- och ungdomslitteraturens serie med sitt verk Chop chop. En tapper jordbos berättelse (Förlaget 2024). Hopi hopi. Reippaan robotin tarina. (Teos 2024). <br> <br>*Citat från intervjun med Linda Bondestam i Suomen Kuvalehti 25.1.2025.</p>", "en": "<p>Linda Bondestam conjures up something entirely new for her illustration exhibition, but there will also be something old, surprisingly timely and most definitely unexpected!</p><p>\"The characters just appear when I have a piece of paper in front of me and a pencil in hand. I do not even know where they come from. Sometimes while sitting on a train, I watch my fellow passengers and secretly sketch them,\" says Linda.*</p><p>In addition to drawing, Linda also paints and uses watercolours and pastels. She then continues working on the images digitally to finalise her pieces. She believes that children's literature must embrace diversity, which is why she gives careful thought to whose stories are seen and heard in her books. Linda is not afraid to explore the darker effects of human activity on our planet, but she always includes a gentle thread of hope for a better world through her illustrations.</p><p>Linda Bondestam (b. 1977) is one of the most prominent creators of children's books in the Nordic countries. The books she has illustrated have often been published simultaneously in both Swedish and Finnish. In addition, her illustrated works have been translated into around twenty languages. Bondestam has received numerous awards, including the Nordic Council's Children and Young People's Literature Prize, and she has been nominated for several prestigious awards in both Finland and Sweden. In 2024, Linda Bondestam won the esteemed Swedish August Prize in the children's and young adult literature category with her book Chop Chop. En tapper jordbos berättelse (Förlaget, 2024). Hopi hopi. Reippaan robotin tarina. (Teos, 2024).</p><p>*Quote from Linda Bondestam's interview in Suomen Kuvalehti, 25 January 2025.</p>" }, "name": { "fi": "Lastenkulttuuria jokaiselle: Linda Bondestam: Hopi hopi - toivoa paremmasta maailmasta", "sv": "Barnkultur för alla: Linda Bondestam: Hopi hopi - med hopp om en bättre värld", "en": "Children's Culture for All: Linda Bondestam: Chop chop – Hope for a Better World" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67227/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66386", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1203203, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-07T12:14:09.088201Z", "last_modified_time": "2025-07-07T12:14:09.088218Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773858.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203203/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-07T12:14:08.945834Z", "last_modified_time": "2025-10-30T13:13:14.382240Z", "date_published": null, "start_time": "2025-11-07T16:00:00Z", "end_time": "2025-11-07T18:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.", "en": "Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3E193EB94769DD321C160D72E0D4C08F/Global_Club_Nights_Etnosoi_The_Pan-African_Ensemble_Tamam", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3E193EB94769DD321C160D72E0D4C08F/Global_Club_Nights_Etnosoi_The_Pan-African_Ensemble_Tamam", "en": "http://www.kanneltalo.fi/en/events/event/3E193EB94769DD321C160D72E0D4C08F/Global_Club_Nights_Etnosoi_The_Pan-African_Ensemble_Tamam" }, "description": { "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Kanneltalossa klubeja järjestetään syksyn 2025 aikana kahtena iltana. Ensimmäisessä klubi-illassa 19.9. esiintyvät Sofra ja El_Doxa.</p><p>Toinen klubi-ilta järjestetään 7.11. yhteistyössä Etnosoi! festivaalin kanssa, jolloin esiintyvät The Pan-African Ensemble ja Tamam.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Klubi tarjoilee mukaansa tempaavan musiikin lisäksi myös muuta mukavaa lapsille sopivaa ohjelmaa. Aloitetaan viikonloppu yhdessä!</p><p>Klubi-ilta toteutetaan yhteistyössä ETNOSOI! Festivaalin kanssa.</p><p><b>The Pan-African Ensemble</b><br>The Pan-African Ensemble -yhtye tekee tutkimusmatkoja afrikkalaiseen nykymusiikkiin ja perinteisiin musiikkityyleihin. Yhtyeessä musiikki yhdistää kulttuurista monimuotoisuutta yhdeksi luovaksi yhteisöksi.</p><p>Eri puolilta maailmaa tulevat muusikot kokoontuvat yhteen tekemään afrikkalaista musiikkia tuoden siihen omat ainutlaatuiset instrumenttinsa ja äänensä. He uppoutuvat tanssirytmeihin ja sovittavat niitä omille soittimilleen sopiviksi. Tämä luo kuulijassa tunteen, että musiikilla ei ole rajoja.</p><p>Tanssi ja ilmaisu merkitsevät vapautta, eikä niihin vaadita minkään tietyn alueen tanssityylin tietämystä. Tule siis mukaan tanssiin! Esityksemme tarjoaa unohtumattoman kokemuksen, jossa rikotaan yleisön ja esiintyjien välisiä raja-aitoja.</p><p>Yhtyeen omaleimaisia piirteitä ovat vahvat lauluosuudet, torvisektio ja rytmit, joihin sisältyy kaikuja afrobeatistä, zoukista, soukousista sekä itäafrikkalaisesta rumbasta ja rumpumusiikista. Esiintymisissä ei myöskään unohdeta improvisaatiota.</p><p><b>Tamam</b><br>Tamam-yhtyeen musiikin juuret ovat Egeianmerellä ja Anatoliassa. Kahdeksanhenkinen helsinkiläinen yhtye luottaa musiikin ihmisiä yhteen tuovaan voimaan. Tamamin musiikissa soivat ihmisyyden perus pilarit, rakkaus ja kaipaus.</p><p>Näinä haastavina aikoina heidän konserttinsa on kutsu yhteydenpitoon – kulttuurien, kielten ja historioiden yli – musiikin universaalin kielen kautta.</p><p>Chrysoula Panagiotopoulou - laulu<br>Merve Abdurrahmani - laulu<br>Yonca Kurtoglu Ermutlu - laulu<br>Sara Magidi Nejad - qanun<br>Melisa Yildirim - kemenche<br>Murat Ermutlu - lyömäsoittimet<br>Hadi Hrekes - lyömäsoittimet<br>Vasileios Katopodis - kitara</p><p>Vapaa pääsy</p>", "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p>I Gamlasgården ordnas klubben två kvällar under hösten 2025. På den första klubbkvällen 19.9. framträder Sofra och El_Doxa. Den andra klubbkvällen ordnas 7.11. i samarbete med Etnosoi! Festival och då framträder The Pan-African Ensemble och Etnosoi!-festivalens andra gästartist, bekräftas senare.</p><p>De avgiftsfria klubbkvällarna börjar tidigt, så barn är också välkomna i sällskap av en vuxen. Låt oss inleda veckoslutet tillsammans!</p>", "en": "<p>Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music.</p><p>Kanneltalo will host the club on two evenings during the autumn of 2025. The first club night on 19th September will feature Sofra and El_Doxa. The second club night will take place on 7th November, with performances by The Pan-African Ensemble and Tamam. The club night is produced in collaboration with ETNOSOI! Festival.</p><p>The free club nights start early, which means children are welcome when accompanied by an adult. The free club nights start early, so children are welcome when accompanied by an adult. In addition to exciting music, the club also offers other fun activities suitable for children. Let’s start the weekend together!</p><p><b>The Pan-African Ensemble</b><br>The Pan-African Ensemble explores contemporary African music and traditional musical styles. The music in the ensemble unites cultural diversity into one creative community. Musicians from all over the world come together to make African music, bringing their own unique instruments and voices to it. They immerse themselves in dance rhythms and adapt them to suit their own instruments. This creates a feeling in the listener that music has no boundaries.</p><p>Dance and expression mean freedom, and do not require knowledge of any particular dance style from any particular region. So come and dance! Our performance offers an unforgettable experience that breaks down the boundaries between the audience and the performers.<br> <br>The band’s distinctive features include strong vocals, a horn section and rhythms that include echoes of Afrobeat, zouk, soukous, and East African rumba and drum music. Improvisation is also not forgotten in the performances.</p><p><b>Tamam</b> <br>Tamam is a Helsinki-based ensemble of eight musicians united by a shared belief in music’s power to bring people together.</p><p>Drawing from the rich traditions of the Aegean and Minor Asia, Tamam performs songs that have crossed borders for generations — melodies of migration, love, and belonging that remind us of our shared humanity.<br>In these challenging times, their concert is an invitation to connect — across cultures, languages, and histories — through the universal language of music.</p><p>Chrysoula Panagiotopoulou - Singing<br>Merve Abdurrahmani - Singing<br>Yonca Kurtoglu Ermutlu - Singing<br>Sara Magidi Nejad - Qanun<br>Melisa Yildirim - Kemenche<br>Murat Ermutlu - Percussion<br>Hadi Hrekes - Percussion<br>Vasileios Katopodis - Guitar</p><p><b>Evening in Collaboration with ETNOSOI! </b><br>Etnosoi! is an annual festival in Helsinki with concerts, club nights and side events. Established in 1988, the idea of the festival is to inspire audiences to explore new musical adventures and showcase music from around the globe - especially performers that have rarely, if ever, been seen in Finland or Europe. Etnosoi! is a member of the Forum of Worldwide Music Festivals.<br>Etnosoi! Festival is organized by Global Music Centre</p>" }, "name": { "fi": "Global Club Nights & Etnosoi!| The Pan-African Ensemble & Tamam – Global Club Nights | EtnoSoi!", "sv": "Global Club Nights & Etnosoi!| The Pan-African Ensemble & Tamam – Global Club Nights | EtnoSoi!", "en": "Global Club Nights & Etnosoi!| The Pan-African Ensemble & Tamam – Global Club Nights | EtnoSoi!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66386/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67205", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491180, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-24T06:13:30.716629Z", "last_modified_time": "2025-10-24T06:13:30.716670Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777342.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491180/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-24T06:13:30.619452Z", "last_modified_time": "2025-10-30T11:13:45.103263Z", "date_published": null, "start_time": "2025-11-26T16: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, "short_description": { "fi": "Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2E6C6388A82B4118C71174D4CA52832F/Kino_Helios_Wicked_for_Good", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2E6C6388A82B4118C71174D4CA52832F/Kino_Helios_Wicked_for_Good", "en": "http://www.malmitalo.fi/en/events/event/2E6C6388A82B4118C71174D4CA52832F/Kino_Helios_Wicked_for_Good" }, "description": { "fi": "<p>Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni.</p><p>Viime vuoden maailmanlaajuinen elokuvatapaus saa nyt eeppisen, sävähdyttävän ja tunteellisen päätöksensä. Ozin noitien viimeinen, aiemmin kertomaton luku alkaa Elphaban ja Glindan välirikosta ja elämästä valintojensa seurausten kanssa.</p><p>Wicked: For Good perustuu sukupolvensa ilmiöksi nousseeseen musikaalinäytelmään. Elokuvaa tähdittää taas loistava näyttelijäkaarti kärjessään Oscar®-ehdokkuuden ansainneet supertähdet Cynthia Erivo ja Ariana Grande. Elokuvan alkuperäismusiikista vastaavat John Powell ja Stephen Schwartz, ja sävellykset ja sanoitukset ovat Stephen Schwartzin käsialaa.</p><p>Ikäraja: 12<br>Kesto: 138 min<br>Ensi-ilta: 21.11.2025</p><p>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Kino Helios: Wicked for Good", "sv": "Kino Helios: Wicked for Good", "en": "Kino Helios: Wicked for Good" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67205/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67204", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491179, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-24T06:13:29.732318Z", "last_modified_time": "2025-10-24T06:13:29.732334Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777372.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491179/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-24T06:13:29.631260Z", "last_modified_time": "2025-10-30T11:13:44.304372Z", "date_published": null, "start_time": "2025-11-22T16: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, "short_description": { "fi": "Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0FD6E77017A884A0EC7A422BEF84FDDD/Kino_Helios_Wicked_for_Good", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0FD6E77017A884A0EC7A422BEF84FDDD/Kino_Helios_Wicked_for_Good", "en": "http://www.malmitalo.fi/en/events/event/0FD6E77017A884A0EC7A422BEF84FDDD/Kino_Helios_Wicked_for_Good" }, "description": { "fi": "<p>Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni.</p><p>Viime vuoden maailmanlaajuinen elokuvatapaus saa nyt eeppisen, sävähdyttävän ja tunteellisen päätöksensä. Ozin noitien viimeinen, aiemmin kertomaton luku alkaa Elphaban ja Glindan välirikosta ja elämästä valintojensa seurausten kanssa.</p><p>Wicked: For Good perustuu sukupolvensa ilmiöksi nousseeseen musikaalinäytelmään. Elokuvaa tähdittää taas loistava näyttelijäkaarti kärjessään Oscar®-ehdokkuuden ansainneet supertähdet Cynthia Erivo ja Ariana Grande. Elokuvan alkuperäismusiikista vastaavat John Powell ja Stephen Schwartz, ja sävellykset ja sanoitukset ovat Stephen Schwartzin käsialaa.</p><p>Ikäraja: 12<br>Kesto: 138 min<br>Ensi-ilta: 21.11.2025</p><p>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Kino Helios: Wicked for Good", "sv": "Kino Helios: Wicked for Good", "en": "Kino Helios: Wicked for Good" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67204/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67203", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-24T06:13:28.657177Z", "last_modified_time": "2025-10-24T06:13:28.657189Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777302.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491178/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-24T06:13:28.507740Z", "last_modified_time": "2025-10-30T11:13:43.449187Z", "date_published": null, "start_time": "2025-11-21T13: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, "short_description": { "fi": "Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4DE398A332ACF1CA5D2C790CE96282F6/Kino_Helios_Wicked_for_Good", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4DE398A332ACF1CA5D2C790CE96282F6/Kino_Helios_Wicked_for_Good", "en": "http://www.malmitalo.fi/en/events/event/4DE398A332ACF1CA5D2C790CE96282F6/Kino_Helios_Wicked_for_Good" }, "description": { "fi": "<p>Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni.</p><p>Viime vuoden maailmanlaajuinen elokuvatapaus saa nyt eeppisen, sävähdyttävän ja tunteellisen päätöksensä. Ozin noitien viimeinen, aiemmin kertomaton luku alkaa Elphaban ja Glindan välirikosta ja elämästä valintojensa seurausten kanssa.</p><p>Wicked: For Good perustuu sukupolvensa ilmiöksi nousseeseen musikaalinäytelmään. Elokuvaa tähdittää taas loistava näyttelijäkaarti kärjessään Oscar®-ehdokkuuden ansainneet supertähdet Cynthia Erivo ja Ariana Grande. Elokuvan alkuperäismusiikista vastaavat John Powell ja Stephen Schwartz, ja sävellykset ja sanoitukset ovat Stephen Schwartzin käsialaa.</p><p>Ikäraja: 12<br>Kesto: 138 min<br>Ensi-ilta: 21.11.2025</p><p>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Kino Helios: Wicked for Good", "sv": "Kino Helios: Wicked for Good", "en": "Kino Helios: Wicked for Good" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67203/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66500", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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: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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491062, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-09T11:14:23.426807Z", "last_modified_time": "2025-10-09T11:14:23.426828Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774733.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491062/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-09T11:14:23.088987Z", "last_modified_time": "2025-10-30T11:13:37.038451Z", "date_published": null, "start_time": "2025-11-05T15: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, "short_description": { "fi": "Tervetuloa Kantsun kahveille keskiviikkona 5.11. kello 17-19.00. Kahvit järjestetään Kanneltalon kahvilassa, osoitteessa Klaneettitie 5. Tilaisuuteen on vapaa pääsy.", "en": "Welcome to Kantsu Cafe on Wednesday, November 5th, from 5-7 p.m. at Kanneltalo's café, Klaneettitie 5." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F96AEB9A03E719049DA7C920123F921B/Kantsun_kahvit_-_OmaStadi", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F96AEB9A03E719049DA7C920123F921B/Kantsun_kahvit", "en": "http://www.kanneltalo.fi/en/events/event/F96AEB9A03E719049DA7C920123F921B/Kantsun_kahvit" }, "description": { "fi": "<p>Tervetuloa Kantsun kahveille keskiviikkona 5.11. kello 17-19.00. Kahvit järjestetään Kanneltalon kahvilassa, osoitteessa Klaneettitie 5. Tilaisuuteen on vapaa pääsy.</p><p>Luvassa on vapaamuotoista ajanviettoa ja lautapelejä. Tarjolla on kahvia, teetä ja pientä iltapalaa. Lapsille on varattu myös piirustusvälineitä ja legoja.</p><p>Klo 18.20 esiintyy Sule Abdalla!<br>Lämpimästi tervetuloa yksin tai kaverin kanssa!</p><p>Kantsun kahvien sisällöt suunnitellaan yhdessä asukasaktiivien kanssa. Osallistu keskusteluun Kantsun kahvit -Facebook-ryhmässä: https://www.facebook.com/groups/875036451503848<br>Kantsun kahvit järjestetään yhteistyössä alueen asukkaiden, Kannelmäen D-aseman ja Helsingin kaupungin kanssa.<br>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton.</p><p>Paikka: Kanneltalon kahvilan stage</p><p>Maksuton, vapaa pääsy</p>", "en": "<p>Welcome to Kantsu Cafe on Wednesday, November 5th, from 5-7 p.m. at Kanneltalo's café, Klaneettitie 5.</p><p>The evening starts with board games and free socializing. We offer you coffee, tea and snacks. Drawing materials and Legos are provided for children.</p><p>-At 6:20 p.m. Sule Abdalla will perform!</p><p>*You are warmly welcome by yourself or with a friend*</p>" }, "name": { "fi": "Kantsun kahvit - OmaStadi", "sv": "Kantsun kahvit", "en": "Kantsun kahvit" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66500/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66510", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/virve-rosti-freeman-menneisyyden-vangit/virve-rosti-freeman-ja-menneisyyden-vangit-3913241/", "sv": "https://www.lippu.fi/artist/virve-rosti-freeman-menneisyyden-vangit/virve-rosti-freeman-ja-menneisyyden-vangit-3913241/", "en": "https://www.lippu.fi/artist/virve-rosti-freeman-menneisyyden-vangit/virve-rosti-freeman-ja-menneisyyden-vangit-3913241/" }, "description": null, "price": { "fi": "38,90 €, S&D 98,90 €", "sv": "38,90 €, S&D 98,90 €", "en": "38,90 €, S&D 98,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 985989, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-10T12:14:52.231811Z", "last_modified_time": "2025-06-10T12:14:52.231833Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774778.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985989/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T06:13:51.402685Z", "last_modified_time": "2025-10-30T10:13:10.074012Z", "date_published": null, "start_time": "2025-11-07T17: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, "short_description": { "fi": "Legendaarinen kokoonpano Virve Rosti, Freeman & Menneisyyden Vangit Savoy-teatterissa parhaimpaan pikkujouluaikaan!", "sv": "Legendarisk sammansättning av Virve Rosti, Freeman och Menneisyyden Vangit på Savoy-teatern under bästa julfestsäsong!", "en": "The legendary line-up Virve Rosti, Freeman & Menneisyyden Vangit come to the Savoy Theatre to celebrate the height of the Christmas season!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/31F438691EB9E84EA67CA3D4B0833F89/Virve_Rosti_Freeman_ja_Menneisyyden_Vangit", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/31F438691EB9E84EA67CA3D4B0833F89/Virve_Rosti_Freeman_och_Menneisyyden_Vangit", "en": "http://www.savoyteatteri.fi/en/events/event/31F438691EB9E84EA67CA3D4B0833F89/Virve_Rosti_Freeman_and_Menneisyyden_Vangit" }, "description": { "fi": "<p>Legendaarinen kokoonpano Virve Rosti, Freeman & Menneisyyden Vangit Savoy-teatterissa parhaimpaan pikkujouluaikaan!</p><p>Kesto n. 2 h, sisältää väliajan<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b>Konsertin Show&Dinner-lippupakettien myynti on päättynyt Lippu.fi.ssä, mutta illallinen on mahdollista tilata suoraan Savoy-teatterin ravintola Minnen verkkokaupasta: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-ja-dinner-virve-rosti-freeman-ja-menneisyyden-vangit </b></p><p>Huomioithan, että Minnen illalliskattauksessa on rajallinen määrä paikkoja jäljellä.</p><p>Konserttiin on myynnissä Savoy-teatterin yhteydessä toimivan Minne Garden-ravintolan herkullinen kolmen ruokalajin illallinen, joka tarjoillaan kaksi tuntia ennen esitystä. Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.</p><p><b>Show & Dinner -lippu</b> sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun.</p><p><b>Menu Classic</b> <br>Rapuskagen, paahdettua mallasleipää, etikkakurkkua ja siianmätiä L<br>Matalassa lämmössä kypsytettyä häränfileetä, paahdettua palsternakkaa ja aligot-perunaa L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G<br> <br>TAI<br> <br><b>Menu Green</b> <br>Punajuuricarpaccio, kuusenkerkkächeddaria ja pikkelöityjä sieniä L,G<br>Grillattua savojinkaalta, kikhernepyrettä ja haudutettua pinaattia L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G<br> <br>Menun hinta ei sisällä juomia. <br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua. <br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p>", "sv": "<p>Legendarisk sammansättning av Virve Rosti, Freeman och Menneisyyden Vangit på Savoy-teatern under bästa julfestsäsong!</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Till konserten säljs en utsökt trerätters middag på restaurang Minne Garden intill Savoy-teatern som serveras två timmar före föreställningen. Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p><p>Biljetten Show & Dinner inkluderar en entrébiljett och en meny med kött eller vegetarisk mat som serveras till borden.</p><p>Menu Classic<br>Kräftskagen, rostat maltbröd, ättiksgurka och sikrom L<br>Oxfilé tillagad på låg värme, rostad palsternacka och pommes aligot L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>ELLER</p><p>Menu Green<br>Rödbetscarpaccio, granskottscheddar och picklad svamp L, G<br>Grillad savoykål, kikärtspuré och stuvad spenat L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>Menypriset inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar före kvällens föreställning.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p>", "en": "<p>The legendary line-up Virve Rosti, Freeman & Menneisyyden Vangit come to the Savoy Theatre to celebrate the height of the Christmas season!</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>A delicious three-course dinner at the Savoy Theatre's Minne Garden restaurant is available for purchase for the concert evening, served two hours before the performance. Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p><p>The Show & Dinner ticket includes an entrance ticket and a meat or vegetarian menu served to tables.</p><p>Menu Classic<br>Toast skagen, toasted malt bread, pickled cucumber and whitefish roe L<br>Beef fillet cooked at low heat, roasted parsnips and pommes aligot, L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>OR</p><p>Menu Green<br>Beetroot carpaccio, spruce sprout cheddar and pickled mushrooms L,G<br>Grilled savoy cabbage, chickpea puree and braised spinach L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>The price of the menu does not include drinks.<br>The dinner will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the evening's performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p>" }, "name": { "fi": "Virve Rosti, Freeman ja Menneisyyden Vangit", "sv": "Virve Rosti, Freeman och Menneisyyden Vangit", "en": "Virve Rosti, Freeman and Menneisyyden Vangit" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Sunborn Events Oy", "sv": "Sunborn Events Oy", "en": "Sunborn Events Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66510/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66673", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?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/kulttuurikeskus-caisa/juuret-maassa-siivet-ilmassa-annamaret-balvvosbaiki-3923301/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/juuret-maassa-siivet-ilmassa-annamaret-balvvosbaiki-3923301/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/juuret-maassa-siivet-ilmassa-annamaret-balvvosbaiki-3923301/" }, "description": null, "price": { "fi": "15 € / 7 € / 0 €", "sv": "15 € / 7 € / 0 €", "en": "15 € / 7 € / 0 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1154819, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T09:12:26.848330Z", "last_modified_time": "2025-07-01T09:12:26.848343Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774624.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154819/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T09:12:26.793764Z", "last_modified_time": "2025-10-30T10:13:08.143908Z", "date_published": null, "start_time": "2025-10-31T17: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, "short_description": { "fi": "Tule kokemaan saamelaista joikua, jouhikkoa, elektroniikkaa ja videotaidetta yhdistävä monitaiteinen konsertti.", "sv": "Kom och upplev den multikonstnärliga konserten som kombinerar samisk jojk, stråkharpa, elektronik och videokonst.", "en": "Come and experience a multi-artistic concert that combines Sami joik, the jouhikko bowed lyre, electronics and video art." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/AC9A1A98B0FBD9F89777A6C9DDD58790/LOPPUUNMYYTY_nn_m_ret_B_lvvosba_ki_", "sv": "http://www.caisa.fi/sv/evenemang/event/AC9A1A98B0FBD9F89777A6C9DDD58790/SLUTSALD_nn_m_ret_B_lvvosba_ki_", "en": "http://www.caisa.fi/en/events/event/AC9A1A98B0FBD9F89777A6C9DDD58790/SOLD_OUT_nn_m_ret_B_lvvosba_ki_" }, "description": { "fi": "<p>Tule kokemaan saamelaista joikua, jouhikkoa, elektroniikkaa ja videotaidetta yhdistävä monitaiteinen konsertti.</p><p>Ánnámáret-työryhmän yhdessä luoma Bálvvosbáiki-konsertti (Palvospaikka) vie kuulijansa elämyksellisiin maailmoihin saamelaisten luohtien (eli joikujen), jouhikon ja elektroniikan vuoropuhelun luoman musiikin ja musiikkia säestävän videotaiteen kanssa. Luohtien aiheet pohtivat, miten saamelainen maailmankatsomus näkyy tämän päivän saamelaisessa elämässä.<br> <br>Ikäsuositus: Sopii kaikenikäisille <br>Esityksen kieli: Pohjoissaame <br>Esityksen kesto: 60 min. Ei väliaikaa.<br>Sisältöhuomio: ajoittain kovia ääniä ja välkkyviä valoja. <br> <br>Esiintyjät<br>Ánnámáret – joiku <br>Ilkka Heinonen – jouhikko <br>Turkka Inkilä – elektroniikka ja shakuhachi <br>Marja Viitahuhta – videotaide</p><p><b>Juuret maassa, siivet ilmassa</b> on konserttisarja, joka juhlistaa monimuotoisuuden voima ja musiikin yhdistävää vaikutusta. Sarja tuo esille sen, kuinka erilaiset juuret – kulttuuriset, historialliset ja yksilölliset - voivat yhdessä kasvattaa siivet, jotka kantavat kohti uutta ja ainutlaatuista tulevaisuutta. <br>Jokainen esiintyjä ja esitys on voitto elämän monimuotoisuudelle ja taiteen voimauttavalle vaikutukselle. Sarja on matka tarinoihin, joissa kohtaavat identiteetti, rohkeus ja elämän ainutlaatuisuus.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381797/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>", "sv": "<p>Kom och upplev den multikonstnärliga konserten som kombinerar samisk jojk, stråkharpa, elektronik och videokonst.</p><p>Konserten Bálvvosbáiki (Palvospaikka), som skapats tillsammans av arbetsgruppen Ánnámáret, tar sina åhörare till upplevelserika världar med samernas luohti (dvs. jojk), musik som skapas av en dialog mellan stråkharpa och elektronik samt videokonst som ackompanjerar musiken. Jojkarnas teman reflekterar över hur den samiska världsåskådningen syns i dagens samiska liv.</p><p>Åldersrekommendation: Passar för alla åldrar <br>Föreställningens språk: Nordsamiska <br>Föreställningens längd: 60 minuter. Utan paus.<br>Innehållsvarning: ibland höga ljud och flimrande ljus.</p><p><b>Artister</b><br>Ánnámáret – jojk <br>Ilkka Heinonen – stråkharpa <br>Turkka Inkilä – elektronik och shakuhachi <br>Marja Viitahuhta – videokonst</p><p><b>Juuret maassa, siivet ilmassa</b> är en konsertserie som hyllar kraften i mångfald och musikens förenande inverkan. Serien lyfter fram hur olika rötter – kulturella, historiska och individuella – tillsammans kan få vingar som bär dem mot en ny och unik framtid.</p><p>Varje artist och varje föreställning är en triumf för livets mångfald och konstens stärkande kraft. Serien är en resa genom berättelser om identitet, mod och det unika i livet.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381797/?affiliate=FSF#tab=\">HÄR</a></u></p>", "en": "<p>Come and experience a multi-artistic concert that combines Sami joik, the jouhikko bowed lyre, electronics and video art.</p><p>Co-created by the Ánnámáret team, the Bálvvosbáiki (place of worship) concert takes the listener to unforgettable worlds through music consisting of a dialogue between Sami joiks, the jouhikko bowed lyre and electronics, as well as accompanying video art. The themes of the joiks contemplate how the Sami worldview is reflected in Sami life today.</p><p>Recommended age: Suitable for all ages <br>Language of the performance: North Sami <br>Duration of the performance: 60 min, no intermission.<br>Content warning: occasional loud noises and flickering lights.</p><p><b>Performers</b><br>Ánnámáret – joik <br>Ilkka Heinonen – jouhikko bowed lyre <br>Turkka Inkilä – electronics and shakuhachi <br>Marja Viitahuhta - video art</p><p><b>Roots in the Ground, Wings in the Air</b> is a concert series that celebrates the power of diversity and the unifying power of music. The series highlights how different roots – cultural, historical and individual – can together grow wings that carry us towards a new and unique future.</p><p>Every performer and performance is a triumph for the diversity of life and the empowering effect of art. The series is a journey into stories in which identity, courage and the uniqueness of life come together.</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381797/?affiliate=FSF#tab=\">HERE</a></u></p>" }, "name": { "fi": "LOPPUUNMYYTY Ánnámáret – Bálvvosbaíki – Juuret maassa, siivet ilmassa", "sv": "SLUTSÅLD Ánnámáret – Bálvvosbaíki – Juuret maassa, siivet ilmassa", "en": "SOLD OUT Ánnámáret – Bálvvosbaíki – Roots in the Ground, Wings in the Air" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66673/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66750", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491223, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-30T09:13:51.161421Z", "last_modified_time": "2025-10-30T09:13:51.161436Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772843.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491223/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-30T09:13:51.029231Z", "last_modified_time": "2025-10-30T09:13:51.326904Z", "date_published": null, "start_time": "2025-12-06T11: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, "short_description": { "fi": "Sortavala oli sotia edeltävällä ajalla monin tavoin poikkeuksellinen kaupunki.", "sv": "Sortavala var på många sätt en exceptionell stad under förkrigstiden.", "en": "Sortavala was an exceptional town in many ways in the pre-war period." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FFB6E975344431674D986DE26731F562/Kulttuuria_taynna_-_muistoja_Sortavalasta_-dokumentti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/FFB6E975344431674D986DE26731F562/Dokumentarfilmen_Kulttuuria_taynna_muistoja_Sortavalasta", "en": "http://www.malmitalo.fi/en/events/event/FFB6E975344431674D986DE26731F562/Full_of_Culture_Muistoja_Sortavalasta_a_Documentary" }, "description": { "fi": "<p>Sortavala oli sotia edeltävällä ajalla monin tavoin poikkeuksellinen kaupunki.</p><p>Sen sijainti Laatokan pohjoisrannalla tuolloisten Karjalan laulumaiden äärellä sekä kaupungin vireä ja yritteliäs ilmapiiri loivat hyvät edellytykset monipuoliselle kulttuurielämälle. Voi sanoa, että Sortavalan yhteiskunnallinen ja kulttuurinen merkitys oli huomattavasti sen kokoa suurempi.</p><p>Haastatteludokumentti valottaa eri näkökulmista Sortavalan ja sen ympäristön kulttuuri- ja sivistyselämää, sen vaikuttajia ja ihmisten arkea. Kertojina on Sortavala-asiantuntijoita sekä Sortavalassa nuoruutensa viettäneitä alkuperäisiä sortavalalaisia.</p><p>Dokumentin on käsikirjoittanut ja ohjannut Sortavala-seuran puheenjohtaja Marja Lampi ja se on toteutettu yhteistyössä Metropolia ammattikorkeakoulun elokuva- ja televisioalan opiskelijoiden kanssa. Valmistusvuosi 2023.</p><p>Kesto 1 tunti</p><p>Vapaa pääsy!</p>", "sv": "<p>Sortavala var på många sätt en exceptionell stad under förkrigstiden.</p><p>Dess läge vid Ladogas norra strand vid de dåtida Karelens områden där Kalevaladikterna samlades in, samt stadens livliga och företagsamma atmosfär skapade goda förutsättningar för ett mångsidigt kulturliv. Man kan säga att Sortavalas sociala och kulturella betydelse var långt större än dess storlek.</p><p>Intervjudokumentären belyser det kulturella och civiliserade livet i Sortavala med omnejd ur olika perspektiv, dess påverkare och människornas vardag. Berättarna är Sortavalakännare och ursprungliga Sortavalabor som tillbringade sin ungdom i Sortavala.</p><p>Dokumentären är skriven och regisserad av Sortavala-sällskapets ordförande Marja Lampi och den har genomförts i samarbete med studerande inom film- och tv-branschen vid Metropolia yrkeshögskola. Filmen blev klar 2023.</p><p>Längd: 1 timme<br>Fritt inträde!</p>", "en": "<p>Sortavala was an exceptional town in many ways in the pre-war period.</p><p>Its location on the northern shore of Lake Ladoga, close to the traditional song lands of Karelia, along with the town's lively and enterprising spirit, created excellent conditions for a diverse cultural life. It can be said that Sortavala's societal and cultural significance is akin to that of a town far greater in size.</p><p>The interview documentary sheds light on the cultural and intellectual life of Sortavala and its surroundings, its key figures and the everyday lives of its people from various perspectives. The narrators include experts on Sortavala as well as original residents who spent their youth in the town.</p><p>The documentary was written and directed by Marja Lampi, chair of the Sortavala Society, and it was produced in collaboration with film and television students from Metropolia University of Applied Sciences. Year of production: 2023.</p><p>Duration: 1 hour<br>Free entry!</p>" }, "name": { "fi": "Kulttuuria täynnä - muistoja Sortavalasta -dokumentti", "sv": "Dokumentärfilmen Kulttuuria täynnä – muistoja Sortavalasta", "en": "Full of Culture – Muistoja Sortavalasta, a Documentary" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66750/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }