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/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=54
{ "meta": { "count": 32070, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=55", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=53" }, "data": [ { "id": "kulke:67873", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494507, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T12:13:30.586782Z", "last_modified_time": "2026-01-16T12:13:30.586800Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780526.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494507/?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": "2026-01-16T12:13:30.463283Z", "last_modified_time": "2026-03-20T01:13:23.673349Z", "date_published": null, "start_time": "2026-03-04T08:00:00Z", "end_time": "2026-03-04T10: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": "Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!", "sv": "I fantasifullt utformade lekmiljöer får leken fritt spelrum!", "en": "In these imaginatively modified play environments, play gets to run wild!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/88CD7CA5441838461183F2283A084BC4/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/88CD7CA5441838461183F2283A084BC4/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/88CD7CA5441838461183F2283A084BC4/Art_games_a_space_for_play" }, "description": { "fi": "<p>Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!</p><p>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Leikille luodaan sysäys joka voi jatkua missä tahansa. Eri aistit huomioivat kokonaisuudet, leikittelevät taiteella ja asettavat asioiden mittasuhteita uudelleen.</p><p>Tilat jakautuvat kahteen osaan. Pesässä rauhoitutaan ja laskeudutaan maadoittavaan tunnelmaan. Aktivoivissa leikeissä leikitään vaihtuvien teemojen maailmoissa.</p><p>Molemmat tilat tarjoavat mahdollisuuden tukea lapsen ja aikuisen vuorovaikutusta sekä tutustumista toisiin aikuisiin ja lapsiin. Aktiivisessa tilassa toimii lisäksi leikittäjä.</p><p>Taideleikit on suunnattu 0-3-vuotiaille lapsille sekä heidän omalle vanhemmalle tai aikuiselle.</p><p>Ohjaus: Noora Puranen <br>Aika: 10–12 (nonstop) <br>Ikäryhmä: 0-3v<br>Kieli: suomi <br>Maksuton</p><p>Taideleikit Annantalossa<br>4.2. klo 10–12<br>18.2. klo 10–12<br>4.3. klo 10–12<br>25.3. klo 10–12<br>8.4. klo 10–12<br>22.4. klo 10–12</p>", "sv": "<p>I fantasifullt utformade lekmiljöer får leken fritt spelrum!</p><p>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Leken får en skjuts framåt som kan fortsätta var som helst. Sinnena uppfattar helheter, leker med konsten och omdefinierar proportionerna för saker och ting.</p><p>Lokalerna är indelade i två delar. Boet är en plats där man kan lugna ner sig och komma till ro i en jordande atmosfär. I de aktiverande lekarna leker deltagarna i världar med olika teman. Båda utrymmena erbjuder möjligheter att stödja samspelet mellan barnet och den vuxna samt lära känna andra barn och vuxna. I det aktiva utrymmet finns det också en lekledare.</p><p>Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen. <br>Regi: Noora Puranen <br>Tid: kl. 10–12 (non-stop) <br>Åldersgrupp: 0–3 år<br>Språk: finska</p><p>Avgiftsfritt</p>", "en": "<p>In these imaginatively modified play environments, play gets to run wild!</p><p>These art games enrich play and provide play ideas to take home. Play will get boosted with a drive that can continue anywhere. The different senses will perceive wholes, play with art and redefine the proportions of things.</p><p>The facilities will be divided into two spaces: one will be a nest, a place for calming down and settling into a grounding atmosphere, the other will host activating games that involve playing in worlds with changing themes. Both spaces will provide an opportunity to support child-adult interaction and to meet other adults and children. The active space will also feature a play instructor. <br>The art games are aimed at children aged 0–3 and their own parent or adult.</p><p>Instruction: Noora Puranen <br>Time: 10.00–12.00 (non-stop) <br>Age group: 0–3<br>Language: Finnish</p><p>Free of charge</p>" }, "name": { "fi": "Taideleikit – leikin oma tila – 0–3-v lapset aikuisen kanssa", "sv": "Konstlekar – en egen plats för lek – Barn 0–3 år tillsammans med en vuxen", "en": "Art games – a space for play – Children aged 0–3 with an adult" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67873/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68137", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494930, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-24T06:12:59.784204Z", "last_modified_time": "2026-02-24T06:12:59.784216Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785137.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494930/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-24T06:12:59.617624Z", "last_modified_time": "2026-03-20T01:13:23.509628Z", "date_published": null, "start_time": "2026-03-04T07: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": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3CC9665135B43787C8AD2CFC2A9403C4/Dagisbio_Solen_ar_en_gul_giraff", "sv": "http://www.vuotalo.fi/sv/evenemang/event/3CC9665135B43787C8AD2CFC2A9403C4/Dagisbio_Solen_ar_en_gul_giraff", "en": "http://www.vuotalo.fi/en/events/event/3CC9665135B43787C8AD2CFC2A9403C4/Dagisbio_Solen_ar_en_gul_giraff" }, "description": { "fi": "<p>Aurinko on keltainen kirahvi</p><p>Teksti: Jaana Wahlforss. Animaatio: Antonia Ringbom. Ohjaus: Jaana Wahlforss ja Antonia Ringbom. Musiikki: Tom Salomonsen. Kertoja: Asko Sarkola. Kesto 50 min. S. Kieli:ruotsi.</p><p>Vapaa pääsy mutta pakollinen paikanvaraus: Kultus.hel.fi</p>", "sv": "<p>Mikael Wahlforss har under årens lopp initierat och producerat animationsfilmer med tematiska innehåll. I mitten av 1990-talet beslöt han och Jaana Wahlforss att Epidem i fortsättningen skulle rikta in sig på produktion av tankeväckande animationsfilmer för barn. Idén var att utveckla koncept och idéer och sedan samproducera filmerna med olika finländska och internationella animationsstudior. Wahlforss producerade sammanlagt 36 kortfilmer om den Gula Giraffen (idé, manus och regi Jaana Wahlforss/grafik och regi Antonia Ringbom) där varje del innehöll en dikt, bla från Afrika och Asien, Syd- och Nord-Amerika samt olika Europeiska länder. Serien erhöll bl.a. internationella Unicefs pris.</p><p>Den här filmen från 1998 innehåller 10 st. 5 min. filmsnuttar, sammanlagd längd 50 min. Filmerna är; 1. Barnets dröm, 2. Trädet, 3. Oj, någonstans ifrån..., 4. Porträtt av en fågel, 5. Sam, 6. Bonguemba, 7. Mina pappa, din pappa, 8. De två systrarna, 9. Lekfulla moln, 10. Nocturne.</p><p>Text: Jaana Wahlforss. Animation: Antonia Ringbom. Regi: Jaana Wahlforss och Antonia Ringbom. Musik: Tom Salomonsen. Berättare: Asko Sarkola. Barntillåten. Språk: svenska.</p><p>Gratis deltagande men obligatorisk platsbokning via Kultus.hel.fi.</p>" }, "name": { "fi": "Dagisbio: Solen är en gul giraff", "sv": "Dagisbio: Solen är en gul giraff", "en": "Dagisbio: Solen är en gul giraff" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68137/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67184", "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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/event/kino-caisa-kulttuurikeskus-caisa-21109796/", "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109796/", "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109796/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494244, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-18T12:13:45.664178Z", "last_modified_time": "2025-12-18T12:13:45.664193Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778518.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494244/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-18T12:13:45.471076Z", "last_modified_time": "2026-03-20T01:13:23.313967Z", "date_published": null, "start_time": "2026-03-03T17: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": "WOMEN’S STORIES THROUGH DOCUMENTARY CINEMA", "sv": "Dokumentärserien March Through the Frame, som visas på Caisa, lyfter fram kvinnornas berättelser.", "en": "WOMEN’S STORIES THROUGH DOCUMENTARY CINEMA" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/07DC2EE02390784169E73B24F3AB4879/OMEGA_RISING_-_WOMEN_OF_THE_RASTAFARI", "sv": "http://www.caisa.fi/sv/evenemang/event/07DC2EE02390784169E73B24F3AB4879/OMEGA_RISING_-_WOMEN_OF_THE_RASTAFARI", "en": "http://www.caisa.fi/en/events/event/07DC2EE02390784169E73B24F3AB4879/OMEGA_RISING_-_WOMEN_OF_THE_RASTAFARI" }, "description": { "fi": "<p>WOMEN’S STORIES THROUGH DOCUMENTARY CINEMA</p><p>Emotional, weird, too sensitive, too much… Women who don’t follow normative scripts often pay a price for not conforming.</p><p>MARCH THROUGH THE FRAME is a four-week programme of documentaries where these women are centred as narrators in their own right. Drawing on personal and community archives, each Tuesday we celebrate the joy and strength in our collective refusals and journeys of self-discovery.</p><p>Kicking off the series is OMEGA RISING WOMEN OF THE RASTAFARI. This ground-breaking documentary was the first film to explore and challenge myths and stereotypes about the Rastafarian movement. It continues to be one of the most important visual archives of Rastafari women’s relationship to the movement and its development.</p><p>A self-taught camerawoman, D. Elmina “Sister D” Davis was a Rastafarian herself and a radical cultural worker. Poetry, mythology, archive footage, interviews, music and dance are skilfully folded into her film’s narrative, revealing the journey to higher consciousness for Jamaican and British Rastafarian women. Interviewees include reggae solo artist, Judy Mowatt, and a member of Bob Marley’s backing trio, The I Three.</p><p>English subtitles included. Duration 52 minutes.</p><p>Naiset, jotka eivät taivu yhteiskunnan normeihin, ajautuvat usein patriarkaatin, rasismin, ableismin ja heteronormatiivisuuden vuoksi yhteiskunnan marginaaleihin. March Through The Frame on neljän viikon mittainen dokumenttiohjelmisto, joka todistaa näitä tarinoita ja asettaa naiset keskiöön omien kertomustensa tekijöinä.</p><p>Olipa kyse punkin keinoin kapinoivista lesboista Isossa-Britanniassa, performanssitaiteilijan kiivaasta kritiikistä Japanin konservatiivista kulttuuria kohtaan, suorapuheisista naisista Jamaikan rastafari-liikkeen muovaajina tai argentiinalaisen elokuvantekijän voimakkaasta kuulonalenemaa käsittelevästä teoksesta, jokainen tarina todistaa feminististä ajatusta siitä, että henkilökohtainen on poliittista.</p><p>Suurinta osaa näistä dokumenteista ei ole aiemmin esitetty Suomessa. Kaikissa elokuvissa on englanninkieliset tekstitykset.</p><p>Ohjelmiston on kuratoinut kulttuurituottaja Adalmiina Erkkola, jota kiinnostaa elokuvan poliittinen potentiaali. Hän juontaa myös No Man’s Land -radio-ohjelmaa IDA Helsingissä.</p>", "sv": "<p>Dokumentärserien March Through the Frame, som visas på Caisa, lyfter fram kvinnornas berättelser.</p><p>Kvinnor som inte fogar sig efter samhällets normer drivs ofta ut i dess marginaler på grund av patriarkatet, rasism, funkofobi och heteronormativitet. March Through The Frame är fyra veckor av dokumentärer som vittnar om dessa berättelser och ställer kvinnorna i centrum för deras egna berättelser.</p><p>Oavsett om det handlar om lesbiska i Storbritannien som revolterar genom punken, en performancekonstnärs häftiga kritik mot den konservativa japanska kulturen, frispråkiga kvinnor som formar den jamaicanska rastafarirörelsen eller ett verk om en argentinsk filmskapares kraftiga hörselnedsättning, vittnar varje berättelse om den feministiska tanken att det personliga är politiskt.</p><p>De flesta av dessa dokumentärer har aldrig tidigare visats i Finland. Alla filmer har engelsk textning.</p><p>Kurator för programmet är kulturproducenten Adalmiina Erkkola, som är intresserad av filmens politiska potential. Hon leder också radioprogrammet No Man’s Land på IDA Helsinki.</p><p><b>Kino Caisa: Filmer i serien March Through the Frame</b><br>3 mars 2026 kl. 19 – Omega Rising: Women of the Rastafari<br>10 mars 2026 kl. 19 – Eat the Kimono<br>17 mars 2026 kl. 19 – Rebel Dykes<br>24 mars 2026 klo 19 – 8 Stories About My Hearing Loss</p>", "en": "<p>WOMEN’S STORIES THROUGH DOCUMENTARY CINEMA</p><p>Emotional, weird, too sensitive, too much… Women who don’t follow normative scripts often pay a price for not conforming.</p><p>MARCH THROUGH THE FRAME is a four-week programme of documentaries where these women are centred as narrators in their own right. Drawing on personal and community archives, each Tuesday we celebrate the joy and strength in our collective refusals and journeys of self-discovery.</p><p>Kicking off the series is OMEGA RISING WOMEN OF THE RASTAFARI. This ground-breaking documentary was the first film to explore and challenge myths and stereotypes about the Rastafarian movement. It continues to be one of the most important visual archives of Rastafari women’s relationship to the movement and its development.</p><p>A self-taught camerawoman, D. Elmina “Sister D” Davis was a Rastafarian herself and a radical cultural worker. Poetry, mythology, archive footage, interviews, music and dance are skilfully folded into her film’s narrative, revealing the journey to higher consciousness for Jamaican and British Rastafarian women. Interviewees include reggae solo artist, Judy Mowatt, and a member of Bob Marley’s backing trio, The I Three.</p><p>English subtitles included. Duration 52 minutes.</p><p>The programme is curated by Adalmiina Erkkola, a cultural producer interested in the political potential of film. They also host the No Man’s Land radio show at IDA Helsinki.</p>" }, "name": { "fi": "OMEGA RISING - WOMEN OF THE RASTAFARI – Kino Caisa: March Through the Frame", "sv": "OMEGA RISING - WOMEN OF THE RASTAFARI – Kino Caisa: March Through the Frame", "en": "OMEGA RISING - WOMEN OF THE RASTAFARI – Kino Caisa: March Through the Frame" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67184/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67733", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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/artist/helsingin-kulttuurikeskus-stoa/burning-bridges-hard-things-to-swallow-4035265/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/burning-bridges-hard-things-to-swallow-4035265/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/burning-bridges-hard-things-to-swallow-4035265/" }, "description": null, "price": { "fi": "17 € / 22 €", "sv": "17 € / 22 €", "en": "17 € / 22 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494076, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T13:12:56.807610Z", "last_modified_time": "2025-12-04T13:12:56.807624Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780638.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494076/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T13:12:56.744712Z", "last_modified_time": "2026-03-20T01:13:23.193805Z", "date_published": null, "start_time": "2026-03-03T16: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": "Esitys on rakkauskirje tankotanssille, liian vaikeille tempuille ja niille erityisille treenikavereille, jotka eivät koskaan petä.", "sv": "Föreställningen är ett kärleksbrev till stångdans, för svåra trick och de speciella träningskompisar som aldrig sviker.", "en": "The performance is a love letter to pole dancing, to overly difficult tricks and to those special workout buddies who never let you down." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/02066A5843FB8383BB2FF59989A82E16/Burning_Bridges_Hard_things_to_swallow", "sv": "http://www.stoa.fi/sv/evenemang/event/02066A5843FB8383BB2FF59989A82E16/Burning_Bridges_Hard_things_to_swallow", "en": "http://www.stoa.fi/en/events/event/02066A5843FB8383BB2FF59989A82E16/Burning_Bridges_Hard_things_to_swallow" }, "description": { "fi": "<p>Esitys on rakkauskirje tankotanssille, liian vaikeille tempuille ja niille erityisille treenikavereille, jotka eivät koskaan petä.</p><p>Camilla Rantasen, Pipsa Enqvistin ja työryhmän teos on koreografinen löytöretki tankotanssin liikkeellisen historian ja erilaisten tankojen läpi. Esitys yrittää ymmärtää tankoa välineenä ja tanssiparina: tankoon voi tukeutua, mutta se voi olla myös yksi kompleksisimmista akrobatiavälineistä. Voiko tankoa käyttää väärin, odotusten vastaisesti, ihmetellen? Onko tanko muutakin kuin metalliputki?</p><p>Esityksessä treenataan yhdessä, pyöritään lujaa, kivetään korkealle ja joudutaan ehkä näyttämön nielemäksi. Työläimpiä temppuja ei ole tarkoituskaan hallita heti – ei elämässä eikä harjoitussalillakaan. Lojaalein treenikaveri auttaa, yhdessä taivutaan pidemmälle. Eikö maailmassa olekin heti vähän enemmän valoa, kun on joku, josta ottaa tukea?</p><p>Esiintyjät: Milla-Mari Hellman, Camilla Rantanen<br>Koreografi: Camilla Rantanen Dramaturgi: Pipsa Enqvist<br>Valo- ja tilasuunnittelija: Teo Lanerva<br>Äänisuunnittelija: Vili Pääkkö</p><p>Camilla Rantanen ja Pipsa Enqvist muodostavat yhdessä Burning Bridges kollektiivin. Ihmisinä heitä yhdistää dramaturgian koulutuksen lisäksi jaettu käsitys esseemäisestä näyttämöestetiikasta, intohimo laajaan taustatyöhön, oikeudenmukaisuus ja yhteiset viholliset.</p><p>Teosta Hard Things To Swallow’ta varten Rantanen ja Enqvist ovat koollekutsuneet joukon arvostamiaan taiteilijoita ja ystäviä Teo Lanervan, Vili Pääkön ja Milla-Mari Hellmanin. Työryhmän jäsenet edustavat uutta esittävän taiteen tekijäsukupolvea. Työryhmän jäsenillä on keskenään eripituisia yhteistyöhistorioita.</p><p>Teosta tukevat Suomen kulttuurirahasto, Zodiak Uuden tanssin keskus, Hangö Teaterträff, Koneen säätiö ja Rock the Pole.</p>", "sv": "<p>Föreställningen är ett kärleksbrev till stångdans, för svåra trick och de speciella träningskompisar som aldrig sviker.</p><p>Camilla Rantanens, Pipsa Enqvists och arbetsgruppens verk är en koreografisk upptäcktsresa genom stångdansens rörelsehistoria och de olika typerna av stänger. Föreställningen försöker förstå stången som ett redskap och som en danspartner: man kan stödja sig mot den, men den kan också vara ett av de mest komplexa akrobatiska redskapen. Kan stången användas fel, mot förväntningarna, med förundran? Är stången någonting mer än bara ett metallrör?</p><p>I föreställningen tränar man tillsammans, snurrar fort, klättrar högt och kanske uppslukas av scenen. Det är inte meningen att man ska behärska de svåraste tricken genast – varken i livet eller i träningen. Den mest lojala träningskompisen hjälper till, tillsammans når vi längre. Blir världen inte genast lite ljusare när man har någon att stödja sig mot?</p><p>Språk: ordlös</p><p>På scenen: Milla-Mari Hellman, Camilla Rantanen</p><p>Koreograf: Camilla Rantanen <br>Dramaturg: Pipsa Enqvist<br>Ljus- och rumsdesigner: Teo Lanerva<br>Ljuddesigner: Vili Pääkkö</p><p>Camilla Rantanen och Pipsa Enqvist bildar tillsammans kollektivet Burning Bridges. Som personer delar de, förutom sin dramaturgiska utbildning, en gemensam förståelse för essäistisk scenestetik, en passion för omfattande bakgrundsarbete, en känsla för rättvisa och gemensamma fiender. För Hard Things To Swallow har Rantanen och Enqvist samlat en grupp respekterade artister och vänner, Teo Lanerva, Vili Pääkö och Milla-Mari Hellman. Medlemmarna i arbetsgruppen representerar en ny generation av scenkonstnärer. Medlemmarna i arbetsgruppen har en historia av samarbeten av varierande längd.</p><p>Verket stöds av Finska kulturfonden, Zodiak Uuden tanssin keskus, Hangö Teaterträff, Kone-stiftelsen och Rock the Pole.</p>", "en": "<p>The performance is a love letter to pole dancing, to overly difficult tricks and to those special workout buddies who never let you down.</p><p>The work by Camilla Rantanen, Pipsa Enqvist and the team is a choreographic journey of discovery through the history of pole dance in motion and different types of poles. The performance tries to understand the pole as an instrument and as a dance partner: it can be relied on, but it can also be one of the most complex acrobatic tools. Can the pole be misused, by defying expectations, by wondering? Is the pole more than just a metal tube?</p><p>The performance involves training together, spinning fast, climbing high and possibly being swallowed up by the stage. The most difficult tricks are not meant to be mastered immediately – either in life or in the gym. The most loyal training buddy will help you, and together you can bend further. Isn't the world a little brighter when you have someone to rely on?</p><p>Language: non-verbal</p><p>Performers: Milla-Mari Hellman, Camilla Rantanen<br>Choreography: Camilla Rantanen <br>Dramaturgy: Pipsa Enqvist<br>Lighting and space design: Teo Lanerva<br>Sound design: Vili Pääkkö</p><p>Together, Camilla Rantanen and Pipsa Enqvist form the Burning Bridges collective. As people, they share a common understanding of essayistic stage aesthetics, a passion for extensive background work, a sense of justice and common enemies, in addition to their dramaturgical training. For Hard Things To Swallow, Rantanen and Enqvist have assembled a group of respected artists and friends: Teo Lanerva, Vili Pääkkö and Milla-Mari Hellman. The members of the creative team represent a new generation of performing artists. The team members have a history of cooperation of varying lengths.</p><p>The work is supported by the Finnish Cultural Foundation, the Zodiak Center for New Dance, Hangö Teaterträff, the Kone Foundation and Rock the Pole.</p>" }, "name": { "fi": "Burning Bridges: Hard things to swallow", "sv": "Burning Bridges: Hard things to swallow", "en": "Burning Bridges: Hard things to swallow" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67733/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68117", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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:732/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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": 1494885, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-17T11:13:19.918369Z", "last_modified_time": "2026-02-17T11:13:19.918389Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785600.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494885/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-17T11:13:19.785312Z", "last_modified_time": "2026-03-20T01:13:23.046820Z", "date_published": null, "start_time": "2026-03-03T15:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maailman luontopäivänä 3.3.2026 Helsingissä voi kokea taidetta, joka puhuu luonnon puolesta." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/8773C15CCCCD5F736FA8CFA89AB25D4B/Eliokuntalaisten_manifesti_Espan_lavalla", "sv": "http://www.espanlava.fi/sv/evenemang/event/8773C15CCCCD5F736FA8CFA89AB25D4B/Eliokuntalaisten_manifesti_Espan_lavalla", "en": "http://www.espanlava.fi/en/events/event/8773C15CCCCD5F736FA8CFA89AB25D4B/Eliokuntalaisten_manifesti_Espan_lavalla" }, "description": { "fi": "<p>Maailman luontopäivänä 3.3.2026 Helsingissä voi kokea taidetta, joka puhuu luonnon puolesta.</p><p>Eliökuntalaisten manifesti kutsuu kaikenikäiset mukaan maksuttomiin tapahtumiin, esityksiin ja kohtaamisiin eri puolilla kaupunkia.</p><p>Kello 17.10 Eliökuntalaisten manifesti liikkuu kohti Espan lavaa Helsingin kaupunginmuseolta <b>Aura of Puppetsin</b> jättinukke Varpusen johdolla. Luvassa on liikkuva installaatio ja elegia uhanalaiselle varpuselle. Luvassa on liikkuva installaatio ja elegia uhanalaiselle varpuselle. Varpusta saattavat Teatterikoulu ILMI Ö:n taiteen perusopetuksen lapset ja nuoret. Perillä Espan lavalla ollaan noin kello 17.25.</p><p>Kello 17.15 alkaen Espan lavan läheisyydessä on Seikkailutaidekoulun työpaja, jossa tehdään postikortteja eliökuntalaisille.</p><p>Kello 17.30 nähdään Eliökuntalaisten manifestin loppuhuipennus Espan lavalla!<br>Tervetuliaispuhe: liito-oravat Papana ja Norkko<br>Manifestin tulkitsee näyttelijä <b>Seela Sella</b><br>Manifestin luovutus Helsingin kulttuurijohtaja<b>Mari Männistölle</b><br><b>Mimmit</b> esittää maistiaisia uudelta Luonnonsuojelun supersankarit -albumilta.<br>Harmonikkataiteilija, säveltäjä <b>Kimmo Pohjonen</b> esittää kappaleet Ahneuden humppa ja Luonnon voimaa.<br>Liito-oravat jututtavat Eliökuntalaisten manifestin kirjoittajaa, kirjailija Anni Kytömäkeä.<br>Seikkailutaidekoulun työpaja: Postikortti eliökuntalaisille <br>Vapaa pääsy</p><p><b>Eliökuntalaisten manifesti</b><br><u><a href=\"https://tapahtumat.hel.fi/fi/articles/kulttuuri-ja-taide/eliokuntalaisten-manifesti-kulkee-halki-helsingin-maailman-luontopaivana-3-3-luvassa-maksuttomia-tapahtumia-kaikenikaisille\">Lue lisää Eliökuntalaisten manifestista ja katso koko tapahtumapäivän ohjelma</a></u></p>" }, "name": { "fi": "Eliökuntalaisten manifesti Espan lavalla", "sv": "Eliökuntalaisten manifesti Espan lavalla", "en": "Eliökuntalaisten manifesti Espan lavalla" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68117/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68080", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494796, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-09T07:13:06.767570Z", "last_modified_time": "2026-02-09T07:13:06.767584Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777513.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494796/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-09T07:13:06.623608Z", "last_modified_time": "2026-03-20T01:13:22.906203Z", "date_published": null, "start_time": "2026-03-03T12:00:00Z", "end_time": "2026-03-03T13: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": "Tule mukaan esitystaiteen työpajaan, jossa Eliökuntalaisten manifestin hengessä niin isot kuin pienetkin olevaiset koetaan yhdessä!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/43E5809674FFA297CEEF72AA2E5C5313/Eliokuntalaisten_tyopaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/43E5809674FFA297CEEF72AA2E5C5313/Eliokuntalaisten_tyopaja", "en": "http://www.vuotalo.fi/en/events/event/43E5809674FFA297CEEF72AA2E5C5313/Eliokuntalaisten_tyopaja" }, "description": { "fi": "<p>Tule mukaan esitystaiteen työpajaan, jossa Eliökuntalaisten manifestin hengessä niin isot kuin pienetkin olevaiset koetaan yhdessä!</p><p>Työpaja perustuu Toisissa tiloissa -ryhmän harjoitteisiin, joissa eläydytään yhdessä tehtävien kehollisten harjoitteiden avulla eliökuntalaisten maailmaan; millaista on uida kalaparvessa, kasvattaa juuret kuin puu tai olla yhteydessä rihmastojen kautta kuin sienet? Entä miten jäävuoret liikkuvat?</p><p>Harjoitteet perustuvat yksinkertaisiin ruumiintekniikoihin ja mielikuvitteluun. Työpajan lopuksi on pieni keskustelu.</p><p>Kenelle? Työpaja on suunnattu kaikenikäisille aikuisille ja yli 12-vuotiaille nuorille. Voit tulla sellaisena kuin olet; aikaisempaa kokemusta ryhmän työskentelystä ei tarvita.</p><p>Missä ja milloin? Vuotalon Vuosalissa 3.3.2026 klo 14–15.</p><p>Mitä mukaan? Päälle vaatteet, joissa on mukava liikkua.</p><p>Ilmoittaudu mukaan 26.2. mennessä salla.fornaro@hel.fi tai soita 040 537 1520!</p><p>Työpajan kieli: suomi</p><p>Hinta: 0 €</p><p><b>Eliökuntalaisten manifesti</b><br><u><a href=\"https://tapahtumat.hel.fi/fi/articles/kulttuuri-ja-taide/eliokuntalaisten-manifesti-kulkee-halki-helsingin-maailman-luontopaivana-3-3-luvassa-maksuttomia-tapahtumia-kaikenikaisille\">Lue lisää Eliökuntalaisten manifestista ja katso koko tapahtumapäivän ohjelma</a></u></p><p>Lue lisää Toisissa tiloissa-ryhmästä: https://toisissatiloissa.net</p>" }, "name": { "fi": "Eliökuntalaisten työpaja", "sv": "Eliökuntalaisten työpaja", "en": "Eliökuntalaisten työpaja" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68080/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68115", "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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494882, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-17T07:13:22.886618Z", "last_modified_time": "2026-02-17T07:13:22.886633Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781393.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494882/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-17T07:13:22.700686Z", "last_modified_time": "2026-03-20T01:13:22.776419Z", "date_published": null, "start_time": "2026-03-03T08: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": "Maailman luontopäivänä 3.3.2026 Helsingissä voi kokea taidetta, joka puhuu luonnon puolesta." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5FFB8E2ACD4180713ACF5AA049F08F6E/Eliokuntalaisten_manifesti_Matajoen_Mutterilaiturilla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5FFB8E2ACD4180713ACF5AA049F08F6E/Eliokuntalaisten_manifesti_Matajoen_Mutterilaiturilla", "en": "http://www.kanneltalo.fi/en/events/event/5FFB8E2ACD4180713ACF5AA049F08F6E/Eliokuntalaisten_manifesti_Matajoen_Mutterilaiturilla" }, "description": { "fi": "<p>Maailman luontopäivänä 3.3.2026 Helsingissä voi kokea taidetta, joka puhuu luonnon puolesta.</p><p>Eliökuntalaisten manifesti kutsuu kaikenikäiset mukaan maksuttomiin tapahtumiin, esityksiin ja kohtaamisiin eri puolilla kaupunkia.</p><p>Tule mukaan seuraamaan Eliökuntalaisten manifestin julkistuskiertueen lähtöohjelmaa Mätäjoen Mutterilaiturille! Mutterilaituri sijaitsee noin 10 minuutin kävelymatkan päässä Kanneltalosta, osoitteessa Polkkakuja.</p><p><b>3.3.klo 10 Mätäjoen Mutterilaituri</b><br>Tervetulosanat, liito-oravat Papana ja Norkko <br>Eliökuntalaisten manifesti, kirjailija <b>Anni Kytömäki</b> <br>Apulaispormestari <b>Paavo Arhinmäen</b> tervehdys.</p><p>Lisäksi paikalla on Seikkailutaidekoulun työpaja, jossa tehdään postikortteja eliökuntalaisille. <br> <br>Manifesti jatkaa matkaansa apulaispormestari Arhinmäen mukana Malmille bussilla 553.</p><p><b>Eliökuntalaisten manifesti</b><br><u><a href=\"https://tapahtumat.hel.fi/fi/articles/kulttuuri-ja-taide/eliokuntalaisten-manifesti-kulkee-halki-helsingin-maailman-luontopaivana-3-3-luvassa-maksuttomia-tapahtumia-kaikenikaisille\">Lue lisää Eliökuntalaisten manifestista ja katso koko tapahtumapäivän ohjelma</a></u></p>" }, "name": { "fi": "Eliökuntalaisten manifesti Mätäjoen Mutterilaiturilla", "sv": "Eliökuntalaisten manifesti Mätäjoen Mutterilaiturilla", "en": "Eliökuntalaisten manifesti Mätäjoen Mutterilaiturilla" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68115/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67435", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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": 1494075, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T13:12:56.390747Z", "last_modified_time": "2025-12-04T13:12:56.390762Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781254.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494075/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T13:12:56.259053Z", "last_modified_time": "2026-03-20T01:13:22.430513Z", "date_published": null, "start_time": "2026-03-02T16: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": "Tällä kertaa Kanneltalossa käydään paneelikeskustelu kirjailijan työstä kolmen kirjailijan kanssa.", "sv": "Den här gången blir det en paneldiskussion om författarens arbete med tre författare på Gamlasgården.", "en": "This time, Kanneltalo will host a panel discussion on the work of a writer with three authors." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/20DA99CE341C3CCA8C99BD60A7A5D1BB/Kirjailijavieraina_Juha_Itkonen_Helmi_Kekkonen_ja_Jani_Saxell", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/20DA99CE341C3CCA8C99BD60A7A5D1BB/Forfattarbesok_Juha_Itkonen_Helmi_Kekkonen_och_Jani_Saxell", "en": "http://www.kanneltalo.fi/en/events/event/20DA99CE341C3CCA8C99BD60A7A5D1BB/Guest_authors_Juha_Itkonen_Helmi_Kekkonen_and_Jani_Saxell" }, "description": { "fi": "<p>Tällä kertaa Kanneltalossa käydään paneelikeskustelu kirjailijan työstä kolmen kirjailijan kanssa.</p><p>Helmi Kekkonen ja Juha Itkonen keskustelevat Jani Saxellin johdolla. Helmi Kekkosen uusin teos Näin minä sen kirjoitin (2025), Juha Itkosen Kjell Westön kanssa yhteistyössä kirjoitettu 7 + 7 - Levottoman ajan kirjeitä (2019) sekä Jani Saxellin Aiheiden kirja (2024) ovat keskustelun ytimessä.</p><p>Juha Itkonen on yksi kotimaisen nykykirjallisuuden näkyvimmistä nimistä. Jo esikoisromaanillaan Myöhempien aikojen pyhiä (2003) lukijat valloittaneen kirjailijan tuotantoon kuuluu romaanien lisäksi mm. kirjeenvaihtokirja, näytelmiä ja audiodraama. Itkonen on saanut kirjallisuuden valtionpalkinnon, Kalevi Jäntin - ja Veijo Meri -palkinnon sekä ollut kaksi kertaa ehdolla Finlandia-palkinnon saajaksi. Kiitetyn kirjailijan ja aktiivisen yhteiskunnallisen keskustelijan Teoriani perheestä (2023) ilmestyi painetun kirjan lisäksi myös Itkosen itsensä lukemana äänikirjana. Sivuraide-audiodraama ilmestyi vuonna 2024.</p><p>Helmi Kekkonen on kirjailija, toimittaja ja luovan kirjoittamisen opettaja. Kekkonen on koulutukseltaan filosofian maisteri. Hän opiskeli pääaineena yleistä kirjallisuustiedettä ja sivuaineena luovaa kirjoittamista Turun yliopistossa. Kekkosen kolmas romaani Vieraat (2016) oli Runeberg-palkintoehdokkaana vuonna 2017. Hänen viides romaaninsa Liv! oli kaunokirjallisuuden Finlandia-palkintoehdokkaana vuonna 2024.</p><p>Jani Saxell on kirjailija, toimittaja ja kirjallisuuden opettaja. Hänen teoksilleen on ominaista yhteiskunnallisuus sekä mielikuvituksellisten ja todellisten tapahtumien taitava sekoittaminen. Hänen kolme romaaniaan Unenpäästäjä Florian (2010), Sotilasrajan unet (2014) ja Tuomiopäivän karavaani (2017) sijoittuivat pääasiassa entisen Jugoslavian maihin. Tuomiopäivän karavaani voitti vuoden 2018 Tähtivaeltaja-palkinnon. Helsinki Underground (2020) ja Uuden ihmisen kaupunki (2023) palaavat kirjailijan kotikaupunkiin.</p><p>Vapaa pääsy</p>", "sv": "<p>Den här gången blir det en paneldiskussion om författarens arbete med tre författare på Gamlasgården.</p><p>Helmi Kekkonen och Juha Itkonen diskuterar under ledning av Jani Saxell. Helmi Kekkonens senaste verk Näin minä sen kirjoitin (2025), Juha Itkonens 7 + 7 – Levottoman ajan kirjeitä (2019), som han skrev i samarbete med Kjell Westö, och Jani Saxells Aiheiden kirja (2024) står i centrum för samtalet.</p><p>Juha Itkonen är ett av de mest framträdande namnen i den finska samtidslitteraturen. Författaren, som fångade publiken redan med sin debutroman Myöhempien aikojen pyhiä (2003), har förutom romaner bland annat skrivit en brevväxlingsbok, pjäser och ett audiodrama. Itkonen har tilldelats statspriset för litteratur, Kalevi Jäntti-priset och Veijo Meri-priset samt varit nominerad till Finlandiapriset två gånger. Den hyllade författarens och aktiva samhällsdebattörens verk Teoriani perheestä (2023) gavs ut både som tryckt bok och som ljudbok inläst av Itkonen själv. Audiodramat Sivuraide kom år 2024.</p><p>Helmi Kekkonen är författare, journalist och lärare i kreativt skrivande. Till utbildningen är Kekkonen filosofie magister. Hon studerade allmän litteraturvetenskap som huvudämne och skrivande som biämne vid Åbo universitet. Kekkonens tredje roman Vieraat (2016) nominerades till Runebergspriset 2017. Hennes femte roman Liv! var nominerad till Finlandiapriset för skönlitteratur 2024.</p><p>Jani Saxell är författare, journalist och lärare i litteratur. Hans verk kännetecknas av en samhällelig dimension och en skicklig blandning av påhittade och verkliga händelser. Hans tre romaner Unenpäästäjä Florian (2010), Sotilasrajan unet (2014) och Tuomiopäivän karavaani (2017) utspelar sig huvudsakligen i det forna Jugoslavien. Tuomiopäivän karavaani vann Tähtivaeltaja-priset 2018. Helsinki Underground (2020) och Uuden ihmisen kaupunki (2023) återvänder till författarens hemstad.</p><p>Fritt inträde</p>", "en": "<p>This time, Kanneltalo will host a panel discussion on the work of a writer with three authors.</p><p>Helmi Kekkonen and Juha Itkonen will participate in the discussion with Jani Saxell. The discussion will be centred around Helmi Kekkonen’s latest work, ‘Näin minä sen kirjoitin’ (2025), Juha Itkonen’s ‘7 + 7 - Levottoman ajan kirjeitä’ (2019) written together with Kjell Westö and Jani Saxell’s ‘Aiheiden kirja’ (2024).</p><p>Juha Itkonen is one of the most prominent names in Finnish contemporary literature. The author, who already captivated readers with his debut novel Myöhempien aikojen pyhiä (2003), has written a book of correspondence, plays and an audio drama in addition to novels. Itkonen has been awarded the State Prize for Literature, the Kalevi Jäntti Prize and the Veijo Meri Prize, and he has been nominated for the Finlandia Prize twice. In addition to a printed book, Teoriani perheestä (2023), by the acclaimed author and active social debater, was also published as an audiobook read by Itkonen himself. The Sivuraide audio drama was released in 2024.</p><p>Helmi Kekkonen is a writer, journalist and creative writing teacher. Kekkonen has a Master's degree in philosophy. She majored in comparative literature, with a minor in creative writing at the University of Turku. Kekkonen's third novel Vieraat (2016) was nominated for the Runeberg Prize in 2017. Her fifth novel Liv! was a Finlandia Prize in Fiction nominee in 2024.</p><p>Jani Saxell is a writer, journalist and literature teacher. His works are characterised by their social nature and his skilful blending of imaginary and real events. His three novels Unenpäästäjä Florian (2010), Sotilasrajan unet (2014) and Tuomiopäivän karavaani (2017) were mainly set in the countries of the former Yugoslavia. Tuomiopäivän karavaani won the Tähtivaeltaja Award in 2018. Helsinki Underground (2020) and Uuden ihmisen kaupunki (2023) mark a return to the author’s hometown.</p><p>Free entry</p>" }, "name": { "fi": "Kirjailijavieraina Juha Itkonen, Helmi Kekkonen ja Jani Saxell – Maksuttomat maanantait", "sv": "Författarbesök: Juha Itkonen, Helmi Kekkonen och Jani Saxell – Avgiftsfria måndagar", "en": "Guest authors Juha Itkonen, Helmi Kekkonen and Jani Saxell – Free Mondays" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67435/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67789", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-793/?format=api" }, "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": 1494620, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-26T09:12:47.759674Z", "last_modified_time": "2026-01-26T09:12:47.759686Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777678.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494620/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-26T09:12:47.655750Z", "last_modified_time": "2026-03-20T01:13:22.310240Z", "date_published": null, "start_time": "2026-03-02T14:00:00Z", "end_time": "2026-03-02T16: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": "Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.", "sv": "På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.", "en": "On Monday afternoons, we will be doing arts and crafts and spending fun time together." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E58444A7FE7BE23A098566D7EB26F78B/Nuorten_suunnittelemat_iltapaivat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E58444A7FE7BE23A098566D7EB26F78B/Eftermiddagar_planerade_av_unga", "en": "http://www.vuotalo.fi/en/events/event/E58444A7FE7BE23A098566D7EB26F78B/Afternoons_planned_by_young_people" }, "description": { "fi": "<p>Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.</p><p>Vuosaarelaiset nuoret ovat ideoineet tekemistä koulu- tai työpäivän päätteeksi. Kaikki ovat tervetulleita, ikään katsomatta. Iltapäivät ovat ilmaisia ja tarvittavat materiaalit saa paikan päältä.</p><p>Pistäydy tai viihdy vaikka koko aika!</p><p>Työpajoja ohjaavat nuorisotyöntekijä sekä nuoret itse. Tarkemmasta ohjelmasta kerrotaan Vuotalon aulassa ja somekanavissa viimeistään viikkoa ennen.</p><p>Vapaa pääsy</p><p>Huom! Ei järjestetä 6.4.2026.</p>", "sv": "<p>På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.</p><p>Ungdomar i Nordsjö har kommit med idéer om vad man kan göra när skol- eller arbetsdagen är slut. Alla är välkomna, oavsett ålder. Eftermiddagarna är kostnadsfria och det nödvändiga materialet finns tillgängligt på plats. Titta in eller stanna hela tiden!</p><p>Workshopparna leds av en ungdomsledare och ungdomarna själva. Det detaljerade programmet publiceras i Nordhusets aula och på sociala medier minst en vecka innan</p>", "en": "<p>On Monday afternoons, we will be doing arts and crafts and spending fun time together.</p><p>Young people in Vuosaari have come up with ideas for things to do at the end of the school or workday. All are welcome, regardless of age. The afternoons are free of charge and the materials needed are available on-site. Drop by for a moment or stay the whole time!</p><p>The workshops are run by a youth worker and the young people themselves. The detailed programme will be posted in the Vuotalo lobby and on social media at least one week in advance.</p>" }, "name": { "fi": "Nuorten suunnittelemat iltapäivät – Operaatio Pulssi", "sv": "Eftermiddagar planerade av unga – Operaatio Pulssi", "en": "Afternoons planned by young people – Operation Pulse!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67789/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68112", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" } ], "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": 1494870, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-16T09:13:19.584980Z", "last_modified_time": "2026-02-16T09:13:19.584996Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785565.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494870/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-16T09:13:19.458797Z", "last_modified_time": "2026-03-20T01:13:22.179148Z", "date_published": null, "start_time": "2026-03-02", "end_time": "2026-03-31", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FD0870780D9E6602939DE519E304C79D/Haagan_Taideseura_Suvi_Innasen_teoksia_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FD0870780D9E6602939DE519E304C79D/Haagan_Taideseura_Suvi_Innasen_teoksia_", "en": "http://www.kanneltalo.fi/en/events/event/FD0870780D9E6602939DE519E304C79D/Haagan_Taideseura_Suvi_Innasen_teoksia_" }, "description": { "fi": "<p>Olen ollut Haagan Taideseuran jäsen vuodesta 1993. Alkuun maalasin temperaväreillä, joiden käyttöön ihastuin Tapio Tikkasen kurssilla. Nykyisin maalaan akvarelliväreillä. Usein teen näistä maalauksista soveltuvin osin metalligrafiikan työn.</p><p>Näyttelyni koostuu useiden vuosien aikana grafiikan eri tekniikoilla tehdyistä töistä. Haagan Taideseura viettää toimintansa kuudettakymmenettä vuotta. Ensimmäinen grafiikan kurssini aloitin vuonna 1996, eli vietän tuplajuhlavuotta.</p><p>Haagan Taideseura on Helsingissä vuodesta 1966 toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura. Lisätiedot Haagan Taideseura ry</p><p>Kahvilan vitriinit<br>Vapaa pääsy</p>" }, "name": { "fi": "Haagan Taideseura: Suvi Innasen teoksia", "sv": "Haagan Taideseura: Suvi Innasen teoksia", "en": "Haagan Taideseura: Suvi Innasen teoksia" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68112/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67732", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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/artist/helsingin-kulttuurikeskus-stoa/burning-bridges-hard-things-to-swallow-4035265/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/burning-bridges-hard-things-to-swallow-4035265/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/burning-bridges-hard-things-to-swallow-4035265/" }, "description": null, "price": { "fi": "17 € / 22 €", "sv": "17 € / 22 €", "en": "17 € / 22 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494074, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T13:12:56.087214Z", "last_modified_time": "2025-12-04T13:12:56.087231Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780636.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494074/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T13:12:55.988101Z", "last_modified_time": "2026-03-20T01:13:22.045180Z", "date_published": null, "start_time": "2026-03-01T13: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": "Esitys on rakkauskirje tankotanssille, liian vaikeille tempuille ja niille erityisille treenikavereille, jotka eivät koskaan petä.", "sv": "Föreställningen är ett kärleksbrev till stångdans, för svåra trick och de speciella träningskompisar som aldrig sviker.", "en": "The performance is a love letter to pole dancing, to overly difficult tricks and to those special workout buddies who never let you down." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5F7BF950249D1CD2B3F1EE533C20F874/Burning_Bridges_Hard_things_to_swallow", "sv": "http://www.stoa.fi/sv/evenemang/event/5F7BF950249D1CD2B3F1EE533C20F874/Burning_Bridges_Hard_things_to_swallow", "en": "http://www.stoa.fi/en/events/event/5F7BF950249D1CD2B3F1EE533C20F874/Burning_Bridges_Hard_things_to_swallow" }, "description": { "fi": "<p>Esitys on rakkauskirje tankotanssille, liian vaikeille tempuille ja niille erityisille treenikavereille, jotka eivät koskaan petä.</p><p>Camilla Rantasen, Pipsa Enqvistin ja työryhmän teos on koreografinen löytöretki tankotanssin liikkeellisen historian ja erilaisten tankojen läpi. Esitys yrittää ymmärtää tankoa välineenä ja tanssiparina: tankoon voi tukeutua, mutta se voi olla myös yksi kompleksisimmista akrobatiavälineistä. Voiko tankoa käyttää väärin, odotusten vastaisesti, ihmetellen? Onko tanko muutakin kuin metalliputki?</p><p>Esityksessä treenataan yhdessä, pyöritään lujaa, kivetään korkealle ja joudutaan ehkä näyttämön nielemäksi. Työläimpiä temppuja ei ole tarkoituskaan hallita heti – ei elämässä eikä harjoitussalillakaan. Lojaalein treenikaveri auttaa, yhdessä taivutaan pidemmälle. Eikö maailmassa olekin heti vähän enemmän valoa, kun on joku, josta ottaa tukea?</p><p>Esiintyjät: Milla-Mari Hellman, Camilla Rantanen<br>Koreografi: Camilla Rantanen Dramaturgi: Pipsa Enqvist<br>Valo- ja tilasuunnittelija: Teo Lanerva<br>Äänisuunnittelija: Vili Pääkkö</p><p>Camilla Rantanen ja Pipsa Enqvist muodostavat yhdessä Burning Bridges kollektiivin. Ihmisinä heitä yhdistää dramaturgian koulutuksen lisäksi jaettu käsitys esseemäisestä näyttämöestetiikasta, intohimo laajaan taustatyöhön, oikeudenmukaisuus ja yhteiset viholliset.</p><p>Teosta Hard Things To Swallow’ta varten Rantanen ja Enqvist ovat koollekutsuneet joukon arvostamiaan taiteilijoita ja ystäviä Teo Lanervan, Vili Pääkön ja Milla-Mari Hellmanin. Työryhmän jäsenet edustavat uutta esittävän taiteen tekijäsukupolvea. Työryhmän jäsenillä on keskenään eripituisia yhteistyöhistorioita.</p><p>Teosta tukevat Suomen kulttuurirahasto, Zodiak Uuden tanssin keskus, Hangö Teaterträff, Koneen säätiö ja Rock the Pole.</p>", "sv": "<p>Föreställningen är ett kärleksbrev till stångdans, för svåra trick och de speciella träningskompisar som aldrig sviker.</p><p>Camilla Rantanens, Pipsa Enqvists och arbetsgruppens verk är en koreografisk upptäcktsresa genom stångdansens rörelsehistoria och de olika typerna av stänger. Föreställningen försöker förstå stången som ett redskap och som en danspartner: man kan stödja sig mot den, men den kan också vara ett av de mest komplexa akrobatiska redskapen. Kan stången användas fel, mot förväntningarna, med förundran? Är stången någonting mer än bara ett metallrör?</p><p>I föreställningen tränar man tillsammans, snurrar fort, klättrar högt och kanske uppslukas av scenen. Det är inte meningen att man ska behärska de svåraste tricken genast – varken i livet eller i träningen. Den mest lojala träningskompisen hjälper till, tillsammans når vi längre. Blir världen inte genast lite ljusare när man har någon att stödja sig mot?</p><p>Språk: ordlös</p><p>På scenen: Milla-Mari Hellman, Camilla Rantanen</p><p>Koreograf: Camilla Rantanen <br>Dramaturg: Pipsa Enqvist<br>Ljus- och rumsdesigner: Teo Lanerva<br>Ljuddesigner: Vili Pääkkö</p><p>Camilla Rantanen och Pipsa Enqvist bildar tillsammans kollektivet Burning Bridges. Som personer delar de, förutom sin dramaturgiska utbildning, en gemensam förståelse för essäistisk scenestetik, en passion för omfattande bakgrundsarbete, en känsla för rättvisa och gemensamma fiender. För Hard Things To Swallow har Rantanen och Enqvist samlat en grupp respekterade artister och vänner, Teo Lanerva, Vili Pääkö och Milla-Mari Hellman. Medlemmarna i arbetsgruppen representerar en ny generation av scenkonstnärer. Medlemmarna i arbetsgruppen har en historia av samarbeten av varierande längd.</p><p>Verket stöds av Finska kulturfonden, Zodiak Uuden tanssin keskus, Hangö Teaterträff, Kone-stiftelsen och Rock the Pole.</p>", "en": "<p>The performance is a love letter to pole dancing, to overly difficult tricks and to those special workout buddies who never let you down.</p><p>The work by Camilla Rantanen, Pipsa Enqvist and the team is a choreographic journey of discovery through the history of pole dance in motion and different types of poles. The performance tries to understand the pole as an instrument and as a dance partner: it can be relied on, but it can also be one of the most complex acrobatic tools. Can the pole be misused, by defying expectations, by wondering? Is the pole more than just a metal tube?</p><p>The performance involves training together, spinning fast, climbing high and possibly being swallowed up by the stage. The most difficult tricks are not meant to be mastered immediately – either in life or in the gym. The most loyal training buddy will help you, and together you can bend further. Isn't the world a little brighter when you have someone to rely on?</p><p>Language: non-verbal</p><p>Performers: Milla-Mari Hellman, Camilla Rantanen<br>Choreography: Camilla Rantanen <br>Dramaturgy: Pipsa Enqvist<br>Lighting and space design: Teo Lanerva<br>Sound design: Vili Pääkkö</p><p>Together, Camilla Rantanen and Pipsa Enqvist form the Burning Bridges collective. As people, they share a common understanding of essayistic stage aesthetics, a passion for extensive background work, a sense of justice and common enemies, in addition to their dramaturgical training. For Hard Things To Swallow, Rantanen and Enqvist have assembled a group of respected artists and friends: Teo Lanerva, Vili Pääkkö and Milla-Mari Hellman. The members of the creative team represent a new generation of performing artists. The team members have a history of cooperation of varying lengths.</p><p>The work is supported by the Finnish Cultural Foundation, the Zodiak Center for New Dance, Hangö Teaterträff, the Kone Foundation and Rock the Pole.</p>" }, "name": { "fi": "Burning Bridges: Hard things to swallow", "sv": "Burning Bridges: Hard things to swallow", "en": "Burning Bridges: Hard things to swallow" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67732/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67170", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/teleks-tuuli-joka-tarttuu-siipiin-malmitalo-20873670/", "sv": "https://www.lippu.fi/event/teleks-tuuli-joka-tarttuu-siipiin-malmitalo-20873670/", "en": "https://www.lippu.fi/event/teleks-tuuli-joka-tarttuu-siipiin-malmitalo-20873670/" }, "description": null, "price": { "fi": "28 € / 22 €", "sv": "28 € / 22 €", "en": "28 € / 22 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494019, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T09:12:52.685649Z", "last_modified_time": "2025-12-03T09:12:52.685660Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778496.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494019/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T09:12:52.606760Z", "last_modified_time": "2026-03-20T01:13:21.910997Z", "date_published": null, "start_time": "2026-02-28T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Vastikään uuden Juopunut-singlen julkaissut Teleks valmistautuu uuteen aikakauteen.", "sv": "Teleks, som nyligen släppt en ny singelplatta, Juopunut, förbereder sig för en ny era.", "en": "Teleks, who recently released their new single Juopunut, is preparing for a whole new era." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8C56D80B75ED2440A3B4B20771DFFB6B/Teleks_Tuuli_joka_tarttuu_siipiin", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8C56D80B75ED2440A3B4B20771DFFB6B/Teleks_Tuuli_joka_tarttuu_siipiin", "en": "http://www.malmitalo.fi/en/events/event/8C56D80B75ED2440A3B4B20771DFFB6B/Teleks_Tuuli_joka_tarttuu_siipiin" }, "description": { "fi": "<p>Vastikään uuden Juopunut-singlen julkaissut Teleks valmistautuu uuteen aikakauteen.</p><p>Yhtye julkaisee tammikuussa 2026 uuden albumin Tuuli joka tarttuu siipiin, ja sen myötä Teleks lähtee kiertueelle ympäri Suomen.</p><p>Kevään kiertue saa vauhtia jo loppuvuodesta, kun bändi suuntaa tien päälle soittamaan keikkoja Etelästä aina Pohjoiseen saakka. Sekä syksyn että kevään konserteissa kuullaan tulevan albumin uusia kappaleita ja tietenkin Teleksin rakastetuimpia lauluja – kuten Siivet, Kotimatkalla, Tuulilasin nurkkaan, Tyttö joka katsoo merelle, Onnellisii loppuja ja Lukot sillankaiteeseen.</p><p>Yli kahdenkymmenen vuoden ajan suomalaisia musiikinystäviä koskettanut Teleks on uudistunut ja löytänyt uuden soinnin. Nykyisin yhtye koostuu Pepe Johanssonista, Janne Rajalasta ja Sampo Haapaniemestä.</p><p>Teleks on kotimaisen popmusiikin klassikoiden tekijä, jonka laulut ovat soineet radioissa, automatkoilla, juhlissa ja laulukirjoissa – lauluja, jotka ovat kasvaneet sukupolvien yhteisiksi tarinoiksi. Näitä kappaleita voi hyvällä syyllä kutsua ikivihreiksi.</p><p>Kesto: 1 t 15 min</p>", "sv": "<p>Teleks, som nyligen släppt en ny singelplatta, Juopunut, förbereder sig för en ny era.</p><p>i januari 2026 släpper bandet ett nytt album, Tuuli joka tarttuu siipiin, och i och med detta åker Teleks på Finlandsturné.</p><p>Vårturnén drar i gång redan i slutet av året, då bandet reser iväg på spelningar från södra till norra Finland. Under såväl höstens som vårens konserter får man höra nya låtar från det kommande albumet och naturligtvis Teleks mest älskade sånger – såsom Siivet, Kotimatkalla, Tuulilasin nurkkaan, Tyttö joka katsoo merelle, Onnellisii loppuja och Lukot sillankaiteeseen.</p><p>Teleks, som har berört finska musikälskare i mer än tjugo år, har förnyat sig och hittat en ny klang. Idag består bandet av Pepe Johansson, Janne Rajala och Sampo Haapaniemi.</p><p>Teleks är en skapare av inhemska popmusikklassiker vars sånger har spelats i radio, under bilresor, på fester och i sångböcker – sånger som har vuxit till generationers gemensamma berättelser. Dessa låtar kan med god orsak kallas evergreens.</p><p>Längd: 1 h 15 min</p>", "en": "<p>Teleks, who recently released their new single Juopunut, is preparing for a whole new era.</p><p>In January 2026, the band will release a new album, Tuuli joka tarttuu siipiin, and will then celebrate by going on tour around Finland.</p><p>The spring tour will catch flight at the end of the year, when Teleks hits the road to play shows from the south all the way to the north. Both the autumn and spring concerts will feature new songs from the forthcoming album and of course the band’s best-loved songs, such as Siivet, Kotimatkalla, Tuulilasin nurkkaan, Tyttö joka katsoo merelle, Onnellisii loppuja and Lukot sillankaiteeseen.</p><p>Teleks has been delighting Finnish music lovers for more than twenty years and has now renewed itself, finding a new sound. Today the band includes Pepe Johansson, Janne Rajala and Sampo Haapaniemi.</p><p>Teleks is the author of many Finnish pop classics, with songs that have been played on the radio, on car journeys and at parties and included in songbooks – songs that have grown into stories shared by many generations. Songs that can truly be called evergreen.</p><p>Duration: 1 hour 15 min</p>" }, "name": { "fi": "Teleks: Tuuli joka tarttuu siipiin", "sv": "Teleks: Tuuli joka tarttuu siipiin", "en": "Teleks: Tuuli joka tarttuu siipiin" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67170/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67366", "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/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21299572/", "sv": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21299572/", "en": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21299572/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494729, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T09:13:57.354649Z", "last_modified_time": "2026-02-05T09:13:57.354666Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781041.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494729/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T09:13:57.210340Z", "last_modified_time": "2026-03-20T01:13:21.796883Z", "date_published": null, "start_time": "2026-02-28T16: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": "Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/24F0F8C7099BFDDFFD5147D64CB1FDE1/Kalevala_Kullervon_tarina_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/24F0F8C7099BFDDFFD5147D64CB1FDE1/Kalevala_Kullervon_tarina_16_", "en": "http://www.malmitalo.fi/en/events/event/24F0F8C7099BFDDFFD5147D64CB1FDE1/Kalevala_Kullervon_tarina_16_" }, "description": { "fi": "<p>Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn.</p><p>Ainoa eloonjäänyt on Kalervon poikalapsi Kullervo, jonka Untamo päättää kasvattaa omanaan. Varttuessaan Kullervon raaka voima ja kapinallinen luonne tekevät hänestä vaarallisen, ja kyläläiset haluavat päästä hänestä lopullisesti eroon.</p><p>Kullervo etsii koko elämänsä olemassaololleen ja taidoilleen tarkoitusta. Kun menneisyyden tapahtumat paljastuvat hänelle, on hänen kohtalonsa selvä. Koston tie johdattaa Kullervon kohtaamaan Untamon ja pakottamaan hänet tilille syntiensä kanssa.</p><p>Kullervon kohtalo on Kalevalan kuuluisimpia. Antti J. Jokisen ohjauksessa isän ja pojan tarina herää vahvasti eloon Pohjois-Karjalan jylhissä kansallismaisemissa. Kullervon roolissa nähdään Elias Salonen ja Untamona Jussi-palkittu Eero Aho.</p><p>Ikäraja: 16<br>Kesto: 143 min<br>Ensi-ilta: 16.01.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kalevala: Kullervon tarina (16) – Kino Helios", "sv": "Kalevala: Kullervon tarina (16) – Kino Helios", "en": "Kalevala: Kullervon tarina (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67366/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67704", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/ida-elina/ida-elina-kaikuja-kalevalasta-4044617/", "sv": "https://www.lippu.fi/artist/ida-elina/ida-elina-kaikuja-kalevalasta-4044617/", "en": "https://www.lippu.fi/artist/ida-elina/ida-elina-kaikuja-kalevalasta-4044617/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494018, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T09:12:52.401043Z", "last_modified_time": "2025-12-03T09:12:52.401060Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780423.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494018/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T09:12:52.289763Z", "last_modified_time": "2026-03-20T01:13:21.672387Z", "date_published": null, "start_time": "2026-02-28T16: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": "Kalevalan päivänä Vuotalolla esiintyy suomalainen laulaja-lauluntekijä Ida Elina, joka yhdistää esityksessään popin, maailmanmusiikin ja kanteleen.", "sv": "På Kalevaladagen uppträder den finländska sångerskan och låtskrivaren Ida Elina på Nordhuset. I sitt framträdande kombinerar hon pop, världsmusik och kantele.", "en": "On Kalevala Day, Finnish singer-songwriter Ida Elina will perform at Vuotalo, combining pop, world music and the kantele in her performance." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/49A6A666D2C5FEB4F39AD9CBEC29B727/LOPPUUNMYYTY_Ida_Elina_Kaikuja_Kalevalasta", "sv": "http://www.vuotalo.fi/sv/evenemang/event/49A6A666D2C5FEB4F39AD9CBEC29B727/SLUTSALD_Ida_Elina_Kaikuja_Kalevalasta_Ekon_fran_Kalevala_", "en": "http://www.vuotalo.fi/en/events/event/49A6A666D2C5FEB4F39AD9CBEC29B727/SOLD_OUT_Ida_Elina_Echoes_of_The_Kalevala" }, "description": { "fi": "<p>Kalevalan päivänä Vuotalolla esiintyy suomalainen laulaja-lauluntekijä Ida Elina, joka yhdistää esityksessään popin, maailmanmusiikin ja kanteleen.</p><p>Klassisen musiikin koulutuksen Sibelius-Akatemiasta saanut artisti on mullistanut perinteisen kansallissoittimen kanteleen moderniksi maailmanvalloittajaksi. Ida Elina yhdistää popin, maailmanmusiikin ja kanteleen uniikin soundin luoden tarttuvia melodioita ja syvästi tunteellisia tarinoita. Hänen esityksensä ovat energisiä ja karismaattisia – olipa lavalla sitten intiimi soolokeikka tai sinfoniaorkesterin kanssa soiva eeppinen kokonaisuus.</p><p>Kaikuja Kalevalasta on 190-vuotiasta kansalliseepostamme, Kalevalaa, juhlistava konserttielämys, jossa yhdistyvät itämerensuomalainen runonlauluperinne ja popmusiikin kaiut. Konsertin visualisoinnissa hyödynnetään osia palkitusta lyhytelokuvasta Pohjolan kaiut.</p><p><b>Konsertin ohjelma:</b><br>Alkusoitto<br>Pohjolan kaiut<br>Tule kanssain<br>Kuutamo<br>Mieleni minun tekevi<br>On suuri sun rantas autius<br>Varjele vakainen Luoja<br>Lemminkäisen äiti<br>En koskaan<br>Kaipaava<br>Kotiseutu pohjolassa<br>Under the Northern Skies<br>Lemminkäinen</p><p>Kesto: 1h15 (ei väliaikaa)</p>", "sv": "<p>På Kalevaladagen uppträder den finländska sångerskan och låtskrivaren Ida Elina på Nordhuset. I sitt framträdande kombinerar hon pop, världsmusik och kantele.</p><p>Denna artist, som har en utbildning i klassisk musik från Sibelius-Akademin, har revolutionerat det traditionella nationalinstrumentet kantelen till en modern världserövrare. Ida Elina kombinerar pop, världsmusik och kantelens unika klang för att skapa medryckande melodier och djupt känslomässiga berättelser. Hennes framträdanden är energiska och karismatiska – oavsett om det handlar om en intim solospelning eller en episk helhet med en symfoniorkester.</p><p>Kaikuja Kalevalasta är en konsertupplevelse som uppmärksammar vårt 190-åriga nationalepos Kalevala, och som kombinerar den östersjöfinska runosångtraditionen med ekon av popmusik. I visualiseringen i konserten används delar ur den prisbelönta kortfilmen Pohjolan kaiut.</p><p><b>Konsertens program:</b><br>Intro<br>Pohjolan kaiut<br>Tule kanssain<br>Kuutamo<br>Mieleni minun tekevi<br>On suuri sun rantas autius<br>Varjele vakainen Luoja<br>Lemminkäisen äiti<br>En koskaan<br>Kaipaava<br>Kotiseutu pohjolassa<br>Under the Northern Skies<br>Lemminkäinen</p><p>Längd: 1 h 15</p>", "en": "<p>On Kalevala Day, Finnish singer-songwriter Ida Elina will perform at Vuotalo, combining pop, world music and the kantele in her performance.</p><p>Trained in classical music at Sibelius Academy, the artist has revolutionised the traditional Finnish national instrument, the kantele, into a modern world conqueror. Ida Elina combines pop, world music and the unique sound of the kantele to create catchy melodies and deeply emotional stories. Her performances are energetic and charismatic – regardless of whether she is performing an intimate solo or an epic piece with a symphony orchestra.</p><p>Echoes of The Kalevala is a concert experience celebrating Finland’s 190-year-old national epic, The Kalevala, combining the Baltic Finnish runosong tradition and echoes of pop music. The visualisation of the concert uses parts of the award-winning short film Under the Northern Skies.</p><p><b>Concert programme:</b><br>Prelude<br>Pohjolan kaiut<br>Tule kanssain<br>Kuutamo<br>Mieleni minun tekevi<br>On suuri sun rantas autius<br>Varjele vakainen Luoja<br>Lemminkäisen äiti<br>En koskaan<br>Kaipaava<br>Kotiseutu pohjolassa<br>Under the Northern Skies<br>Lemminkäinen</p><p>Duration: 1h15 (no intermission)</p>" }, "name": { "fi": "LOPPUUNMYYTY Ida Elina: Kaikuja Kalevalasta", "sv": "SLUTSÅLD Ida Elina: Kaikuja Kalevalasta (Ekon från Kalevala)", "en": "SOLD OUT Ida Elina: Echoes of The Kalevala" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67704/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67921", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?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": 1494381, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-05T14:13:10.300653Z", "last_modified_time": "2026-01-05T14:13:10.300668Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780649.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494381/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-05T14:13:10.223981Z", "last_modified_time": "2026-03-20T01:13:21.569371Z", "date_published": null, "start_time": "2026-02-28T15: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": "Performanssi pakoon lähteneen henkilön kiitollisuuden painosta ja riittämättömyyden tunteista.", "sv": "En performance om tyngden av tacksamhet och känslor av otillräcklighet hos en flykting.", "en": "A performance about the weight of gratitude and feelings of inadequacy of a person who has fled." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F5333BE5B8004D6B2FE87411EBD25BAB/Saban_Ramadani_Ma_Lupaan_Ma_Vannon", "sv": "http://www.stoa.fi/sv/evenemang/event/F5333BE5B8004D6B2FE87411EBD25BAB/Saban_Ramadani_Jag_lovar_jag_svar_", "en": "http://www.stoa.fi/en/events/event/F5333BE5B8004D6B2FE87411EBD25BAB/Saban_Ramadani_Ma_Lupaan_Ma_Vannon" }, "description": { "fi": "<p>Performanssi pakoon lähteneen henkilön kiitollisuuden painosta ja riittämättömyyden tunteista.</p><p>Performanssiteoksessa nähdään henkilö pesemässä valkoisen tilan lattiaa lasisen sangon vedellä, katseen suunta on portaikon huipussa. Kertoja pyrkii ilmaisemaan kuuntelijalle kiitollisuutensa maahanmuutosta, siitä ihanasta uhrauksesta, jonka huostaan ottanut maa on tehnyt pakoon lähteneelle henkilölle. Narratiivissa kuitenkin piilee ihmisarvon toiseutta, tunteesta, että ei koskaan tule riittämään. Hän pesee, pesee, pesee lattiaa päänsä alas laittaa.</p><p>Kuin Sisyfoksen tavoin, kivi vierähtää alas ja kierre on loputon. Narraatiossa henkilö toivoisi sanovansa ääneen turhautumisensa riittämättömyydestä, mutta muistuttaa itseään kiitollisuudesta, sillä sitä toisen luokan kansalainen tekee, tai, ainakin näin oletetaan. Korottamalla ääntänsä hän saattaa vihdoinkin ottaa tilaa, mutta mitkä seuraamukset seuraavat perässä?</p><p>Kesto: n. 30 min, ei väliaikaa<br>Kieli: englanti</p><p>Vapaa pääsy</p><p><b>Työryhmä:</b><br>Taiteellinen työ, esiintyjä: Saban Ramadani<br>Tuottaja: Wisam Elfadl</p>", "sv": "<p>En performance om tyngden av tacksamhet och känslor av otillräcklighet hos en flykting.</p><p>I det här performanceverket får vi se en person som tvättar golvet i ett vitt rum med en vattenhink av glas, med blicken riktad mot trappans topp. Berättaren försöker uttrycka sin tacksamhet för migrationen, den underbara uppoffring som det mottagande landet har gjort för flyktingen. I narrativet döljer sig ändå ett utanförskap i människovärdet, en känsla av att aldrig kunna räcka till. Han tvättar, tvättar, tvättar golvet lägger ner sitt huvud.</p><p>Precis som för Sisyfos rullar stenen ner och spiralen är oändlig. Personen i berättelsen vill uttrycka sin frustration över otillräckligheten, men påminner sig själv om tacksamheten, för det gör en andra klassens medborgare, eller det är i alla fall vad man antar. Genom att höja sin röst kan han äntligen ta plats, men vilka konsekvenser får det?</p><p>Längd ca 30 min., ingen paus.<br>Språk: engelska</p><p>Fritt inträde</p><p>Arbetsgrupp:<br>Konstnärligt arbete, artist: Saban Ramadani<br>Producent: Wisam Elfadl</p>", "en": "<p>A performance about the weight of gratitude and feelings of inadequacy of a person who has fled.</p><p>In the performance, a person is washing the floor of a white space with water from a glass bucket, with their gaze directed at the top of a staircase. The narrator tries to express to the listener their gratitude for immigration, for the wonderful sacrifice made by the host country to the person who has fled. However, there is an otherness of human dignity in the narrative, a sense that they will never be enough. They wash, wash, wash the floor and put their head down.</p><p>The Sisyphean stone rolls down again and the spiral is endless. In the narrative, the person wishes they could express their frustration at their inadequacy out loud, but reminds themselves to be grateful, because that's what a second-class citizen does, or, at least, that's what is assumed. By raising their voice, they could finally make room for themselves, but what consequences would that have?</p><p>Duration approx. 30 min, no intermission<br>Language: English</p><p>Free entry!</p><p>Creative team:<br>Artistic work, performer: Saban Ramadani<br>Producer: Wisam Elfadl</p>" }, "name": { "fi": "Saban Ramadani: Mä Lupaan, Mä Vannon", "sv": "Saban Ramadani: ”Jag lovar, jag svär”", "en": "Saban Ramadani: Mä Lupaan, Mä Vannon" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67921/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67365", "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/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299671/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299671/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299671/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494734, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T10:13:18.369888Z", "last_modified_time": "2026-02-05T10:13:18.369906Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781040.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494734/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T10:13:18.258735Z", "last_modified_time": "2026-03-20T01:13:21.446897Z", "date_published": null, "start_time": "2026-02-28T13: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": "Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/71E2D03DBF9596222BE29CB02D6B086D/Vinski_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/71E2D03DBF9596222BE29CB02D6B086D/Vinski_2_7_", "en": "http://www.malmitalo.fi/en/events/event/71E2D03DBF9596222BE29CB02D6B086D/Vinski_2_7_" }, "description": { "fi": "<p>Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan.</p><p>Se on kuitenkin vasta ensimmäinen askel Hömpstadia uhkaavien häikäilemättömien rikollisten suunnitelmassa, jossa vaarassa on Vinskin lisäksi hänen äitinsä ja koko kaupunki.</p><p>Pelastaakseen Hömpstadin Vinskin on lähdettävä seuraamaan kadonneen Apteekkarin jättämiä arvoituksellisia ohjeita, jotka johdattavat hänet Hömpstadin \"nurjalle puolelle”. Vinski kohtaa myös kaupunkia otteessaan pitävän kaksinaamaisen rikollispomon, jonka suuruudenhulluudella ei ole rajoja.</p><p>Ikäraja: 7<br>Kesto: 82 min<br>Ensi-ilta: 13.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Vinski 2 (7) – Kino Helios", "sv": "Vinski 2 (7) – Kino Helios", "en": "Vinski 2 (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67365/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67831", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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: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": 1494209, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-15T13:13:37.076458Z", "last_modified_time": "2025-12-15T13:13:37.076474Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779978.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494209/?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-12-15T13:13:36.920583Z", "last_modified_time": "2026-03-20T01:13:21.301205Z", "date_published": null, "start_time": "2026-02-28T12: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": "Tämä koko perheen jazzkonsertti juhlistaa Kulttuurikeskus Caisan 30-vuotista historiaa – osuvasti Jazz Suomi 100 -juhlavuonna!", "sv": "Denna Jazzkonsert för hela familjen uppmärksammar kulturcentret Caisas 30-åriga historia – lämpligt nog under Jazz Finland 100-jubileumsåret.", "en": "In this solo concert, Battah invites the audience – especially children – to join her on a musical journey of rhythm, voice and imagination." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9D894178F4B27F20D90ECE12A84E31E3/Jazz_for_Kids_Nemat_Battah", "sv": "http://www.caisa.fi/sv/evenemang/event/9D894178F4B27F20D90ECE12A84E31E3/Jazz_for_Kids_Nemat_Battah", "en": "http://www.caisa.fi/en/events/event/9D894178F4B27F20D90ECE12A84E31E3/Jazz_for_Kids_Nemat_Battah" }, "description": { "fi": "<p>Tämä koko perheen jazzkonsertti juhlistaa Kulttuurikeskus Caisan 30-vuotista historiaa – osuvasti Jazz Suomi 100 -juhlavuonna!</p><p>Jazz for Kids on korkeatasoisten jazzkonserttien sarja, johon ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä äänenvoimakkuudella kulttuurikeskusten helposti saavutettavissa tiloissa.</p><p>Tässä Jazz for Kids-konsertissa <b>Nemat Battah</b> esittelee soolouransa alkuperäisiä sävellyksiä, joihin hän ammentaa vaikutteita myös Wishamalii-triostaan. Loopperin ja live-elektroniikan avulla hän luo intiimin äänimaiseman, jossa perinteinen kohtaa uuden ja ennakkoluulottoman. Hänen musiikkinsa yhdistää arabialaisen maqam-estetiikan ja jazzin improvisaation vapauden, luoden syvästi ilmaisuvoimaisen ja nykyaikaisen äänimaiseman.</p><p>Battah kutsuu yleisön – erityisesti lapset – mukaan rytmin, äänen ja mielikuvituksen matkalle! Leikkisän vuorovaikutuksen ja spontaanin luomisen kautta hän tutkii, miten ääni voi kertoa tarinoita ja yhdistää ihmisiä yli kulttuurirajojen. Esitys huokuu uteliaisuutta, lämpöä ja jazzin improvisaation henkeä, tarjoten elämyksen, joka koskettaa ja inspiroi kaikenikäisiä kuulijoita.<br>Nemat Battah – oud, laulu, live-elektroniikka & loopperi</p><p>Tilaisuuden kesto: 45 min. Artisti esiintyy noin 35 minuuttia, jonka jälkeen yleisö voi tervehtiä muusikkoa ja soitinta.</p><p>Kieli: englanti ja arabia</p><p>Paikat täytetään saapumisjärjestyksessä.</p><p>Vapaa pääsy!</p>", "sv": "<p>Denna Jazzkonsert för hela familjen uppmärksammar kulturcentret Caisas 30-åriga historia – lämpligt nog under Jazz Finland 100-jubileumsåret.</p><p>Jazz for Kids är en serie av högklassiga jazzkonserter för barn, där alla åldrar är välkomna! Professionella musiker framför sin egen produktion med barnvänlig volym i kulturcentrens lättillgängliga utrymmen.</p><p>I den här Jazz for Kids-konserten framför <b>Nemat Battah</b> originallåtar ur sin solokarriär, där även influenser från trion Wishamalii ingår. Med hjälp av en looper och liveelektronik skapar hon ett intimt ljudlandskap, där det traditionella möter det nya och fördomsfria. Hennes musik kombinerar arabisk maqam-estetik med friheten i jazzimprovisation, och skapar ett djupt uttrycksfullt och modernt ljudlandskap.</p><p>Battah bjuder in publiken – särskilt barnen – på en resa fylld av rytmer, ljud och fantasi! Genom lekfull interaktion och spontant skapande utforskar hon hur ljuden kan berätta historier och förena människor över kulturgränserna. Föreställningen andas nyfikenhet, värme och jazzimprovisation och bjuder på en upplevelse som berör och inspirerar lyssnare i alla åldrar.</p><p>Nemat Battah – oud, sång, liveelektronik och looper</p><p>Evenemangets längd: 45 minuter. Artisten uppträder i ca 35 minuter, varefter publiken kan hälsa på musikern och instrumentet.</p><p>Språk: engelska och arabiska<br>Fritt inträde!</p>", "en": "<p>In this solo concert, Battah invites the audience – especially children – to join her on a musical journey of rhythm, voice and imagination.</p><p>Jazz for Kids is a series of high-quality jazz concerts for everyone from babies to grandparents! Professional musicians perform their work at child-friendly volumes in the easily accessible facilities of the City’s cultural centres.</p><p>In this Jazz for Kids concert, Nemat Battah will perform original compositions from her solo career, also drawing influence from her Wishamalii trio. With the help of loopers and live electronics, she will create an intimate soundscape where the traditional meets the new and unprejudiced. Her music combines Arabic maqam aesthetics with the improvisational freedom of jazz, creating a deeply expressive and contemporary soundscape.</p><p>Battah invites the audience – especially children – to join her on a journey of rhythm, sound and imagination! Through playful interaction and spontaneous creation, she explores how sound can tell stories and connect people across cultural boundaries. The performance exudes curiosity, warmth and the improvisational spirit of jazz, providing an experience that will touch and inspire listeners of all ages.</p><p>Nemat Battah – oud, vocals, live electronics and looper</p><p>Event duration: 45 min. The artist will perform for roughly 35 minutes, after which the audience can come meet the musician and see the instruments used.</p><p>Language: English and Arabic</p><p>Free entry!</p>" }, "name": { "fi": "Jazz for Kids: Nemat Battah", "sv": "Jazz for Kids: Nemat Battah", "en": "Jazz for Kids: Nemat Battah" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67831/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67675", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "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": 1493977, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T13:14:16.711059Z", "last_modified_time": "2025-12-01T13:14:16.711074Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782324.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493977/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T13:14:16.611353Z", "last_modified_time": "2026-03-20T01:13:21.197502Z", "date_published": null, "start_time": "2026-02-28T12: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": "Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!", "sv": "Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!", "en": "How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6A538374AD8881FE92F5F52DB694E501/Kaikkien_lasten_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/6A538374AD8881FE92F5F52DB694E501/Danslektion_for_alla_barn", "en": "http://www.annantalo.fi/en/events/event/6A538374AD8881FE92F5F52DB694E501/All_children_s_dance_class" }, "description": { "fi": "<p>Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!</p><p>Inklusiiviset kaikkien lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Tunteja ohjaavat tanssiin, vammaisuuteen, pedagogiikkaan ja esteettömyyteen perehtyneet ammattilaiset, joilla kaikilla on erilainen taiteellis-pedagoginen tausta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen: opetus@kaaoscompany.fi</p><p>Osallistujamäärä: max. 18 (lasta ja aikuista yhdessä)</p>", "sv": "<p>Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!</p><p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar.</p><p>Lektionerna leds av yrkesverksamma som är insatta i dans, funktionsnedsättning, pedagogik och tillgänglighet, som alla har olika konstnärlig-pedagogisk bakgrund.</p><p>Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning via e-post: opetus@kaaoscompany.fi</p><p>Antal deltagare: max. 18 (barn och vuxna tillsammans)</p>", "en": "<p>How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!</p><p>Children’s Inclusive Dance Classes offer children and their adults the joy of togetherness, movement and an opportunity to meet new people of similar and different backgrounds.</p><p>During the classes we play with movement together and each in our own way.<br>The classes are free and open to children of all ages, their siblings and adults, regardless of disability or non-disability.</p><p>The classes are taught by professionals with expertise in dance, theatre, disability, pedagogy and accessibility, all with different artistic-pedagogical backgrounds.</p><p>The lesson lasts one hour. The space is accessible.</p><p>Free admission, pre-registration required by email: opetus@kaaoscompany.fi</p><p>Number of participants: max. 18 (children and adults together)<br>Sat 18.10.2025 at 14.00<br>Tanssiluokka<br>Annankatu 30, Helsinki<br>Free entry</p>" }, "name": { "fi": "Kaikkien lasten tanssitunti – kaikenikäisille", "sv": "Danslektion för alla barn – för alla åldrar", "en": "All children's dance class – for all ages" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67675/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67656", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/taika-box-louhi/", "sv": "https://www.lippu.fi/artist/taika-box-louhi/", "en": "https://www.lippu.fi/artist/taika-box-louhi/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493955, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-28T16:13:01.413282Z", "last_modified_time": "2025-11-28T16:13:01.413296Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782300.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493955/?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-11-28T16:13:01.317564Z", "last_modified_time": "2026-03-20T01:13:21.065926Z", "date_published": null, "start_time": "2026-02-28T12: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": "Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.", "sv": "Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.", "en": "Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6E516266DA62B02730A7393C88626487/TaikaBox_Louhi", "sv": "http://www.annantalo.fi/sv/evenemang/event/6E516266DA62B02730A7393C88626487/TaikaBox_Louhi", "en": "http://www.annantalo.fi/en/events/event/6E516266DA62B02730A7393C88626487/TaikaBox_Louhi" }, "description": { "fi": "<p>Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.</p><p>Ikääntynyt Louhi-mummo palaa muistoissaan lapsuuteen ja aikaan, jolloin hänestä tuli Pohjolan peloton suojelija ja taikavoimien haltija. Tanssin, musiikin, laulujen, loitsujen ja interaktiivisen projisoinnin siivin avautuvat tarut Tuonelan Joutsenesta, Hiiden Hirvestä ja Suomuhauesta – kolmesta maagisesta olennosta, jotka palkitsivat Louhi-tytön rohkeuden voimilla, joilla hän kohosi lopulta Pohjolan kansan johtajaksi.<br> <br>Kalevalaisten myyttien sykkeestä kumpuava esitys elävöittää ikiaikaisen perinteen ja tuo sen lähelle nykypäivän katsojaa.</p><p>Kieli: suomi <br>Kesto: 35min<br>Ikäsuositus: 4-10 v<br> <br>Koreografia ja ohjaus: Tanja Råman<br>Tanssi, tarinankerronta ja laulut: Marjo Kiukaanniemi<br>Ääni-, valo- ja interaktiivinen toteutus: John Collingswood<br>Tuotanto: TaikaBox ry<br>Teos on luotu Pohjois-Pohjanmaan rahaston tuella</p>", "sv": "<p>Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.</p><p>Gamla mormor Louhi återvänder i sina minnen till barndomen och den tid när hon blev Pohjolas orädda beskyddare och bärare av magiska krafter. Med hjälp av dans, musik, sånger, trollformler och interaktiva projektioner berättas historierna om Tuonelas svan, Hiisis älg och jättegäddan – tre magiska varelser som belönade flickan Louhis mod med krafter som till slut gjorde henne till ledare för Pohjolas folk.<br> <br>Föreställningen, som är inspirerad av Kalevala-myterna, väcker den gamla traditionen till liv och för den nära den moderna publiken.</p><p>Språk: finska <br>Längd: 35 min.<br>Åldersrekommendation: 6–12 år<br> <br>Koreografi och regi: Tanja Råman<br>Dans, berättelser och sånger: Marjo Kiukaanniemi<br>Ljud, ljus och interaktiv implementering: John Collingswood<br>Produktion: TaikaBox ry<br>Verket har skapats med stöd av Norra Österbottens fond</p>", "en": "<p>Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself.</p><p>A grandmother revisits her childhood and tells us about the time when she was gifted with magical powers that would change her life forever. Through dance, music, songs, spells, and interactive projections, she shares stories of the Swan of Tuonela, the Elk of the Forest, and the Finnish Pike – three magical beings who rewarded young Louhi’s courage with powers that would ultimately help her rise to become the leader of the people of Pohjola.</p><p>Inspired by characters from the epic Kalevala, and pulsing with mythic energy, the performance brings ancient traditions to life and makes them resonate for today’s audience.</p><p>Language: Finnish<br>Duration: 35 min<br>Age recommendation: 6-12</p><p>Choreography & Direction: Tanja Råman<br>Dance, Storytelling & Singing: Marjo Kiukaanniemi<br>Sound, Lighting & Interactive Design: John Collingswood<br>Production: TaikaBox ry<br>The work was created with support from Finnish Cultural Foundation – Northern Ostrobothnia</p>" }, "name": { "fi": "TaikaBox: Louhi", "sv": "TaikaBox: Louhi", "en": "TaikaBox: Louhi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67656/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67655", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/taika-box-louhi/", "sv": "https://www.lippu.fi/artist/taika-box-louhi/", "en": "https://www.lippu.fi/artist/taika-box-louhi/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493954, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-28T16:13:01.048571Z", "last_modified_time": "2025-11-28T16:13:01.048586Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782299.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493954/?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-11-28T16:13:00.957519Z", "last_modified_time": "2026-03-20T01:13:20.929819Z", "date_published": null, "start_time": "2026-02-28T10: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": "Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.", "sv": "Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.", "en": "Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FAF83F649F07B33974BEC4AF680D73D6/TaikaBox_Louhi", "sv": "http://www.annantalo.fi/sv/evenemang/event/FAF83F649F07B33974BEC4AF680D73D6/TaikaBox_Louhi", "en": "http://www.annantalo.fi/en/events/event/FAF83F649F07B33974BEC4AF680D73D6/TaikaBox_Louhi" }, "description": { "fi": "<p>Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.</p><p>Ikääntynyt Louhi-mummo palaa muistoissaan lapsuuteen ja aikaan, jolloin hänestä tuli Pohjolan peloton suojelija ja taikavoimien haltija. Tanssin, musiikin, laulujen, loitsujen ja interaktiivisen projisoinnin siivin avautuvat tarut Tuonelan Joutsenesta, Hiiden Hirvestä ja Suomuhauesta – kolmesta maagisesta olennosta, jotka palkitsivat Louhi-tytön rohkeuden voimilla, joilla hän kohosi lopulta Pohjolan kansan johtajaksi.<br> <br>Kalevalaisten myyttien sykkeestä kumpuava esitys elävöittää ikiaikaisen perinteen ja tuo sen lähelle nykypäivän katsojaa.</p><p>Kieli: suomi <br>Kesto: 35min<br>Ikäsuositus: 4-10 v<br> <br>Koreografia ja ohjaus: Tanja Råman<br>Tanssi, tarinankerronta ja laulut: Marjo Kiukaanniemi<br>Ääni-, valo- ja interaktiivinen toteutus: John Collingswood<br>Tuotanto: TaikaBox ry<br>Teos on luotu Pohjois-Pohjanmaan rahaston tuella</p>", "sv": "<p>Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.</p><p>Gamla mormor Louhi återvänder i sina minnen till barndomen och den tid när hon blev Pohjolas orädda beskyddare och bärare av magiska krafter. Med hjälp av dans, musik, sånger, trollformler och interaktiva projektioner berättas historierna om Tuonelas svan, Hiisis älg och jättegäddan – tre magiska varelser som belönade flickan Louhis mod med krafter som till slut gjorde henne till ledare för Pohjolas folk.<br> <br>Föreställningen, som är inspirerad av Kalevala-myterna, väcker den gamla traditionen till liv och för den nära den moderna publiken.</p><p>Språk: finska <br>Längd: 35 min.<br>Åldersrekommendation: 6–12 år<br> <br>Koreografi och regi: Tanja Råman<br>Dans, berättelser och sånger: Marjo Kiukaanniemi<br>Ljud, ljus och interaktiv implementering: John Collingswood<br>Produktion: TaikaBox ry<br>Verket har skapats med stöd av Norra Österbottens fond</p>", "en": "<p>Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself.</p><p>A grandmother revisits her childhood and tells us about the time when she was gifted with magical powers that would change her life forever. Through dance, music, songs, spells, and interactive projections, she shares stories of the Swan of Tuonela, the Elk of the Forest, and the Finnish Pike – three magical beings who rewarded young Louhi’s courage with powers that would ultimately help her rise to become the leader of the people of Pohjola.</p><p>Inspired by characters from the epic Kalevala, and pulsing with mythic energy, the performance brings ancient traditions to life and makes them resonate for today’s audience.</p><p>Language: Finnish<br>Duration: 35 min<br>Age recommendation: 6-12</p><p>Choreography & Direction: Tanja Råman<br>Dance, Storytelling & Singing: Marjo Kiukaanniemi<br>Sound, Lighting & Interactive Design: John Collingswood<br>Production: TaikaBox ry<br>The work was created with support from Finnish Cultural Foundation – Northern Ostrobothnia</p>" }, "name": { "fi": "TaikaBox: Louhi", "sv": "TaikaBox: Louhi", "en": "TaikaBox: Louhi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67655/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }