Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=11
{ "meta": { "count": 21733, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=12", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=10" }, "data": [ { "id": "kulke:68084", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494804, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-09T12:13:55.943387Z", "last_modified_time": "2026-02-09T12:13:55.943402Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784528.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494804/?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-02-09T12:13:55.843920Z", "last_modified_time": "2026-03-20T01:14:22.076250Z", "date_published": null, "start_time": "2026-05-19T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8BC18318E85F9689273B9FB3F14FBA87/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8BC18318E85F9689273B9FB3F14FBA87/Skogssagostunder_med_Jussi_Ollila_", "en": "http://www.vuotalo.fi/en/events/event/8BC18318E85F9689273B9FB3F14FBA87/Jussi_Ollila_s_forest_fairy_tales_" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Satu on aina uusi, koska se syntyy vuorovaikutuksessa lapsiyleisön kanssa. Metsäsatutuokio sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille <br>Kesto: n. 45 min <br>Kieli: suomi <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille ennakkoilmoittautumiset osoitteessa www.kultus.hel.fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen. <br>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar <br>Längd: ca 45 min. <br>Språk: finska <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på www.kultus.hel.fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip. <br>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds <br>Duration: approx. 45 min <br>Language: Finnish <br>Free of charge <br>Intended for day-care groups and families. Advance registration for groups at www.kultus.hel.fi</p>" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot", "sv": "Skogssagostunder med Jussi Ollila", "en": "Jussi Ollila's forest fairy tales" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68084/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68083", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494803, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-09T12:13:55.567981Z", "last_modified_time": "2026-02-09T12:13:55.568000Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784527.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494803/?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-02-09T12:13:55.440738Z", "last_modified_time": "2026-03-20T01:14:21.955597Z", "date_published": null, "start_time": "2026-05-19T06: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": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A6CD010052293AC80AF1F3D0753EE519/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A6CD010052293AC80AF1F3D0753EE519/Skogssagostunder_med_Jussi_Ollila_", "en": "http://www.vuotalo.fi/en/events/event/A6CD010052293AC80AF1F3D0753EE519/Jussi_Ollila_s_forest_fairy_tales_" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Satu on aina uusi, koska se syntyy vuorovaikutuksessa lapsiyleisön kanssa. Metsäsatutuokio sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille <br>Kesto: n. 45 min <br>Kieli: suomi <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille ennakkoilmoittautumiset osoitteessa www.kultus.hel.fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen. <br>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar <br>Längd: ca 45 min. <br>Språk: finska <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på www.kultus.hel.fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip. <br>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds <br>Duration: approx. 45 min <br>Language: Finnish <br>Free of charge <br>Intended for day-care groups and families. Advance registration for groups at www.kultus.hel.fi</p>" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot", "sv": "Skogssagostunder med Jussi Ollila", "en": "Jussi Ollila's forest fairy tales" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68083/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67291", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494069, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:55.786888Z", "last_modified_time": "2025-12-04T12:12:55.786903Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780841.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494069/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:55.716304Z", "last_modified_time": "2026-03-20T01:14:21.852845Z", "date_published": null, "start_time": "2026-05-18T15: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": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!", "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!", "en": "Nothing is more fun than singing – except for singing together!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/783B218B5684279DF42BD6ACEA181C5D/Nyt_lauletaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/783B218B5684279DF42BD6ACEA181C5D/Nu_sjunger_vi_", "en": "http://www.kanneltalo.fi/en/events/event/783B218B5684279DF42BD6ACEA181C5D/Let_us_sing_" }, "description": { "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko Mari Kätkä.</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.</p><p>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Kesto: 1 h</p>", "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p><p>Längd: 1 h</p>", "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä.</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p><p>Duration: 1 h</p>" }, "name": { "fi": "Nyt lauletaan! – Maksuttomat maanantait", "sv": "Nu sjunger vi! – Kostnadsfria måndagar", "en": "Let us sing! – Free Mondays" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67291/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67898", "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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@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": 1494318, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T12:14:03.929506Z", "last_modified_time": "2025-12-23T12:14:03.929523Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777015.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494318/?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-23T12:14:03.781196Z", "last_modified_time": "2026-03-20T01:14:21.732409Z", "date_published": null, "start_time": "2026-05-18", "end_time": "2026-05-24", "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": "Toukokuun lopussa Annantalossa juhlistetaan valtakunnallista lastenkulttuurin juhlaviikkoa. Juhlaviikolla tuomme lasten ja nuorten äänen kuuluviin ja juhlistamme heidän tekemäänsä taidetta!", "sv": "I slutet av maj firar Annegården den nationella barnkulturveckan. Under veckan lyfter vi fram barns och ungas röster och firar den konst som de skapar!", "en": "At the end of May, Annantalo will celebrate National Children's Culture Week. During the week, we will celebrate the art of children and young people!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9A5D093B348188A742A42EC13FDC160B/Annantalon_lastenkulttuurin_juhlaviikko_Piilossa", "sv": "http://www.annantalo.fi/sv/evenemang/event/9A5D093B348188A742A42EC13FDC160B/Annegardens_barnkulturvecka_I_det_fordolda_", "en": "http://www.annantalo.fi/en/events/event/9A5D093B348188A742A42EC13FDC160B/Annantalo_Children_s_Culture_Week_Hide_and_Seek_" }, "description": { "fi": "<p>Toukokuun lopussa Annantalossa juhlistetaan valtakunnallista lastenkulttuurin juhlaviikkoa. Juhlaviikolla tuomme lasten ja nuorten äänen kuuluviin ja juhlistamme heidän tekemäänsä taidetta!</p><p>Viikon aikana nähdään teatteri- ja tanssiesityksiä, joita Annantalon esittävien taiteiden ryhmät ovat valmistelleet lukuvuoden kestoisilla kursseillaan. Esitykset saavat ensi-iltansa juhlaviikolla.</p><p>Juhlaviikko huipentuu Piilossa -viikonloppuun 23.–24.5., jolloin kaikki esitykset ovat katsottavissa usean esityksen sarjoissa. Esitysten yhteyteen järjestetään näyttelyopastuksia, joissa pääset tutustumaan Piilossa -näyttelyyn, jossa on esillä muun muassa lasten tekemiä maalauksia sekä video- ja keramiikkateoksia.</p><p>Osana viikon ohjelmaa järjestämme myös päiväkodeille suunnattua toimintaa.</p><p>Tarkempi ohjelma julkaistaan kevään aikana.</p>", "sv": "<p>I slutet av maj firar Annegården den nationella barnkulturveckan. Under veckan lyfter vi fram barns och ungas röster och firar den konst som de skapar!</p><p>Under veckan visas teater- och dansföreställningar som Annegårdens scenkonstgrupper har förberett under sina årskurser. Föreställningarna har premiär under festveckan. <br> <br>Veckan kulminerar i en helg i det fördolda den 23-24 maj, då alla föreställningar visas i en serie med flera föreställningar. Föreställningarna åtföljs av guidade visningar av utställningen ”Piiloss”, som visar målningar, video- och keramikverk av barn. <br> <br>Som en del av veckans program kommer vi också att anordna aktiviteter för förskolor. <br> <br>Ett mer detaljerat program kommer att publiceras under våren.</p>", "en": "<p>At the end of May, Annantalo will celebrate National Children's Culture Week. During the week, we will celebrate the art of children and young people!</p><p>The week will feature theater and dance performances prepared by Annantalo's performing arts groups during their courses throughout the school year. The performances will premiere during the festival week. <br> <br>The week will culminate in the Piilossa (Hide and seek) weekend on May 23–24, when all performances will be seen in a series of multiple performances. In connection with the performances, guided tours of the exhibition will be organized, where you can explore the Piilossa exhibition, which features paintings as well as video and ceramic works by children.</p><p>As part of the week's program, we will also organize activities for daycare groups.<br> <br>A more detailed program will be published during the spring.</p>" }, "name": { "fi": "Annantalon lastenkulttuurin juhlaviikko: Piilossa", "sv": "Annegårdens barnkulturvecka: I det fördolda", "en": "Annantalo Children's Culture Week: Hide and Seek" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67898/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67647", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/elina-robinson-suenos-flamencos-flamencounelmia-kanneltalo-20974288/", "sv": "https://www.lippu.fi/event/elina-robinson-suenos-flamencos-flamencounelmia-kanneltalo-20974288/", "en": "https://www.lippu.fi/event/elina-robinson-suenos-flamencos-flamencounelmia-kanneltalo-20974288/" }, "description": null, "price": { "fi": "24,80 € / 20,80 €", "sv": "24,80 € / 20,80 €", "en": "24,80 € / 20,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494044, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T09:12:55.499202Z", "last_modified_time": "2025-12-04T09:12:55.499213Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782264.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494044/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T09:12:55.433267Z", "last_modified_time": "2026-03-20T01:14:21.614809Z", "date_published": null, "start_time": "2026-05-16T15: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": "Elina Robinsonin flamenco-oppilaiden kevätnäytöksessä juhlistamme tanssivuoden päätöstä!", "sv": "I Elina Robinsons flamencoelevers våruppvisning firar vi dansårets slut!", "en": "In the spring recital of Elina Robinson's flamenco students, we celebrate the end of the dance year!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3A9A19127581E387AB603A6C94A22416/Sue_os_Flamencos_Flamencounelmia", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3A9A19127581E387AB603A6C94A22416/Sue_os_Flamencos_Flamencounelmia_Flamencodrommar_", "en": "http://www.kanneltalo.fi/en/events/event/3A9A19127581E387AB603A6C94A22416/Sue_os_Flamencos_Flamenco_dreams" }, "description": { "fi": "<p>Elina Robinsonin flamenco-oppilaiden kevätnäytöksessä juhlistamme tanssivuoden päätöstä!</p><p>Esityksessä yhdistyvät sielukas flamencomusiikki ja vangitseva tanssi ainutlaatuisella tavalla.</p><p>Lavalla nähdään tanssijoita lapsista aikuisryhmiin sekä huikea livebändi: <br>Tony de María (kitara)<br>Anna Murtola (laulu),<br>Ricardo Padilla (perkussiot),<br>Elina Robinson (koreografiat, palmas) <br>Camila Laine (koreografia ja palmas)</p><p>Kesto: 1h 45min (sisältää väliajan)</p><p>Tuotanto: Tmi Elina Robinson</p>", "sv": "<p>I Elina Robinsons flamencoelevers våruppvisning firar vi dansårets slut!</p><p>Föreställningen kombinerar själfull flamencomusik och fängslande dans på ett unikt sätt.</p><p>På scenen får vi se dansare i allt från barn- till vuxengrupper och ett fantastiskt liveband: <br>Tony de María (gitarr) <br>Anna Murtola (sång) <br>Ricardo Padilla (slagverk), <br>Elina Robinson (koreografi, palmas) <br>Camila Laine (koreografi och palmas) <br> <br>Längd: 1 h 45 min. (inklusive paus)</p><p>Produktion: Tmi Elina Robinson</p>", "en": "<p>In the spring recital of Elina Robinson's flamenco students, we celebrate the end of the dance year!</p><p>The performance combines soulful flamenco music and captivating dance in a unique way.</p><p>The stage will feature dancers from children to adult groups and a great live band: <br>Tony de María (guitar) <br>Anna Murtola (vocals) <br>Ricardo Padilla (percussion) <br>Elina Robinson (choreography, palmas) <br>Camila Laine (choreography, palmas)</p><p>Duration: 1 h 45 min (including intermission)</p><p>Production: Tmi Elina Robinson</p>" }, "name": { "fi": "Sueños Flamencos – Flamencounelmia", "sv": "Sueños Flamencos – Flamencounelmia (Flamencodrömmar)", "en": "Sueños Flamencos – Flamenco dreams" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67647/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67500", "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:30/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494175, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T12:13:31.213517Z", "last_modified_time": "2025-12-10T12:13:31.213538Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781607.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494175/?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-10T12:13:31.123089Z", "last_modified_time": "2026-03-20T01:14:21.291332Z", "date_published": null, "start_time": "2026-05-16T08:00:00Z", "end_time": "2026-05-16T11: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": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B4E81D44F4ED4BDACF091196616D6C87/Annantalon_taidelauantai_Fragmentit_framille", "sv": "http://www.annantalo.fi/sv/evenemang/event/B4E81D44F4ED4BDACF091196616D6C87/Annegardens_konstlordagar_Fram_med_fragmenten", "en": "http://www.annantalo.fi/en/events/event/B4E81D44F4ED4BDACF091196616D6C87/Annantalo_Art_Saturdays_Fragments_to_the_front" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Fragmentit framille</b></p><p>Annantalon kakkoskerrokseen on ilmestynyt kuvia vanhoista taideteoksista. Millaisia yksityiskohtia taideteoksissa on piilossa? Millaisia kuvia syntyisi, jos yhdistelisimmekin eri teosten palasia?</p><p>Työpajassa katsotaan taideteoksia tarkasti ja leikitään sommittelulla.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Fram med fragmenten</b><br>På Annegårdens andra våning har det dykt upp bilder på gamla konstverk. Vilken typ av detaljer döljer sig i konstverken? Hurdana bilder uppstår om vi kombinerar delar av olika verk?<br>Under verkstaden undersöker vi konstverken noga och leker med kompositionerna.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Fragments to the front</b><br>Pictures of old works of art have appeared on the second floor of Annantalo. What kind of details are hidden in the artworks? What kind of images would we get if we were to combine pieces of different works?<br>This workshop involves examining artworks and playing with image composition.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "name": { "fi": "Annantalon taidelauantai: Fragmentit framille", "sv": "Annegårdens konstlördagar: Fram med fragmenten", "en": "Annantalo Art Saturdays: Fragments to the front" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67500/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67646", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/juurevin-askelin-vakevin-savelin-vol-2-kanneltalo-21324296/", "sv": "https://www.lippu.fi/event/juurevin-askelin-vakevin-savelin-vol-2-kanneltalo-21324296/", "en": "https://www.lippu.fi/event/juurevin-askelin-vakevin-savelin-vol-2-kanneltalo-21324296/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494872, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-16T12:13:15.241059Z", "last_modified_time": "2026-02-16T12:13:15.241075Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782260.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494872/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-16T12:13:15.116881Z", "last_modified_time": "2026-03-20T01:14:21.128847Z", "date_published": null, "start_time": "2026-05-15T15: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": "Juurevin askelin, väkevin sävelin vol. 2 on Marja Rautakorven ja Taija Robaltan flamenco-oppilaiden tunnelmallinen kevätesitys, joka toteutetaan tänä keväänä Kanneltalossa.", "sv": "Juurevin askelin, väkevin sävelin vol. 2 är en stämningsfull vårföreställning med Marja Rautakorpis och Taija Robaltas flamencoelever, som denna vår hålls på Gamlasgården.", "en": "This spring, Kanneltalo will host the Juurevin askelin, väkevin sävelin vol. 2 (Rootsy steps and powerful tunes vol. 2), an atmospheric spring performance by Marja Rautakorpi and Taija Robalta's flamenco students." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1116CE931FFB642DB5957ACF50A4B6E4/Juurevin_askelin_vakevin_savelin_vol_2_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1116CE931FFB642DB5957ACF50A4B6E4/Juurevin_askelin_vakevin_savelin_vol_2_", "en": "http://www.kanneltalo.fi/en/events/event/1116CE931FFB642DB5957ACF50A4B6E4/Juurevin_askelin_vakevin_savelin_vol_2_" }, "description": { "fi": "<p>Juurevin askelin, väkevin sävelin vol. 2 on Marja Rautakorven ja Taija Robaltan flamenco-oppilaiden tunnelmallinen kevätesitys, joka toteutetaan tänä keväänä Kanneltalossa.</p><p>Tanssitaiteilija Marja Rautakorpi ja laulaja-laulunopettaja Taija Robalta yhdistävät jälleen voimansa tuoden laulu- ja tanssioppilaittensa kanssa työstämänsä ohjelmiston yhteiseen iltaan. Luvassa on ennennäkemätön kimara flamencolaulun lajeja usean laulajan voimin sekä puhuttelevia tanssinumeroita. Iltaa säestää kitaristi Tony de María. Rautakorven ryhmäkoreografioissa laulaa Taija Robalta.</p><p>Illassa ovat läsnä kaikki flamencon sävyt ilosta syvään suruun ja mietteliäisyydestä huumoriin. Tule mukaan kokemaan tämä tunnelmallinen kattaus suomalaisen flamenco-opetuksen hedelmiä!</p><p><b>Laulajat:</b></p><p>Inkeri Antikainen, Ilona Kallio, Terhi Ketolainen, Anna Palmio, Francesc Palomeras, Liisa Pekonen, Leena Pietilä, Niina Putkonen, Anja Tyrväinen, Timo Tyrväinen ja Taija Robalta</p><p><b>Tanssijat:</b></p><p>Carola Envall, Katia Geissler, Susanne Grönroos, Hilla Hanhela, Jonna Karoliina Huttunen, Meri Jalonen, Katjalina Jyllilä, Katariina Kankaanpää, Iida Kopra, Kukka-Maaria Kortesluoma, Inka Kovanen, Anita Laamanen, Camila Laine, Janna Lappalainen, Lauri Lehtimäki, Karoliina Leisti, Laura Leskelä, Laura Lindén, Sini Mannerhovi, Nora Mekkid, Anu Mets, Leena Mustonen, Mari Mäkinen, Maria Paile-Hyvärinen, Tiina Partanen, Roosa Pietilä, Milla-Maija Saari, Liisa Sarén, Kristiina Taivalkoski-Shilov, Maria Talvitie, Assi Sten, Petra Valve ja Taina Välitalo</p><p><b>Tietoa opettajista: </b></p><p>Marja Rautakorpi on Suomessa ja Espanjassa kouluttautunut tanssialan ammattilainen (tanssitaiteen maisteri), joka etsii tuoreita ja kokeellisia näkökulmia flamencon tekemiseen. Hän työskentelee monipuolisesti taiteen vapaalla kentällä tanssija-koreografina, opettajana ja tuottajana niin flamencon parissa kuin taiteidenvälisissä produktioissa. Keväällä 2024 Marja palkittiin Pro Dance -stipendillä tunnustuksena hänen tähänastisesta ansiokkaasta tanssijan urastaan. Marja opettaa flamencotanssia tällä hetkellä vakituisesti Helsingissä Indictus Studiolla sekä kurssittaa aktiivisesti eri puolilla Suomea.</p><p>Taija Robalta on helsinkiläinen flamencolaulaja ja -laulunopettaja ja suomalaisen flamencolaulun kantava voima. Hän on asunut vuosia Sevillassa pääopettajanaan flamencolaulun elävä legenda, Esperanza Fernández. Sevillassa Taija on säestänyt laulullaan myös tanssitunteja (mm. Carmen Ledesma, Miguel Vargas) ja esiintynyt kaupungin tablaoissa niin laulajana kuin tanssijanakin. Suomessa Taija on tullut vuosituhannen vaihteen jälkeen laulajana tutuksi tanssiteoksissa, tablaokeikoilla ja oppilasnäytöksissä. Hän on toiminut flamencolaulun opettajana aina Taideyliopiston Sibelius-Akatemiaa myöten ja pitää vakituisia laulutunteja tällä hetkellä Helsingissä ja Tampereella. Tänä vuonna Taija viettää 20-vuotistaiteilijajuhlaa flamencolaulajana!</p><p>Kesto: 2h (sis. väliaika)</p>", "sv": "<p>Juurevin askelin, väkevin sävelin vol. 2 är en stämningsfull vårföreställning med Marja Rautakorpis och Taija Robaltas flamencoelever, som denna vår hålls på Gamlasgården.</p><p>Danskonstnären Marja Rautakorpi och sångerskan och sångläraren Taija Robalta förenar än en gång sina krafter och framför program som de arbetat med tillsammans med sina sång- och danselever under en gemensam kväll. Här utlovas en aldrig tidigare skådad cocktail av flamencosång av flera sångare och talande dansnummer. Kvällen ackompanjeras av gitarristen Tony de María. Taija Robalta sjunger i Rautakorpis gruppkoreografier.</p><p>Alla flamencons toner, från glädje till djup sorg och från tankfullhet till humor, är närvarande under kvällen. Kom med och upplev denna stämningsfulla dukning av frukter av den finländska flamencoundervisningen.</p><p>Sångare:<br>Inkeri Antikainen, Ilona Kallio, Terhi Ketolainen, Anna Palmio, Francesc Palomeras, Liisa Pekonen, Leena Pietilä, Niina Putkonen, Anja Tyrväinen, Timo Tyrväinen och Taija Robalta</p><p>Dansare:<br>Carola Envall, Katia Geissler, Susanne Grönroos, Hilla Hanhela, Jonna Karoliina Huttunen, Meri Jalonen, Katjalina Jyllilä, Katariina Kankaanpää, Iida Kopra, Kukka-Maaria Kortesluoma, Inka Kovanen, Anita Laamanen, Camila Laine, Janna Lappalainen, Lauri Lehtimäki, Karoliina Leisti, Laura Leskelä, Laura Lindén, Sini Mannerhovi, Nora Mekkid, Anu Mets, Leena Mustonen, Mari Mäkinen, Maria Paile-Hyvärinen, Tiina Partanen, Roosa Pietilä, Milla-Maija Saari, Liisa Sarén, Kristiina Taivalkoski-Shilov, Maria Talvitie, Assi Sten, Petra Valve och Taina Välitalo</p><p>Information om lärarna:<br>Marja Rautakorpi är ett dansproffs (magister i danskonst), utbildad i Finland och Spanien, som letar efter fräscha och experimentella perspektiv på flamencon. Hon arbetar mångsidigt inom det fria konstfältet som dansare och koreograf, lärare och producent såväl inom flamencon som i tvärkonstnärliga produktioner. Våren 2024 tilldelades Marja ett Pro Dance-stipendium som ett erkännande för hennes framstående dansarkarriär hittills. Marja undervisar för närvarande regelbundet i flamencodans på Indictus Studio i Helsingfors och håller aktivt kurser på olika håll i Finland.</p><p>Taija Robalta är flamencosångerska och -sånglärare från Helsingfors och en bärande kraft i den finländska flamencosången. Hon har bott i Sevilla i åratal och haft den levande flamencosånglegenden Esperanza Fernández som sin huvudlärare. I Sevilla har Taija också ackompanjerat danslektioner (med bl.a. Carmen Ledesma, Miguel Vargas) med sin sång och uppträtt på stadens tablaoer som både sångerska och dansare. Sedan millennieskiftet har Taija blivit känd i Finland som sångerska i dansproduktioner, tablaospelningar och studerandeföreställningar. Hon har undervisat i flamencosång ända upp till Konstuniversitetets Sibelius-Akademi och håller för närvarande regelbundna sånglektioner i Helsingfors och Tammerfors. I år firar Taija sitt 20-årsjubileum som flamencosångerska!</p><p>Längd: 2 h (inkl. paus)</p>", "en": "<p>This spring, Kanneltalo will host the Juurevin askelin, väkevin sävelin vol. 2 (Rootsy steps and powerful tunes vol. 2), an atmospheric spring performance by Marja Rautakorpi and Taija Robalta's flamenco students.</p><p>Dance artist Marja Rautakorpi and singer and singing teacher Taija Robalta will once again join forces to bring the programme they have worked on with their singing and dancing students to the stage. The audience will be served an unprecedented cocktail of flamenco songs performed by several singers, as well as evocative dance numbers. The evening will be accompanied by guitarist Tony de María. Taija Robalta’s singing will accompany Rautakorpi's group choreographies.</p><p>The evening will include all the nuances of flamenco, from joy to deep sadness and from contemplation to humour. Come and experience this display of the fruits of Finnish flamenco teaching full of feeling!</p><p>Singers:<br>Inkeri Antikainen, Ilona Kallio, Terhi Ketolainen, Anna Palmio, Francesc Palomeras, Liisa Pekonen, Leena Pietilä, Niina Putkonen, Anja Tyrväinen, Timo Tyrväinen and Taija Robalta</p><p>Dancers:<br>Carola Envall, Katia Geissler, Susanne Grönroos, Hilla Hanhela, Jonna Karoliina Huttunen, Meri Jalonen, Katjalina Jyllilä, Katariina Kankaanpää, Iida Kopra, Kukka-Maaria Kortesluoma, Inka Kovanen, Anita Laamanen, Camila Laine, Janna Lappalainen, Lauri Lehtimäki, Karoliina Leisti, Laura Leskelä, Laura Lindén, Sini Mannerhovi, Nora Mekkid, Anu Mets, Leena Mustonen, Mari Mäkinen, Maria Paile-Hyvärinen, Tiina Partanen, Roosa Pietilä, Milla-Maija Saari, Liisa Sarén, Kristiina Taivalkoski-Shilov, Maria Talvitie, Assi Sten, Petra Valve and Taina Välitalo</p><p>Information about the teachers:<br>Marja Rautakorpi is a dance professional (Master of Arts, Dance) trained in Finland and Spain, who is looking for fresh and experimental approaches to flamenco. She works in a variety of fields in the liberal arts as a dancer-choreographer, teacher and producer, both in flamenco and in inter-artistic productions. In spring 2024, Marja was awarded a Pro Dance scholarship in recognition of her distinguished dancing career to date. Marja currently teaches flamenco dance on a regular basis in Helsinki at Indictus Studio and she is active in providing dance courses in different parts of Finland.</p><p>Taija Robalta is a Helsinki-based flamenco singer and singing teacher and the driving force behind Finnish flamenco singing. She lived in Seville for years, where she was taught by the living legend of flamenco, Esperanza Fernández. In Seville, Taija also accompanied dance classes (Carmen Ledesma and Miguel Vargas, among others) and performed in the city's tablaos as a singer and dancer. Since the turn of the millennium, Taija has become known in Finland as a singer in dance productions, tablao performances and student concerts. She has been a teacher of flamenco singing in places such as the Sibelius Academy of the University of the Arts. She currently gives regular singing lessons in Helsinki and Tampere. This year, Taija celebrates her 20th anniversary as a flamenco singer!</p><p>Duration: 2 h (incl. intermission)</p>" }, "name": { "fi": "Juurevin askelin, väkevin sävelin vol. 2 – Marja Rautakorven ja Taija Robaltan flamenco-oppilaiden kevätesitys", "sv": "Juurevin askelin, väkevin sävelin vol. 2 – Vårföreställning med Marja Rautakorpis och Taija Robaltas flamencoelever", "en": "Juurevin askelin, väkevin sävelin vol. 2 – Spring performance by Marja Rautakorpi and Taija Robalta’s flamenco students" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67646/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68251", "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: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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/tanssin-juhlaa-helsingin-tanssikeskuksen-kevatnaytos-stoa-21463191/", "sv": "https://www.lippu.fi/event/tanssin-juhlaa-helsingin-tanssikeskuksen-kevatnaytos-stoa-21463191/", "en": "https://www.lippu.fi/event/tanssin-juhlaa-helsingin-tanssikeskuksen-kevatnaytos-stoa-21463191/" }, "description": null, "price": { "fi": "24,80€ / 19,80€", "sv": "24,80€ / 19,80€", "en": "24,80€ / 19,80€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1652170, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-17T10:13:34.802746Z", "last_modified_time": "2026-03-17T10:13:34.802766Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780740.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1652170/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-17T10:13:34.660013Z", "last_modified_time": "2026-03-20T01:14:20.997498Z", "date_published": null, "start_time": "2026-05-13T16: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": "Tanssin juhlaa – Helsingin Tanssikeskuksen vuoden 2026 kevätnäytös polkaisee kesän käyntiin ryminällä, kun lavan ottaa haltuun suuri joukko tanssijoita alkeista edistyneisiin ja ammattilaisiin.", "sv": "Helsingin Tanssikeskus våruppvisning sparkar igång våren när ett stort antal dansare, från nybörjare till längre hunna och proffs, intar scenen.", "en": "Helsingin Tanssikeskus’s spring performance will welcome summer with a bang, as a large number of dancers from beginners to advanced enthusiasts and professionals take over the stage." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/111C5A3FA92935E079F573D8BE44F0A5/Tanssin_juhlaa_Helsingin_Tanssikeskuksen_kevatnaytos_", "sv": "http://www.stoa.fi/sv/evenemang/event/111C5A3FA92935E079F573D8BE44F0A5/Dansfest_Helsingin_Tanssikeskus_varuppvisning", "en": "http://www.stoa.fi/en/events/event/111C5A3FA92935E079F573D8BE44F0A5/_A_celebration_of_dance_Helsingin_Tanssikeskus_s_spring_performance" }, "description": { "fi": "<p>Tanssin juhlaa – Helsingin Tanssikeskuksen vuoden 2026 kevätnäytös polkaisee kesän käyntiin ryminällä, kun lavan ottaa haltuun suuri joukko tanssijoita alkeista edistyneisiin ja ammattilaisiin.</p><p>Lavalla tullaan näkemään monipuolisesti flamencoa, balettia, nykytanssia ja irlantilaista tanssia.</p><p>Kolmen taidemuodon perinteet kohtaavat saman katon alla juhlistaen Helsingin Tanssikeskuksessa tarjottavaa tanssin opetusta. Luvassa on tanssin riemua, rytmistä ilotulitusta ja liikkeen herkkyyttä.</p><p>Illan aikana kuullaan myös elävää musiikkia aurinkoisen Mira que Mira -flamencokuoron sekä flamencoryhmiä säestämään saapuvien flamencomusiikin ammattilaisten esittämänä.</p><p>Esiintyjien ja ryhmien ohjaamisesta ja koreografioista vastaavat omien lajiensa ammattilaiset:</p><p>Anna Palmio</p><p>Anne Riikola-Sarkkila</p><p>Heidi Aaltonen</p><p>Laura Merisaari</p><p>Laura Vilhonen</p><p>Lyylia Koivuniemi</p><p>Marianna Stråhlmann</p><p>Minna Tervamäki</p><p>Terhi Spackstein</p><p>Vilma Kivinen</p><p>Flamencomuusikot:</p><p>Anna Murtola, laulu</p><p>Taija Tyrväinen, laulu</p><p>Niina Putkonen, laulu</p><p>Joonas Widenius, kitara</p><p>Tony de Maria, kitara</p><p>Juho Krouvi, kitara</p><p>Ricardo Padilla, lyömäsoittimet</p><p>Järjestäjä: Helsingin Tanssikeskus<br>Kesto n. 2 tuntia (sis. väliajan)</p>", "sv": "<p>Helsingin Tanssikeskus våruppvisning sparkar igång våren när ett stort antal dansare, från nybörjare till längre hunna och proffs, intar scenen.</p><p>På scenen bjuds det på en mångsidig mix av flamenco, balett och irländsk dans. Tre konstformers traditioner samlas under samma tak för att uppmärksamma Helsingin Tanssikeskus dansundervisning. Här utlovas dansglädje, ett rytmiskt fyrverkeri och känsliga rörelser.<br> <br>Under kvällen får vi också höra levande musik framförd av proffs inom flamencomusik, som kommer för att ackompanjera flamencokören Mira que Mira och flamencogrupperna.</p><p>Arrangör: Helsingin Tanssikeskus<br>Längd ca 2 h (inklusive paus)</p>", "en": "<p>Helsingin Tanssikeskus’s spring performance will welcome summer with a bang, as a large number of dancers from beginners to advanced enthusiasts and professionals take over the stage.</p><p>The programme will feature a variety of performances spanning flamenco, ballet and Irish dance.</p><p>The traditions of the three art forms meet under one roof to celebrate the dance education offered at Helsingin Tanssikeskus. The audience is in for the joy of dance, rhythmic fireworks and delicate movement.<br> <br>The evening will also feature live music performed by the sunny Mira que Mira flamenco choir and flamenco music professionals accompanying flamenco groups.</p><p>Organiser: Helsingin Tanssikeskus<br>Duration approx. 2 h, including intermission</p>" }, "name": { "fi": "Tanssin juhlaa – Helsingin Tanssikeskuksen kevätnäytös", "sv": "Dansfest – Helsingin Tanssikeskus våruppvisning", "en": "A celebration of dance – Helsingin Tanssikeskus’s spring performance" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68251/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67492", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/name-20945085", "sv": "https://www.lippu.fi/event/name-20945085", "en": "https://www.lippu.fi/event/name-20945085" }, "description": null, "price": { "fi": "55-60 €", "sv": "55-60 €", "en": "55-60 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493854, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-21T14:12:58.994302Z", "last_modified_time": "2025-11-21T14:12:58.994322Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781599.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493854/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-18T17:13:00.742472Z", "last_modified_time": "2026-03-20T01:14:20.817332Z", "date_published": null, "start_time": "2026-05-13", "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": "Ruotsalainen supertähti Peter Jöback Suomeen ensi keväänä", "sv": "Den svenska superstjärnan Peter Jöback kommer till Finland i vår", "en": "Swedish superstar Peter Jöback comes to Finland this spring" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E0E9DF45C8286D5A78C0CB3EC265AC11/Peter_Joback_SE_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/E0E9DF45C8286D5A78C0CB3EC265AC11/Peter_Joback_SE_", "en": "http://www.savoyteatteri.fi/en/events/event/E0E9DF45C8286D5A78C0CB3EC265AC11/Peter_Joback_SE_" }, "description": { "fi": "<p>Ruotsalainen supertähti Peter Jöback Suomeen ensi keväänä</p><p>Pohjoismaiden rakastetuimpiin ja monipuolisimpiin artisteihin lukeutuva <b>Peter Jöback</b> palaa Suomeen ensi keväänä. Ruotsalaisartisti esiintyy yhdessä pianisti <b>Nils-Petter Ankarblomin</b> kanssa En kväll med Jöback -konserttikiertueella, jonka päätöskonsertti nähdään Helsingin Savoy-teatterissa keskiviikkona 13. toukokuuta. Intiimin ja lämpimän konserttielämyksen lipunmyynti käynnistyy Lippu.fissä torstaina 20. marraskuuta klo 11. <br> <br>Uraansa yli genrerajojen rakentanut laulaja-lauluntekijä, näyttelijä ja musikaaliartisti Peter Jöback on moninkertaisesti platinaa myynyt artisti, jolla on useita Ruotsin Grammy-ehdokkuuksia sekä radioalan palkintoja. Läpimurtonsa vuonna 1995 Kristinä från Duvemåla-musikaalissa tehneen Jöbackin kappale <i>Guldet blev till sand</i> pysytteli Svensktoppen-musiikkilistalla 110 viikon ajan. Sittemmin hän on hurmannut yleisöjä voimakkailla ja tunnepitoisilla live-esiintymisillään ympäri Skandinaviaa, Lontoon West Endiä ja Broadwayta unohtamatta. <br> <br>Aiemmin kuluneena vuonna Jöback julkaisi kriitikoidenkin laajasti ylistämän 14. studioalbuminsa <i>Atlas</i>, jolla vierailee muun muassa brittiartistit Sophie Ellis Bextor sekä Ed Harcourt. Tuotteliaan artistin heinäkuussa ilmestynyt single <i>The Spectrum of Love</i> oli Stockholm Priden virallinen tunnuskappale. Syksyn ajan artisti on kiertänyt areenoita yhdessä Ola Salon kanssa, jonka kanssa yhteistyö jatkuu juuri julkaistulla singlellä <i>Two of a Kind</i>. <br> <br><b>PETER JÖBACK (SE) – EN KVÄLL MED JÖBACK</b></p><p>Ovet klo 18:00. Showtime vahvistuu myöhemmin.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>Den svenska superstjärnan Peter Jöback kommer till Finland i vår</p><p>Peter Jöback, som är en av Nordens mest älskade och mångsidiga artister, återvänder till Finland i vår. Den svenske artisten uppträder tillsammans med pianisten Nils-Petter Ankarblom med konsertturnén En kväll med Jöback, vars sista konsert äger rum på Savoy-teatern i Helsingfors onsdagen den 13 maj. Biljetter till den intima och varma konsertupplevelsen släpps till försäljning på Lippu.f torsdagen den 20 november kl. 11.</p><p>Singer-songwritern, skådespelaren och musikalartisten Peter Jöback, som har byggt upp sin karriär över genregränserna, har sålt platina många gånger om och har flera Grammisnomineringar och radiopriser i bagaget. Jöbacks genombrott kom med musikalen Kristina från Duvemåla 1995, och låten Guldet blev till sand låg på Svensktoppen i 110 veckor. Sedan dess har han imponerat på publiken med kraftfulla och känslosamma liveframträdanden i hela Skandinavien och även i Londons West End och på Broadway.</p><p>Förra året släppte Jöback sitt kritikerrosade fjortonde studioalbum Atlas, som bland annat gästas av de brittiska artisterna Sophie Ellis Bextor och Ed Harcourt. Den produktiva artistens singel The Spectrum of Love, som släpptes i juli, var den officiella låten för Stockholm Pride. Under hösten har han turnerat på arenor tillsammans med Ola Salo, och samarbetet fortsätter med den nysläppta singeln Two of a Kind.</p><p>PETER JÖBACK (SE) – EN KVÄLL MED JÖBACK</p><p>Dörrarna öppnas kl. 18.00. Showtime bekräftas senare.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>Swedish superstar Peter Jöback comes to Finland this spring</p><p>One of the most beloved and versatile artists in the Nordic countries, Peter Jöback will return to Finland this spring. The Swedish artist will perform together with pianist Nils-Petter Ankarblom on the En kväll med Jöback concert tour, the final concert of which will take place at the Savoy Theatre in Helsinki on Wednesday 13 May. Tickets for the intimate and warm concert experience went on sale on Lippu.fi on Thursday 20 November at 11.00.</p><p>Having built a career across genres, singer-songwriter, actor and musical artist Peter Jöback is a multi-platinum selling artist with several Swedish Grammy nominations and radio awards to his name. Jöback had his breakthrough in 1995 when his song Guldet blev till sand, written for the musical Kristinä från Duvemåla, stayed in the Svensktoppen music charts for 110 weeks. He has since been wowing audiences with powerful and emotional live performances across Scandinavia, not forgetting London’s West End and Broadway.</p><p>Last year, Jöback released his critically acclaimed 14th studio album Atlas, which features guest appearances by artists such as Sophie Ellis Bextor and Ed Harcourt from the UK. The prolific artist’s single The Spectrum of Love, released in July, was the official theme song for Stockholm Pride. Throughout the autumn, the artist toured arenas together with Ola Salo, with whom Jöback continued collaborating on the single Two of a Kind.</p><p>PETER JÖBACK (SE) – EN KVÄLL MED JÖBACK</p><p>The doors will open at 18.00. Showtime to be confirmed later.</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p>" }, "name": { "fi": "Peter Jöback (SE)", "sv": "Peter Jöback (SE)", "en": "Peter Jöback (SE)" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Fullsteam Agency Oy", "sv": "Fullsteam Agency Oy", "en": "Fullsteam Agency Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67492/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68088", "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: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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494817, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-09T14:13:22.000974Z", "last_modified_time": "2026-02-09T14:13:22.000992Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780515.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494817/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-09T14:13:21.778797Z", "last_modified_time": "2026-03-20T01:14:20.608536Z", "date_published": null, "start_time": "2026-05-13T15: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": "Jazz for Kids -konsertteihin ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä volyymillä aulassa.", "sv": "Jazz for Kids-konserterna är öppna för alla, oavsett ålder! Professionella musiker framför sina egna verk med en barnvänlig volym i lobbyn.", "en": "Jazz for Kids concerts welcome everyone from babies to grandparents! Professional musicians perform their own work at a child-friendly volume in the lobby." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/65AB1B8383955E28B423F403A23B2133/Jazz_for_Kids_Oona_Mattsson_Riitta_Paakki", "sv": "http://www.vuotalo.fi/sv/evenemang/event/65AB1B8383955E28B423F403A23B2133/Jazz_for_Kids_Oona_Mattsson_Riitta_Paakki", "en": "http://www.vuotalo.fi/en/events/event/65AB1B8383955E28B423F403A23B2133/Jazz_for_Kids_Oona_Mattsson_Riitta_Paakki" }, "description": { "fi": "<p>Jazz for Kids -konsertteihin ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä volyymillä aulassa.</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 <br>kulttuurikeskusten helposti saavutettavissa aulatiloissa.</p><p>Uunituoreen Luotsi-yhtyeen muusikot, alttosaksofonisti ja huilisti Oona Mattsson sekä pianisti Riitta Paakki, esittävät Jazz Suomi 100 -juhlavuoden kunniaksi kiehtovan kattauksen suomalaisia jazzoriginaaleja sekä omaa tuotantoaan. Luvassa on jazzyleisölle sekä tuttuja että harvemmin kuultuja helmiä tämän päivän tulkintoina, joten katse suuntautuu historian lisäksi vahvasti tulevaisuuteen.</p><p>Oona Mattsson on esiintynyt useiden tunnettujen kotimaisten jazzmuusikoiden kanssa, sekä big bandien että pienempien kokoonpanojen riveissä. Hänen soittoaan voi kuulla muun muassa Kanvas-yhtyeen ja Siina Suutarisen keväällä 2025 julkaistuilla albumeilla. Riitta Paakki on puolestaan arvostettu jazzmuusikko, säveltäjä ja yhtyeenjohtaja, joka sai Jazzliiton Yrjö-palkinnon vuonna 2019. Hän on julkaissut omien yhtyeidensä kanssa seitsemän albumia.</p><p>Tilaisuuden kesto on 45 min. Yhtye esiintyy noin 35 minuuttia, jonka jälkeen yleisö voi tervehtiä muusikoita ja soittimia.</p><p>Oona Mattsson – alttosaksofoni <br>Riitta Paakki – piano</p><p>Suomen Jazzliiton ja Helsingin kulttuurikeskusten Jazz for Kids -toimintamalli pohjautuu samannimiseen konserttisarjaan, jota on järjestetty Espoon kulttuurikeskuksessa vuodesta 2015 yhteistyössä Espoon musiikkiopiston pop/jazzlinja Ebelin kanssa. Konseptin kehittäjä on Espoon musiikkiopiston pop/jazzlinja Ebeli.</p><p>Vuonna 2026 tulee kuluneeksi 100 vuotta siitä, kun jazz symbolisesti rantautui Andania-laivan mukana Suomeen. Vuosi on siten historiallinen kotimaisen jazzin juhlavuosi: Jazz Suomi 100 -juhlavuosi. Juhlavuosi nostaa esiin kotimaista jazzia ja sen tekijöitä niin Suomessa kuin ulkomailla, ja juhlii jazzia osana suomalaista kulttuuriperintöä. Jazz Suomi 100 -kampanjaa koordinoi Suomen Jazzliitto.</p><p>KOHDEYRHMÄ: lapset, perheet <br>KESTO: 45 min</p>", "sv": "<p>Jazz for Kids-konserterna är öppna för alla, oavsett ålder! Professionella musiker framför sina egna verk med en barnvänlig volym i lobbyn.</p><p>Jazz for Kids är en serie jazzkonserter på hög nivå där alla åldrar är välkomna! Professionella musiker framför sin egen produktion med barnvänlig volym i kulturcentrens lättillgängliga lobbyutrymmen.</p><p>Musikerna i det färska bandet Luotsi, altsaxofonisten och flöjtisten Oona Mattsson och Pianisten Riitta Paakki, framför en fascinerande blandning av finländska jazzoriginal och egen produktion för att uppmärksamma Jazz Finland 100-jubileumsåret. På programmet står både låtar som är välkända bland jazzpubliken och mindre kända pärlor i moderna tolkningar, så blicken riktas såväl mot historien som starkt framåt.</p><p>Oona Mattsson har framträtt med många kända finska jazzmusiker, både i storband och mindre ensembler. Man kan höra henne spela bland annat på gruppen Kanvas och Siina Suutarinens album från våren 2025. Riitta Paakki är en hyllad jazzmusiker, tonsättare och bandledare som tilldelades jazzförbundets Yrjö-pris år 2019. Hon har gett ut sju album med sina egna band.</p><p>Evenemanget varar i 45 minuter. Bandet spelar i ca 35 minuter, varefter publiken kan hälsa på musikerna och instrumenten.</p><p>Oona Mattsson – altsaxofon <br>Riitta Paakki – piano</p><p>Suomen Jazzliittos och Helsingfors kulturcenters verksamhetsmodell Jazz for Kids baserar sig på en konsertserie med samma namn som har ordnats på kulturcentren i Esbo sedan 2015 i samarbete med pop-/jazzlinjen Ebeli vid Espoon musiikkiopisto. Konceptet har utvecklats av pop-/jazzlinjen Ebeli vid Espoon musiikkiopisto.</p><p>År 2026 blir det 100 år sedan jazzen symboliskt landsteg i Finland med fartyget Andania. Året är alltså ett historiskt jubileumsår för den inhemska jazzen: Jubileumsåret Jazz Finland 100. Under jubileumsåret lyfter vi fram den finländska jazzen och dess artister både i Finland och utomlands samt firar jazzen som en del av det finländska kulturarvet. Kampanjen Jazz Suomi 100 samordnas av Suomen Jazzliitto.</p><p>KOHDEYRHMÄ: lapset, perheet <br>KESTO: 45 min</p>", "en": "<p>Jazz for Kids concerts welcome everyone from babies to grandparents! Professional musicians perform their own work at a child-friendly volume in the lobby.</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 lobbies of the City’s cultural centres.</p><p>The musicians of the newly formed Luotsi band, alto saxophonist and flutist Oona Mattsson and pianist Riitta Paakki, will perform a fascinating selection of Finnish jazz originals and their own compositions to celebrate the Jazz in Finland 100 anniversary year. With both familiar and less-heard gems for jazz audiences, interpreted in a contemporary way, the focus of the concert is not only on history but also on the future.</p><p>Oona Mattsson has performed with many well-known Finnish jazz musicians, both in big bands and smaller ensembles. Her playing can be heard on recordings such as the albums released by Kanvas and Siina Suutarinen in spring 2025. Riitta Paakki is an acclaimed jazz musician, composer and bandleader who received the Finnish Jazz Federation’s Yrjö Award in 2019. She has released seven albums with her own bands.</p><p>The duration of the event is 45 minutes. The band will perform for about 35 minutes, after which the audience can come greet the musicians and see the instruments.</p><p>Oona Mattsson – alto saxophone <br>Riitta Paakki – piano</p><p>The Jazz for Kids operating model of the Finnish Jazz Federation and City of Helsinki Cultural Centres is based on the concert series of the same name, which has been organised at the Espoo Cultural Centre since 2015 in cooperation with Espoo Music Institute’s pop/jazz line Ebeli. The concept was developed by Ebeli, the pop/jazz line at Espoo Music Institute.</p><p>2026 marks the 100th anniversary of jazz symbolically landing in Finland on the ship Andania. Thus, the year is a historic celebration of Finnish jazz: the Jazz in Finland 100 centenary. The centenary will highlight Finnish jazz and its artists both in Finland and abroad, and celebrate jazz as part of the Finnish cultural heritage. The Jazz in Finland 100 campaign is coordinated by the Finnish Jazz Federation.</p><p>KOHDEYRHMÄ: lapset, perheet <br>KESTO: 45 min</p>" }, "name": { "fi": "Jazz for Kids: Oona Mattsson & Riitta Paakki", "sv": "Jazz for Kids: Oona Mattsson & Riitta Paakki", "en": "Jazz for Kids: Oona Mattsson & Riitta Paakki" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68088/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68245", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": 1643197, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T13:13:58.489784Z", "last_modified_time": "2026-03-16T13:13:58.489800Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786458.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1643197/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T13:13:58.369761Z", "last_modified_time": "2026-03-20T01:14:20.488416Z", "date_published": null, "start_time": "2026-05-13", "end_time": "2026-06-30", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D50B706A0B2D9A3FC8B30813AB05C3C8/Made_in_Vuosaari_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D50B706A0B2D9A3FC8B30813AB05C3C8/Made_in_Vuosaari_", "en": "http://www.vuotalo.fi/en/events/event/D50B706A0B2D9A3FC8B30813AB05C3C8/Made_in_Vuosaari" }, "description": { "fi": "<p>Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta.</p><p>Projektin tarkoitus on kurottaa kohti alueen asukkaita ja saada tutkimaan omia kodin tavaroita. Mistä ne ovat lähtöisin? Onko niillä käyttöä? Minne ne tulevat päätymään, kun niitä ei enää tarvita?</p><p>Vuosaarelaisten lahjoittamista tarpeettomista tavaroista on tehty koosteita kirjaston elämäkertaosastoille. Esinekoosteet näyttäytyvät alueen asukkaiden muotokuvina. Lahjoitetut esineet on skannattu ja tulostettu uuteen kokonaisuuteen 3D-tulostimella. Näin näyttelyn osaksi tuodaan paikallisten asukkaiden läsnäoloa ja mikrohistoriaa.</p><p>Alueen asukkailta kerätyt esineet ovat suurelta osin Kiinassa massatuotettuja tavaroita, joiden merkitys on hävinnyt uutuusarvon kadottua. Ehkä juuri tässä piilee nykyhetkessämme kytevä kriisi: maailma täyttyy muovista ja tavarasta, jota kukaan ei arvosta tai halua. Miten muuttaisimme suhteemme esineisiin vaalivaksi ja arvostavaksi? Miten oppisimme näkemään uutuusarvon ohi ja suosimaan kestäväksi suunniteltuja, korjattavissa olevia, tarinoiden kyllästämiä tavaroita?</p><p>Anne Roininen on kuvanveistäjä, joka työskentelee usein paikkasidonnaisesti ja prosessipohjaisesti. Kohtaamiset ihmisten kanssa ovat tärkeä osa Roinisen työskentelyä, ja teosten taustalla on usein poliittinenkin lataus. Lue lisää:https://anneroininen.com/</p><p>Löydät teokset Elämäkerta-hyllyistä, Vuosaaren kirjaston puolelta.</p>" }, "name": { "fi": "Made in Vuosaari – Vuosaaren kirjastossa", "sv": "Made in Vuosaari – Vuosaaren kirjastossa", "en": "Made in Vuosaari – Vuosaaren kirjastossa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68245/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67469", "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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494013, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:11.160660Z", "last_modified_time": "2025-12-03T08:13:11.160676Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781436.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494013/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T08:13:11.046257Z", "last_modified_time": "2026-03-20T01:14:20.239203Z", "date_published": null, "start_time": "2026-05-12T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!", "sv": "Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!", "en": "Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9F1D8C4D84688DEDF9DF5DE98CA77820/Yhteislaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9F1D8C4D84688DEDF9DF5DE98CA77820/Allsang", "en": "http://www.malmitalo.fi/en/events/event/9F1D8C4D84688DEDF9DF5DE98CA77820/Singalongs" }, "description": { "fi": "<p>Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br>Yhteislauluja järjestetään Malmitalon pienessä salissa kuukauden ensimmäisinä tiistaina seuraavasti:</p><p>Ti 13.1. klo 17.00<br>Ti 3.2. klo 17.00<br>Ti 10.3. klo 17.00<br>Ti 14.4. klo 17.00<br>Ti 12.5. klo 17.00</p><p>Kesto: 1 t<br>Vapaa pääsy</p>", "sv": "<p>Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!</p><p>Under ledning av Jukka Okkonen och Pauli Kainulainen får var och en sjunga härliga favoriter med hela sitt hjärta.<br>Allsången ordnas i den lilla salen i Malms kulturhus den första tisdagen i månaden enligt följande:</p><p>Tis 13.1 kl. 17.00<br>Tis 3.2 kl. 17.00<br>Tis 10.3 kl. 17.00<br>Tis 14.4 kl. 17.00<br>Tis 12.5 kl. 17.00</p><p>Längd: 1 h<br>Fritt inträde</p>", "en": "<p>Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!</p><p>Under the direction of Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to a number of wonderful evergreens.<br>Community singalongs will be held in the small hall of Malmitalo on the first Tuesday of the month as follows:</p><p>Tue 13 January at 17.00<br>Tue 3 February at 17.00<br>Tue 10 March at 17.00<br>Tue 14 April at 17.00<br>Tue 12 May at 17.00</p><p>Duration: 1 h<br>Free entry</p>" }, "name": { "fi": "Yhteislaulut", "sv": "Allsång", "en": "Singalongs" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67469/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68097", "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": 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": 1494836, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-10T10:13:07.993790Z", "last_modified_time": "2026-02-10T10:13:07.993804Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784521.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494836/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-10T10:13:07.887828Z", "last_modified_time": "2026-03-20T01:14:19.610071Z", "date_published": null, "start_time": "2026-05-12T09:00:00Z", "end_time": "2026-05-12T10:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Millaista on olla yhteyttävä puu? Miltä sienirihmastossa kulkevat ravinteet kuulostavat?", "sv": "Hur är det att vara ett assimilerande träd? Hur låter de näringsämnen som rör sig i svamparnas mycel?", "en": "What is it like to be a photosynthesising tree? What do the nutrients travelling through the mycelium sound like?" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7F4D42B7F9F6DD87D97F3368B3FB028E/Toisissa_tiloissa_-kollektiivi_METSIYDYTAAN_-tyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/7F4D42B7F9F6DD87D97F3368B3FB028E/Toisissa_tiloissa-kollektivet_METSIYDYTAAN_-verkstader", "en": "http://www.vuotalo.fi/en/events/event/7F4D42B7F9F6DD87D97F3368B3FB028E/Other_Spaces_collective_INTO_THE_FOREST_workshops" }, "description": { "fi": "<p>Millaista on olla yhteyttävä puu? Miltä sienirihmastossa kulkevat ravinteet kuulostavat?</p><p>Metsiydytään! -työpajoissa tutkitaan metsäekosysteemin prosesseja taidetyöskentelyä ja luonnontiedettä yhdistäen. Työpajoissa alakoulun oppilaat tutustuvat kokemuksellisesti metsäekosysteemin eri ilmiöihin yhdessä tehtävien keholliseen oppimiseen perustuvien harjoitteiden kautta. Tutkimme metsän eri osasia sekä eläydyimme metsäeliöiden kiehtoviin vuorovaikutussuhteisiin ja kiertokulkuihin.</p><p>Työpaja metsäympäristöä lähestytään toisten lajien näkökulmasta käsin. Sen tavoitteena on syventää lasten luontosuhdetta myönteisten oivallusten ja elämysten kautta. Työpaja lisää tietoa metsäluonnosta ja sen merkityksestä sekä tarjoaa opettajille kehollisen oppimisen työkaluja metsäsuhteen ja metsän eri ilmiöiden käsittelemiseen.</p><p>Työpajojen suunnittelusta ja ohjauksesta vastaavat Toisissa tiloissa -esitystaiteen kollektiivin Kaisa-Liisa Logrén ja Heli Keto. Toisissa tiloissa -esitystaiteen kollektiivi on kehittänyt kehollisia harjoitteita ja osallistavia esityksiä jo yli 20 vuoden ajan. Työpajoissa käytettävä metodi: kehollinen samaistuminen luonnon prosesseihin tarjoaa poikkeuksellisen reitin ekologisen ymmärryksen kasvattamiseen.</p><p>Ryhmille pakollinen ilmoittautuminen etukäteen: kultus.hel.fi</p><p>Kieli: suomi<br>Kesto: noin 1,5 tuntia<br>Vapaa pääsy</p>", "sv": "<p>Hur är det att vara ett assimilerande träd? Hur låter de näringsämnen som rör sig i svamparnas mycel?</p><p>Metsiydytään!-verkstäderna utforskar vi processer i skogens ekosystem genom en kombination av konst och naturvetenskap. I verkstäderna får lågstadieelever genom upplevelser bekanta sig med olika fenomen i skogens ekosystem genom gemensamma övningar som baserar sig på kroppsligt lärande. Vi utforskar skogens olika delar och lever oss in i skogsvarelsernas fascinerande relationer och kretslopp.</p><p>I verkstaden närmar vi oss skogsmiljön ur andra arters perspektiv. Dess mål är att fördjupa barnens relation till naturen genom positiva insikter och upplevelser. Verkstaden ökar kunskapen om skogsnaturen och dess betydelse och erbjuder läraren verktyg för kroppsligt lärande för att behandla relationen till skogen och olika fenomen i den.</p><p>Verkstäderna planeras och leds av Kaisa-Liisa Logrén och Heli Keto från Toisissa tiloissa-kollektivet för performancekonst. Toisissa tiloissa-kollektivet för performancekonst har utvecklat kroppsliga övningar och inkluderande föreställningar i över 20 år. Metoden som används i verkstäderna: när man kroppsligen identifierar sig med naturens processer öppnar sig en exceptionell väg till en ökad ekologisk förståelse.</p><p>Grupper måste anmäla sig i förväg: kultus.hel.fi</p><p>Språk: finska<br>Längd: cirka 1,5 h<br>Fritt inträde</p>", "en": "<p>What is it like to be a photosynthesising tree? What do the nutrients travelling through the mycelium sound like?</p><p>The Into the Forest! workshops explore forest ecosystem processes by combining art work and natural science. In the workshops, primary school pupils learn experientially about different phenomena in the forest ecosystem through collaborative exercises based on bodily learning. We will explore different parts of the forest and immerse ourselves in the fascinating interactions and cycles of forest organisms.</p><p>The workshop approaches the forest environment from the perspective of other species. The aim is to deepen children’s relationship with nature through positive discoveries and experiences. The workshop increases awareness of forest nature and its importance, and provides teachers with bodily learning tools for delving into the different phenomena of forest relations and forests.</p><p>The workshops will be planned and instructed by Kaisa-Liisa Logrén and Heli Keto from the performance art collective Other Spaces. The Other Spaces performance art collective has been developing bodily exercises and participatory performances for over 20 years. The method used in the workshops: bodily identification with natural processes provides an exceptional route to increasing ecological understanding.</p><p>Groups must register in advance: kultus.hel.fi</p><p>Language: Finnish<br>Duration: roughly 1.5 h<br>Free entry</p>" }, "name": { "fi": "Toisissa tiloissa -kollektiivi: METSIYDYTÄÄN! -työpajat – Luonnontiedettä ja taidetta yhdistävät työpajat 1.–2.-luokkalaisille", "sv": "Toisissa tiloissa-kollektivet: METSIYDYTÄÄN!-verkstäder – Verkstäder för barn i årskurs 1–2 som kombinerar naturvetenskap och konst", "en": "Other Spaces collective: INTO THE FOREST! workshops – Workshops combining natural science and art for 1st–2nd graders" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68097/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68096", "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": 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": 1494835, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-10T10:13:07.632332Z", "last_modified_time": "2026-02-10T10:13:07.632346Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784520.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494835/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-10T10:13:07.515803Z", "last_modified_time": "2026-03-20T01:14:19.477424Z", "date_published": null, "start_time": "2026-05-12T07:00:00Z", "end_time": "2026-05-12T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Millaista on olla yhteyttävä puu? Miltä sienirihmastossa kulkevat ravinteet kuulostavat?", "sv": "Hur är det att vara ett assimilerande träd? Hur låter de näringsämnen som rör sig i svamparnas mycel?", "en": "What is it like to be a photosynthesising tree? What do the nutrients travelling through the mycelium sound like?" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/79C0CE19AE03EAB9E2B2FBDDAEB90D92/Toisissa_tiloissa_-kollektiivi_METSIYDYTAAN_-tyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/79C0CE19AE03EAB9E2B2FBDDAEB90D92/Toisissa_tiloissa-kollektivet_METSIYDYTAAN_-verkstader", "en": "http://www.vuotalo.fi/en/events/event/79C0CE19AE03EAB9E2B2FBDDAEB90D92/Other_Spaces_collective_INTO_THE_FOREST_workshops" }, "description": { "fi": "<p>Millaista on olla yhteyttävä puu? Miltä sienirihmastossa kulkevat ravinteet kuulostavat?</p><p>Metsiydytään! -työpajoissa tutkitaan metsäekosysteemin prosesseja taidetyöskentelyä ja luonnontiedettä yhdistäen. Työpajoissa alakoulun oppilaat tutustuvat kokemuksellisesti metsäekosysteemin eri ilmiöihin yhdessä tehtävien keholliseen oppimiseen perustuvien harjoitteiden kautta. Tutkimme metsän eri osasia sekä eläydyimme metsäeliöiden kiehtoviin vuorovaikutussuhteisiin ja kiertokulkuihin.</p><p>Työpaja metsäympäristöä lähestytään toisten lajien näkökulmasta käsin. Sen tavoitteena on syventää lasten luontosuhdetta myönteisten oivallusten ja elämysten kautta. Työpaja lisää tietoa metsäluonnosta ja sen merkityksestä sekä tarjoaa opettajille kehollisen oppimisen työkaluja metsäsuhteen ja metsän eri ilmiöiden käsittelemiseen.</p><p>Työpajojen suunnittelusta ja ohjauksesta vastaavat Toisissa tiloissa -esitystaiteen kollektiivin Kaisa-Liisa Logrén ja Heli Keto. Toisissa tiloissa -esitystaiteen kollektiivi on kehittänyt kehollisia harjoitteita ja osallistavia esityksiä jo yli 20 vuoden ajan. Työpajoissa käytettävä metodi: kehollinen samaistuminen luonnon prosesseihin tarjoaa poikkeuksellisen reitin ekologisen ymmärryksen kasvattamiseen.</p><p>Ryhmille pakollinen ilmoittautuminen etukäteen: kultus.hel.fi</p><p>Kieli: suomi<br>Kesto: noin 1,5 tuntia<br>Vapaa pääsy</p>", "sv": "<p>Hur är det att vara ett assimilerande träd? Hur låter de näringsämnen som rör sig i svamparnas mycel?</p><p>Metsiydytään!-verkstäderna utforskar vi processer i skogens ekosystem genom en kombination av konst och naturvetenskap. I verkstäderna får lågstadieelever genom upplevelser bekanta sig med olika fenomen i skogens ekosystem genom gemensamma övningar som baserar sig på kroppsligt lärande. Vi utforskar skogens olika delar och lever oss in i skogsvarelsernas fascinerande relationer och kretslopp.</p><p>I verkstaden närmar vi oss skogsmiljön ur andra arters perspektiv. Dess mål är att fördjupa barnens relation till naturen genom positiva insikter och upplevelser. Verkstaden ökar kunskapen om skogsnaturen och dess betydelse och erbjuder läraren verktyg för kroppsligt lärande för att behandla relationen till skogen och olika fenomen i den.</p><p>Verkstäderna planeras och leds av Kaisa-Liisa Logrén och Heli Keto från Toisissa tiloissa-kollektivet för performancekonst. Toisissa tiloissa-kollektivet för performancekonst har utvecklat kroppsliga övningar och inkluderande föreställningar i över 20 år. Metoden som används i verkstäderna: när man kroppsligen identifierar sig med naturens processer öppnar sig en exceptionell väg till en ökad ekologisk förståelse.</p><p>Grupper måste anmäla sig i förväg: kultus.hel.fi</p><p>Språk: finska<br>Längd: cirka 1,5 h<br>Fritt inträde</p>", "en": "<p>What is it like to be a photosynthesising tree? What do the nutrients travelling through the mycelium sound like?</p><p>The Into the Forest! workshops explore forest ecosystem processes by combining art work and natural science. In the workshops, primary school pupils learn experientially about different phenomena in the forest ecosystem through collaborative exercises based on bodily learning. We will explore different parts of the forest and immerse ourselves in the fascinating interactions and cycles of forest organisms.</p><p>The workshop approaches the forest environment from the perspective of other species. The aim is to deepen children’s relationship with nature through positive discoveries and experiences. The workshop increases awareness of forest nature and its importance, and provides teachers with bodily learning tools for delving into the different phenomena of forest relations and forests.</p><p>The workshops will be planned and instructed by Kaisa-Liisa Logrén and Heli Keto from the performance art collective Other Spaces. The Other Spaces performance art collective has been developing bodily exercises and participatory performances for over 20 years. The method used in the workshops: bodily identification with natural processes provides an exceptional route to increasing ecological understanding.</p><p>Groups must register in advance: kultus.hel.fi</p><p>Language: Finnish<br>Duration: roughly 1.5 h<br>Free entry</p>" }, "name": { "fi": "Toisissa tiloissa -kollektiivi: METSIYDYTÄÄN! -työpajat – Luonnontiedettä ja taidetta yhdistävät työpajat 1.–2.-luokkalaisille", "sv": "Toisissa tiloissa-kollektivet: METSIYDYTÄÄN!-verkstäder – Verkstäder för barn i årskurs 1–2 som kombinerar naturvetenskap och konst", "en": "Other Spaces collective: INTO THE FOREST! workshops – Workshops combining natural science and art for 1st–2nd graders" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68096/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68213", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/jumppatytoet-helsinki-3873721/", "sv": "https://www.lippu.fi/artist/savoy-teatteri/jumppatytoet-helsinki-3873721/", "en": "https://www.lippu.fi/artist/savoy-teatteri/jumppatytoet-helsinki-3873721/" }, "description": null, "price": { "fi": "22,80-38,90 €", "sv": "22,80-38,90 €", "en": "22,80-38,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1599274, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-12T10:13:36.960582Z", "last_modified_time": "2026-03-12T10:13:36.960595Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786240.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1599274/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-12T10:13:36.815160Z", "last_modified_time": "2026-03-20T01:14:19.131586Z", "date_published": null, "start_time": "2026-05-09T16: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": "Jumppatytöt on esitys joukkuevoimistelusta.", "sv": "Jumppatytöt är en föreställning om estetisk truppgymnastik.", "en": "Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/DE077EC8A3DC99C5DEAF193948F8028F/Jumppatytot", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/DE077EC8A3DC99C5DEAF193948F8028F/Jumppatytot", "en": "http://www.savoyteatteri.fi/en/events/event/DE077EC8A3DC99C5DEAF193948F8028F/Jumppatytot" }, "description": { "fi": "<p>Jumppatytöt on esitys joukkuevoimistelusta.</p><p>Se on entisten voimistelijoiden matka menneisiin ja nykyisiin kehoihin – harjoittelun, kilpailun, vertailun, arvioinnin, ilon, kauneuden, yhteisöllisyyden ja vertaisuuden äärelle.<br>Esitys on oodi suomalaiselle naisvoimistelulle ja kaikille, jotka ovat joskus harjoitelleet niin, että suussa maistuu metalli.<br>Erityiskiitos päiväkirjoille vuosina 1998-2009 ja tytöille, jotka niitä jaksoivat raapustaa ja häpeästä huolimatta säilyttää.</p><p>“NAUTTIKAA!”</p><p>Jumppatytöt kiertueen tekijätiedot:</p><p>Teksti, ohjaus, dramaturgia, esiintyminen: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografia: Antton Laine ja työryhmä<br>Äänisuunnittelu: Roy Boswell, Oscar Fagerudd ja työryhmä<br>Video: Työryhmän kotivideoista ja arkistomateriaaleista koostanut Liisa Mudist<br>Kiertueen valosuunnittelu: Heikki Paasonen<br>Kiertueen skenografia: Heikki Paasonen ja työryhmä<br>Kiertueen teknikot: Oscar Fagerudd, Aleksi Karjalainen ja Pinja Kokkonen<br>Kiertueen tour manager: Jukka Siurua<br>Kiertueen tuotanto: Ella Lahdenmäki ja työryhmä<br>Esityskuvat: Jukka Hämeenniemi / @agg_dad Juliste: Jaakko Pietiläinen</p><p>Suositusikäraja: K-12<br>Esityksen kesto: 1 h 45 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Esitystä ovat tukeneet: Kansan sivistysrahasto (presidentti Tarja Halosen rahasto), Ida Aalberg -säätiö (Petra Uexküllin rahasto), Samuel Huberin taidesäätiö, Helsingin kaupunki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>", "sv": "<p>Jumppatytöt är en föreställning om estetisk truppgymnastik.</p><p>Den beskriver tidigare gymnasters resa till sina tidigare och nuvarande kroppar – träning, tävling, jämförelser, bedömning, glädje, skönhet, gemenskap och kamratskap.<br>Föreställningen är en hyllning till den finländska damgymnastiken och till alla som någon gång tränat så att de fått blodsmak i munnen.<br>Ett särskilt tack till dagböckerna från 1998–2009 och till de flickor som orkade skriva i dem och behöll dem trots skammen.</p><p>”NJUT!”</p><p>Om skaparna av Jumppatytöt-turnén:</p><p>Text, regi, dramaturgi, framförande: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografi: Antton Laine och en arbetsgrupp<br>Ljuddesign: Roy Boswell, Oscar Fagerudd och en arbetsgrupp<br>Video: Liisa Mudist har sammanställt arbetsgruppens hemmavideor och arkivmaterial<br>Ljusdesign för turnén: Heikki Paasonen<br>Turnéns scenografi: Heikki Paasonen och en arbetsgrupp<br>Tekniker under turnén: Oscar Fagerudd, Aleksi Karjalainen och Pinja Kokkonen<br>Tour manager för turnén: Jukka Siurua<br>Turnéproduktion: Ella Lahdenmäki och en arbetsgrupp<br>Bilder från föreställningen: Jukka Hämeenniemi/@agg_dad Juliste: Jaakko Pietiläinen</p><p>Åldersrekommendation: K-12<br>Föreställningens längd: 1 h 45 min, ingen paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Föreställningen har fått stöd av: Folkets Kulturfond (president Tarja Halonens fond), Ida Aalberg-stiftelsen (Petra Uexkülls fond), Samuel Hubers konststiftelse, Helsingfors stad, Finska Kulturfonden Birkaland, Finska Kulturfonden Nyland, Finska Kulturfonden Egentliga Finland</p>", "en": "<p>Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics.</p><p>It is a journey of former gymnasts into past and present bodies – into training, competition, comparison, evaluation, joy, beauty, communality and peerage.<br>The performance is an ode to Finnish women’s gymnastics and to everyone who has ever practised until they can taste metal in their mouth.<br>Special thanks to diary entries from 1998–2009 and the girls who kept writing them and held onto them despite the embarrassment.</p><p>“ENJOY!”</p><p>Jumppatytöt tour creative team:</p><p>Script, direction, dramaturgy, performance: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Choreography: Antton Laine and the team<br>Sound design: Roy Boswell, Oscar Fagerudd and the team<br>Video: Compiled by Liisa Mudist from the team’s home videos and archival material<br>Lighting design for the tour: Heikki Paasonen<br>Scenography for the tour: Heikki Paasonen and the team<br>Tour technicians: Oscar Fagerudd, Aleksi Karjalainen and Pinja Kokkonen<br>Tour manager: Jukka Siurua<br>Tour production: Ella Lahdenmäki and the team<br>Performance images: Jukka Hämeenniemi / @agg_dad Poster: Jaakko Pietiläinen</p><p>Minimum age recommendation: 12<br>Performance duration: 1 h 45 min, no intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p><p>The show is supported by: People’s Education Fund (President Tarja Halonen Fund), Ida Aalberg Foundation (Petra Uexküll Fund), Samuel Huber Art Foundation, City of Helsinki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>" }, "name": { "fi": "Jumppatytöt – Havukainen - Hyvönen - Lahdenmäki", "sv": "Jumppatytöt – Havukainen - Hyvönen - Lahdenmäki", "en": "Jumppatytöt – Havukainen - Hyvönen - Lahdenmäki" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Jumppatytöt ry", "sv": "Jumppatytöt ry", "en": "Jumppatytöt ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68213/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68037", "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: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: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/immprovision-song-contest-vuotalo-21221351/", "sv": "https://www.lippu.fi/event/immprovision-song-contest-vuotalo-21221351/", "en": "https://www.lippu.fi/event/immprovision-song-contest-vuotalo-21221351/" }, "description": null, "price": { "fi": "17€ / 9€", "sv": "17€ / 9€", "en": "17€ / 9€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494663, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-28T13:13:19.328285Z", "last_modified_time": "2026-01-28T13:13:19.328301Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780512.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494663/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-28T13:13:19.191798Z", "last_modified_time": "2026-03-20T01:14:18.967560Z", "date_published": null, "start_time": "2026-05-09T16: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": "Suomen jännittävin laulukilpailu palaa Vuotaloon!", "sv": "Finlands mest hisnande schlagertävling återvänder till Nordhuset!", "en": "Finland’s most thrilling schlager showdown returns to Vuotalo!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EC704FE9B0A3125C11B9ABC9AF8E21A8/Teater_Stjarnfall_Improvision_Song_Contest_2026", "sv": "http://www.vuotalo.fi/sv/evenemang/event/EC704FE9B0A3125C11B9ABC9AF8E21A8/Teater_Stjarnfall_Improvision_Song_Contest_2026", "en": "http://www.vuotalo.fi/en/events/event/EC704FE9B0A3125C11B9ABC9AF8E21A8/Teater_Stjarnfall_Improvision_Song_Contest_2026" }, "description": { "fi": "<p>Suomen jännittävin laulukilpailu palaa Vuotaloon!</p><p>Valmistaudu unohtumattomaan iltaan täynnä musiikkia, naurua ja puhdasta improvisaatiotaituruutta! Improvisaatioteatteri Stjärnfall nousee lavalle luomaan spontaaneja ja ihastuttavan arvaamattomia musiikkinumeroita aivan silmiesi edessä.</p><p>Jännitys saavuttaa uuden ulottuvuuden – jokainen kappale, jokainen sanoitus, jokainen nauru keksitään paikan päällä. Ja mikä parasta? Pääset äänestämään voittajaa!<br>Klubi-ilta, Café Pokkari huolehtii tarjoilusta klo 18.30 alkaen.<br>Kesto: noin 2 tuntia, sisältäen väliajan.</p><p>KIELI Alla språk, mest svenska</p>", "sv": "<p>Finlands mest hisnande schlagertävling återvänder till Nordhuset!</p><p>Stjärnfall är improvisationsgruppen som för fulla hus och full hals skapar glamorösa, galna och underbart underhållande musiknummer. En helkväll då spänningen stiger och alla på scenen och i publiken är taggade. Vill du vara med och rösta fram vinnaren i Improvision Song Contest 2026? Då önskar vi dig välkommen!</p><p>Klubb-kväll, A-rättigheter, Café Pokkari svarar för serveringen, dörrarna öppnas kl. 18.30. <br>Längd: ca. 2h inkl. paus.<br> <br>KIELI Alla språk, mest svenska</p>", "en": "<p>Finland’s most thrilling schlager showdown returns to Vuotalo!</p><p>Get ready for an unforgettable evening of music, laughter, and pure improvisational brilliance! Improv Theatre Stjärnfall will take the stage to create spontaneous and delightfully unpredictable musical numbers right before your eyes.</p><p>The excitement reaches new heights — every song, every lyric, every laugh is made up on the spot. And the best part? You get to vote for the winner!</p><p>Club night, Café Pokkari takes care of the refreshments, starting from 6:30 PM.<br>Duration: about 2 hours, including intermission.</p><p>KIELI Alla språk, mest svenska</p>" }, "name": { "fi": "Teater Stjärnfall: Improvision Song Contest 2026 – Klubb Ankdamm", "sv": "Teater Stjärnfall: Improvision Song Contest 2026 – Klubb Ankdamm", "en": "Teater Stjärnfall: Improvision Song Contest 2026 – Klubb Ankdamm" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68037/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67618", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/ykspihlajan-kino-orkesteri/", "sv": "https://www.lippu.fi/artist/ykspihlajan-kino-orkesteri/", "en": "https://www.lippu.fi/artist/ykspihlajan-kino-orkesteri/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494483, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-15T08:14:00.545495Z", "last_modified_time": "2026-01-15T08:14:00.545511Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782188.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494483/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-15T08:14:00.347776Z", "last_modified_time": "2026-03-20T01:14:18.735594Z", "date_published": null, "start_time": "2026-05-09T15: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": "Luvassa italoiskelmän ja suomalaisen tanssimusiikin innoittamaa elokuvamusiikkia.", "sv": "Här utlovas filmmusik inspirerad av italiensk schlager och finsk dansmusik.", "en": "Film music inspired by Italian schlager and Finnish dance music." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F433488B8C11437359C70B8ACA7C15C3/Ykspihlajan_Kino-orkesteri", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F433488B8C11437359C70B8ACA7C15C3/Ykspihlajan_Kino-orkesteri", "en": "http://www.kanneltalo.fi/en/events/event/F433488B8C11437359C70B8ACA7C15C3/Ykspihlajan_Kino-orkesteri" }, "description": { "fi": "<p>Luvassa italoiskelmän ja suomalaisen tanssimusiikin innoittamaa elokuvamusiikkia.</p><p>Ykspihlajan Kino-orkesteri on Kokkolan satamakaupunginosassa Ykspihlajassa vuonna 2012 perustettu orkesteri, jonka ensimmäinen tehtävä oli säveltää musiikki ja säestää se livenä Juho Kuosmasen mykkäelokuvaan Romu-Mattila ja kaunis nainen.</p><p>Sen jälkeen Kino-orkesteri on alkanut elää omaa elämäänsä ja keikkailee esittäen pääasiassa elokuvista tuttua musiikkia uusina sovituksina.</p><p>Sittemmin Kino-orkesteri on säveltänyt ja esittänyt musiikin myös Juho Kuosmasen mykkäelokuvatrilogian muihin osiin, vuonna 2017 valmistuneeseen Salaviinanpolttajat-lyhytelokuvaan sekä vuonna 2023 ensi-iltansa saaneeseen Kaukaiseen planeettaan. Myös Kuosmasen elokuvassa Hymyilevä mies (2016) kuullaan orkesterin musiikkia.</p><p>Kino-orkesteri on säveltänyt ja esittänyt musiikkia myös mykkäelokuvakauden klassikoihin, muun muassa William A. Wellmanin 1920-luvun elokuvaan Beggars of life.</p><p>Orkesteri esiintynyt ahkerasti ja saanut innoituksensa 1960-luvun italoiskelmästä ja kotimaisesta tanssimusiikista, mutta orkesterin omaperäiset sanoitukset valottavat nostalgisia sävelmaisemia uudesta kulmasta.</p><p>Ykspihlajan Kino-orkesterissa laulavat sisarukset Anna, Oona ja Laura Airola, ja se koostuu muista vapaan kentän muusikoista ja teatterialan ammattilaisista. Kino-orkesterissa soittavat kitaristit Miika Snåre sekä Tuomas Asanti, trumpetisti Miia Reko, basisti Reetta Kuisma sekä rumpali Ilkka Tolonen.</p>", "sv": "<p>Här utlovas filmmusik inspirerad av italiensk schlager och finsk dansmusik.</p><p>Ykspihlajan Kino-orkesteri är en orkester som grundades i Karlebys hamnstadsdel Yxpila år 2012, och vars första uppgift var att skriva musik och framföra den live till Juho Kuosmanens stumfilm Romu-Mattila ja kaunis nainen.</p><p>Sedan dess har Kino-orkestern börjat leva sitt eget liv och framför huvudsakligen filmmusik i nya arrangemang. Senare har Kino-orkestern skrivit och framfört musik även till de övriga delarna i Juho Kuosmanens stumfilmstrilogi, kortfilmen Salaviinanpolttajat från 2017 och Kaukainen planeetta som hade premiär 2023. Även i Kuosmanens film Den lyckligaste dagen i Olli Mäkis liv (2016) kan man höra orkesterns musik.</p><p>Kino-orkestern har också skrivit och framfört musik till klassiker från stumfilmens tid, bland annat William A. Wellmas Beggars of Life från 1920-talet.</p><p>Orkestern uppträder flitigt och har fått inspiration från italiensk 1960-talsschlager och finländsk dansmusik, men orkesterns originella texter belyser de nostalgiska tonlandskapen ur ett nytt perspektiv.</p><p>I Ykspihlajan Kino-orkesteri sjunger systrarna Anna, Oona och Laura Airola, och den består också av andra musiker från det fria fältet och proffs inom teatern. I Kino-orkestern spelar gitarristerna Miika Snåre och Tuomas Asanti, trumpetisten Miia Reko, basisten Reetta Kuisma och trummisen Ilkka Tolonen.</p>", "en": "<p>Film music inspired by Italian schlager and Finnish dance music.</p><p>Ykspihlajan Kino-orkesteri is an orchestra founded in 2012 in Ykspihlaja, a port district in Kokkola. Its first task was to compose music and accompany it live to Juho Kuosmasen's silent film Romu-Mattila ja kaunis nainen.</p><p>Since then, Kino-orkesteri has taken on a life of its own, performing mainly new arrangements of music familiar from the films. Since then, Ykspihlajan Kino-orkesteri has also composed and performed music for the other parts of Juho Kuosmasen's silent film trilogy, the 2017 Salaviinanpolttajat and Kaukainen planeetta, which premiered in 2023. Kuosmasen's film The Happiest Day in the Life of Olli Mäki (2016) also features music by the orchestra.<br>Ykspihlajan Kino-orkesteri has also composed and performed music for classics of the silent film era, including William A. Wellman's 1920s film Beggars of Life.</p><p>The orchestra has performed extensively and drawn inspiration from 1960s Italian schlager and Finnish dance music, but their original lyrics shed new light on nostalgic musical landscapes.<br>Ykspihlajan Kino-orkesteri is made up of sisters Anna, Oona and Laura Airola, and other freelance musicians and theatre professionals. Ykspihlajan Kino-orkesteri features guitarists Miika Snåre and Tuomas Asanti, trumpeter Miia Reko, bassist Reetta Kuisma and drummer Ilkka Tolonen.</p>" }, "name": { "fi": "Ykspihlajan Kino-orkesteri", "sv": "Ykspihlajan Kino-orkesteri", "en": "Ykspihlajan Kino-orkesteri" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67618/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67419", "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-the-super-mario-galaxy-movie-malmitalo-21472894/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472894/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472894/" }, "description": null, "price": { "fi": "7€", "sv": "7€", "en": "7€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1672953, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T12:14:58.682407Z", "last_modified_time": "2026-03-19T12:14:58.682421Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781121.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672953/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T12:14:58.552389Z", "last_modified_time": "2026-03-20T01:14:18.607146Z", "date_published": null, "start_time": "2026-05-09T12: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": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DEAA19AEA3985F4FAC406B62D7B21C56/The_Super_Mario_Galaxy_Movie_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/DEAA19AEA3985F4FAC406B62D7B21C56/The_Super_Mario_Galaxy_Movie_7_", "en": "http://www.malmitalo.fi/en/events/event/DEAA19AEA3985F4FAC406B62D7B21C56/The_Super_Mario_Galaxy_Movie_7_" }, "description": { "fi": "<p>Animaatioelokuva The Super Mario Galaxy Movie perustuu Super Mario Bros. -pelisarjan maailmaan. Elokuva jatkaa vuonna 2023 ensi-iltansa saaneen ja yli 1,3 miljardia dollaria tuottaneen The Super Mario Bros. Movie -elokuvan tarinaa. Sekä vuoden 2023 elokuva että The Super Mario Galaxy Movie -elokuva ovat Illuminationin Chris Meledandrin ja Nintendon Shigeru Miyamoton yhteistuotantoja.</p><p>Elokuvan rahoituksesta vastaavat yhdessä Universal Pictures ja Nintendo ja sen kansainvälinen levittäjä on Universal Pictures.</p><p>The Super Mario Galaxy Movien ohjaajina ovat The Super Mario Bros. Movie -elokuvasta tutut nimet, Aaron Horvath ja Michael Jelenic. Edellisen elokuvan tapaan käsikirjoittajana on Matthew Fogel ja elokuvan musiikin on säveltänyt Brian Tyler.</p><p>Ikäraja: 7<br>Kesto: 98 min<br>Ensi-ilta: 1.4.2026<br>Elokuva on puhuttu suomeksi</p>" }, "name": { "fi": "The Super Mario Galaxy Movie (7) – Kino Helios", "sv": "The Super Mario Galaxy Movie (7) – Kino Helios", "en": "The Super Mario Galaxy Movie (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67419/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68212", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/jumppatytoet-helsinki-3873721/", "sv": "https://www.lippu.fi/artist/savoy-teatteri/jumppatytoet-helsinki-3873721/", "en": "https://www.lippu.fi/artist/savoy-teatteri/jumppatytoet-helsinki-3873721/" }, "description": null, "price": { "fi": "22,80-38,90 €", "sv": "22,80-38,90 €", "en": "22,80-38,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1599273, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-12T10:13:36.339211Z", "last_modified_time": "2026-03-12T10:13:36.339226Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786239.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1599273/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-12T10:13:36.167151Z", "last_modified_time": "2026-03-20T01:14:18.286154Z", "date_published": null, "start_time": "2026-05-09T11: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": "Jumppatytöt on esitys joukkuevoimistelusta.", "sv": "Jumppatytöt är en föreställning om estetisk truppgymnastik.", "en": "Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C4658F3883934D0BE18F6085D8247BFD/Jumppatytot", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C4658F3883934D0BE18F6085D8247BFD/Jumppatytot", "en": "http://www.savoyteatteri.fi/en/events/event/C4658F3883934D0BE18F6085D8247BFD/Jumppatytot" }, "description": { "fi": "<p>Jumppatytöt on esitys joukkuevoimistelusta.</p><p>Se on entisten voimistelijoiden matka menneisiin ja nykyisiin kehoihin – harjoittelun, kilpailun, vertailun, arvioinnin, ilon, kauneuden, yhteisöllisyyden ja vertaisuuden äärelle.<br>Esitys on oodi suomalaiselle naisvoimistelulle ja kaikille, jotka ovat joskus harjoitelleet niin, että suussa maistuu metalli.<br>Erityiskiitos päiväkirjoille vuosina 1998-2009 ja tytöille, jotka niitä jaksoivat raapustaa ja häpeästä huolimatta säilyttää.</p><p>“NAUTTIKAA!”</p><p>Jumppatytöt kiertueen tekijätiedot:</p><p>Teksti, ohjaus, dramaturgia, esiintyminen: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografia: Antton Laine ja työryhmä<br>Äänisuunnittelu: Roy Boswell, Oscar Fagerudd ja työryhmä<br>Video: Työryhmän kotivideoista ja arkistomateriaaleista koostanut Liisa Mudist<br>Kiertueen valosuunnittelu: Heikki Paasonen<br>Kiertueen skenografia: Heikki Paasonen ja työryhmä<br>Kiertueen teknikot: Oscar Fagerudd, Aleksi Karjalainen ja Pinja Kokkonen<br>Kiertueen tour manager: Jukka Siurua<br>Kiertueen tuotanto: Ella Lahdenmäki ja työryhmä<br>Esityskuvat: Jukka Hämeenniemi / @agg_dad Juliste: Jaakko Pietiläinen</p><p>Suositusikäraja: K-12<br>Esityksen kesto: 1 h 45 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Esitystä ovat tukeneet: Kansan sivistysrahasto (presidentti Tarja Halosen rahasto), Ida Aalberg -säätiö (Petra Uexküllin rahasto), Samuel Huberin taidesäätiö, Helsingin kaupunki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>", "sv": "<p>Jumppatytöt är en föreställning om estetisk truppgymnastik.</p><p>Den beskriver tidigare gymnasters resa till sina tidigare och nuvarande kroppar – träning, tävling, jämförelser, bedömning, glädje, skönhet, gemenskap och kamratskap.<br>Föreställningen är en hyllning till den finländska damgymnastiken och till alla som någon gång tränat så att de fått blodsmak i munnen.<br>Ett särskilt tack till dagböckerna från 1998–2009 och till de flickor som orkade skriva i dem och behöll dem trots skammen.</p><p>”NJUT!”</p><p>Om skaparna av Jumppatytöt-turnén:</p><p>Text, regi, dramaturgi, framförande: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografi: Antton Laine och en arbetsgrupp<br>Ljuddesign: Roy Boswell, Oscar Fagerudd och en arbetsgrupp<br>Video: Liisa Mudist har sammanställt arbetsgruppens hemmavideor och arkivmaterial<br>Ljusdesign för turnén: Heikki Paasonen<br>Turnéns scenografi: Heikki Paasonen och en arbetsgrupp<br>Tekniker under turnén: Oscar Fagerudd, Aleksi Karjalainen och Pinja Kokkonen<br>Tour manager för turnén: Jukka Siurua<br>Turnéproduktion: Ella Lahdenmäki och en arbetsgrupp<br>Bilder från föreställningen: Jukka Hämeenniemi/@agg_dad Juliste: Jaakko Pietiläinen</p><p>Åldersrekommendation: K-12<br>Föreställningens längd: 1 h 45 min, ingen paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Föreställningen har fått stöd av: Folkets Kulturfond (president Tarja Halonens fond), Ida Aalberg-stiftelsen (Petra Uexkülls fond), Samuel Hubers konststiftelse, Helsingfors stad, Finska Kulturfonden Birkaland, Finska Kulturfonden Nyland, Finska Kulturfonden Egentliga Finland</p>", "en": "<p>Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics.</p><p>It is a journey of former gymnasts into past and present bodies – into training, competition, comparison, evaluation, joy, beauty, communality and peerage.<br>The performance is an ode to Finnish women’s gymnastics and to everyone who has ever practised until they can taste metal in their mouth.<br>Special thanks to diary entries from 1998–2009 and the girls who kept writing them and held onto them despite the embarrassment.</p><p>“ENJOY!”</p><p>Jumppatytöt tour creative team:</p><p>Script, direction, dramaturgy, performance: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Choreography: Antton Laine and the team<br>Sound design: Roy Boswell, Oscar Fagerudd and the team<br>Video: Compiled by Liisa Mudist from the team’s home videos and archival material<br>Lighting design for the tour: Heikki Paasonen<br>Scenography for the tour: Heikki Paasonen and the team<br>Tour technicians: Oscar Fagerudd, Aleksi Karjalainen and Pinja Kokkonen<br>Tour manager: Jukka Siurua<br>Tour production: Ella Lahdenmäki and the team<br>Performance images: Jukka Hämeenniemi / @agg_dad Poster: Jaakko Pietiläinen</p><p>Minimum age recommendation: 12<br>Performance duration: 1 h 45 min, no intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p><p>The show is supported by: People’s Education Fund (President Tarja Halonen Fund), Ida Aalberg Foundation (Petra Uexküll Fund), Samuel Huber Art Foundation, City of Helsinki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>" }, "name": { "fi": "Jumppatytöt – Havukainen - Hyvönen - Lahdenmäki", "sv": "Jumppatytöt – Havukainen - Hyvönen - Lahdenmäki", "en": "Jumppatytöt – Havukainen - Hyvönen - Lahdenmäki" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Jumppatytöt ry", "sv": "Jumppatytöt ry", "en": "Jumppatytöt ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68212/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68072", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494750, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T15:13:55.009122Z", "last_modified_time": "2026-02-05T15:13:55.009145Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780739.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494750/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T15:13:54.893753Z", "last_modified_time": "2026-03-20T01:14:18.180130Z", "date_published": null, "start_time": "2026-05-09T09:00:00Z", "end_time": "2026-05-09T13: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": "Lähde spektaakkelimaiselle kuoromatkalle Stoan aukiolle!", "sv": "Kom med på en spektakulär körresa på Stoaplatsen!", "en": "Go on a spectacular choir trip to Stoa square!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/79C347F3AD6050633BB7C7B1FC88F809/Stoan_laulupaiva", "sv": "http://www.stoa.fi/sv/evenemang/event/79C347F3AD6050633BB7C7B1FC88F809/Stoas_kordag", "en": "http://www.stoa.fi/en/events/event/79C347F3AD6050633BB7C7B1FC88F809/Choir_day_at_Stoa" }, "description": { "fi": "<p>Lähde spektaakkelimaiselle kuoromatkalle Stoan aukiolle!</p><p>Herätään yhdessä muuttolintujen kanssa laulamaan kevät ja kesä tervetulleeksi. Stoan aukiolla moniääninen laulu raikaa, kun useat kuorot kokoontuvat laulamaan yhdessä eri kielillä. Yleisökin saa laulaa mukana!</p><p>Kesto: 4 tuntia<br>Kieli: suomi/monikielinen</p><p>Vapaa pääsy</p>", "sv": "<p>Kom med på en spektakulär körresa på Stoaplatsen!</p><p>Vi vaknar med flyttfåglarna för att sjunga in våren och sommaren.</p><p>På Stoatorget ljuder en mångröstad sång när flera körer samlas för att sjunga tillsammans på olika språk. Publiken får också sjunga med!</p><p>Längd: 4 timmar<br>Språk: finska/flerspråkigt</p>", "en": "<p>Go on a spectacular choir trip to Stoa square!</p><p>Let's join the migratory birds in welcoming spring and summer.</p><p>Polyphonic singing will echo in Stoa square as several choirs come together to sing in different languages. The audience can sing along too!</p><p>Duration: 4 hours<br>Language: Finnish/multilingual</p>" }, "name": { "fi": "Stoan laulupäivä", "sv": "Stoas kördag", "en": "Choir day at Stoa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68072/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }