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&is_free=true&page=7
{ "meta": { "count": 27764, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=8", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=6" }, "data": [ { "id": "kulke:67918", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494363, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-05T09:13:33.805762Z", "last_modified_time": "2026-01-05T09:13:33.805777Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783142.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494363/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-05T09:13:33.732725Z", "last_modified_time": "2026-03-20T01:14:06.968046Z", "date_published": null, "start_time": "2026-04-21T11: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 opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.", "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.", "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/73FF0A3C2313849127CED11ACBC91635/Paivatanssit_", "sv": "http://www.stoa.fi/sv/evenemang/event/73FF0A3C2313849127CED11ACBC91635/Paivatanssit_", "en": "http://www.stoa.fi/en/events/event/73FF0A3C2313849127CED11ACBC91635/Paivatanssit_" }, "name": { "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "sv": "Päivätanssit", "en": "Päivätanssit" }, "description": { "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi<br>Vapaa pääsy.</p>", "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde</p>", "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67918/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68217", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1609709, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-13T09:13:32.849562Z", "last_modified_time": "2026-03-13T09:13:32.849576Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786278.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1609709/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-13T09:13:32.716363Z", "last_modified_time": "2026-03-20T01:14:06.340845Z", "date_published": null, "start_time": "2026-04-20T15: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": "Kino Caisa" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/D0CEC94AAF9443E433C252C3E2B276B5/CaisaKallio_esittaa_", "sv": "http://www.caisa.fi/sv/evenemang/event/D0CEC94AAF9443E433C252C3E2B276B5/CaisaKallio_esittaa_", "en": "http://www.caisa.fi/en/events/event/D0CEC94AAF9443E433C252C3E2B276B5/CaisaKallio_esittaa_" }, "name": { "fi": "CaisaKallio esittää: – Median lukiodiplomeita ja muita elokuvia", "sv": "CaisaKallio esittää:", "en": "CaisaKallio esittää:" }, "description": { "fi": "<p>Kino Caisa</p><p>Caisa-Kallion maanantaissa nähdään lukiodiplomielokuvia ja muita kevään elokuvia. Luvassa fiktioita, dokumentteja, tanssielokuva ja musiikkivideo. Aiheina mm. täydellisyyden tavoittelu, ulkopuolisuus, ystävyys ja ihanat treffit Aladdinin tahtiin.</p><p>Vapaa pääsy.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68217/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68021", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-793/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494627, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-26T10:12:58.020286Z", "last_modified_time": "2026-01-26T10:12:58.020297Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777684.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494627/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-26T10:12:57.928295Z", "last_modified_time": "2026-03-20T01:14:06.209471Z", "date_published": null, "start_time": "2026-04-20T13:00:00Z", "end_time": "2026-04-20T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.", "sv": "På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.", "en": "On Monday afternoons, we will be doing arts and crafts and spending fun time together." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/179478DE826BC679BB62C9B9EC7D009B/Nuorten_suunnittelemat_iltapaivat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/179478DE826BC679BB62C9B9EC7D009B/Eftermiddagar_planerade_av_unga", "en": "http://www.vuotalo.fi/en/events/event/179478DE826BC679BB62C9B9EC7D009B/Afternoons_planned_by_young_people" }, "name": { "fi": "Nuorten suunnittelemat iltapäivät – Operaatio Pulssi", "sv": "Eftermiddagar planerade av unga – Operaatio Pulssi", "en": "Afternoons planned by young people – Operation Pulse!" }, "description": { "fi": "<p>Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.</p><p>Vuosaarelaiset nuoret ovat ideoineet tekemistä koulu- tai työpäivän päätteeksi. Kaikki ovat tervetulleita, ikään katsomatta. Iltapäivät ovat ilmaisia ja tarvittavat materiaalit saa paikan päältä.</p><p>Pistäydy tai viihdy vaikka koko aika!</p><p>Työpajoja ohjaavat nuorisotyöntekijä sekä nuoret itse. Tarkemmasta ohjelmasta kerrotaan Vuotalon aulassa ja somekanavissa viimeistään viikkoa ennen.</p><p>Vapaa pääsy</p><p>Huom! Ei järjestetä 6.4.2026.</p>", "sv": "<p>På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.</p><p>Ungdomar i Nordsjö har kommit med idéer om vad man kan göra när skol- eller arbetsdagen är slut. Alla är välkomna, oavsett ålder. Eftermiddagarna är kostnadsfria och det nödvändiga materialet finns tillgängligt på plats. Titta in eller stanna hela tiden!</p><p>Workshopparna leds av en ungdomsledare och ungdomarna själva. Det detaljerade programmet publiceras i Nordhusets aula och på sociala medier minst en vecka innan.</p>", "en": "<p>On Monday afternoons, we will be doing arts and crafts and spending fun time together.</p><p>Young people in Vuosaari have come up with ideas for things to do at the end of the school or workday. All are welcome, regardless of age. The afternoons are free of charge and the materials needed are available on-site. Drop by for a moment or stay the whole time!</p><p>The workshops are run by a youth worker and the young people themselves. The detailed programme will be posted in the Vuotalo lobby and on social media at least one week in advance.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68021/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67679", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493981, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T13:14:19.473609Z", "last_modified_time": "2025-12-01T13:14:19.473625Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782328.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493981/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T13:14:19.380427Z", "last_modified_time": "2026-03-20T01:14:04.732822Z", "date_published": null, "start_time": "2026-04-18T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!", "sv": "Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!", "en": "How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D4A72559EAC11B0CC9310745FD2C6396/Kaikkien_lasten_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/D4A72559EAC11B0CC9310745FD2C6396/Danslektion_for_alla_barn", "en": "http://www.annantalo.fi/en/events/event/D4A72559EAC11B0CC9310745FD2C6396/All_children_s_dance_class" }, "name": { "fi": "Kaikkien lasten tanssitunti – kaikenikäisille", "sv": "Danslektion för alla barn – för alla åldrar", "en": "All children's dance class – for all ages" }, "description": { "fi": "<p>Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!</p><p>Inklusiiviset kaikkien lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Tunteja ohjaavat tanssiin, vammaisuuteen, pedagogiikkaan ja esteettömyyteen perehtyneet ammattilaiset, joilla kaikilla on erilainen taiteellis-pedagoginen tausta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen: opetus@kaaoscompany.fi</p><p>Osallistujamäärä: max. 18 (lasta ja aikuista yhdessä)</p>", "sv": "<p>Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!</p><p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar.</p><p>Lektionerna leds av yrkesverksamma som är insatta i dans, funktionsnedsättning, pedagogik och tillgänglighet, som alla har olika konstnärlig-pedagogisk bakgrund.</p><p>Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning via e-post: opetus@kaaoscompany.fi</p><p>Antal deltagare: max. 18 (barn och vuxna tillsammans)</p>", "en": "<p>How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!</p><p>Children’s Inclusive Dance Classes offer children and their adults the joy of togetherness, movement and an opportunity to meet new people of similar and different backgrounds.</p><p>During the classes we play with movement together and each in our own way.<br>The classes are free and open to children of all ages, their siblings and adults, regardless of disability or non-disability.</p><p>The classes are taught by professionals with expertise in dance, theatre, disability, pedagogy and accessibility, all with different artistic-pedagogical backgrounds.</p><p>The lesson lasts one hour. The space is accessible.</p><p>Free admission, pre-registration required by email: opetus@kaaoscompany.fi</p><p>Number of participants: max. 18 (children and adults together)<br>Sat 18.10.2025 at 14.00<br>Tanssiluokka<br>Annankatu 30, Helsinki<br>Free entry</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67679/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67502", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494282, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T09:14:28.478001Z", "last_modified_time": "2025-12-22T09:14:28.478017Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781609.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494282/?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-22T09:14:28.365338Z", "last_modified_time": "2026-03-20T01:14:04.221309Z", "date_published": null, "start_time": "2026-04-18T08:00:00Z", "end_time": "2026-04-18T11: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." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/43E96A2C24D12BBA79ECA7FA80313A29/Annantalon_taidelauantai_Hyvan_unen_apurit", "sv": "http://www.annantalo.fi/sv/evenemang/event/43E96A2C24D12BBA79ECA7FA80313A29/Annegardens_konstlordagar_Medhjalpare_for_god_somn", "en": "http://www.annantalo.fi/en/events/event/43E96A2C24D12BBA79ECA7FA80313A29/Annantalo_Art_Saturdays_Good_sleep_helpers" }, "name": { "fi": "Annantalon taidelauantai: Hyvän unen apurit", "sv": "Annegårdens konstlördagar: Medhjälpare för god sömn", "en": "Annantalo Art Saturdays: Good sleep helpers" }, "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>Hyvän unen apurit</b></p><p>Mikä avuksi, kun uni ei meinaa tulla ja mielessä pyörii askarruttavia ajatuksia? Tule Annantalon taidelauantaihin rakentamaan pieni tyynyn alle yöksi laitettava nukkekaveri. Guatemalan vuoristossa asuneiden Maya -intiaanien tarinan mukaan nuket murehtivat huolet yön aikana piiloon taaten unennäkijälle rauhalliset yöunet. Nuket tehdään puutikuista ja rautalangasta, eri värisistä langoista ja kangastilkuista. Tule tekemään oma huolinukkesi ja nuku hyvin!</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>Medhjälpare för god sömn</b><br>Vad kan hjälpa när du inte kan somna och tankarna snurrar i huvudet? Kom till Annegårdens konstlördagar och bygg en liten dockvän som du kan lägga under kudden till natten. Enligt en berättelse från mayaindianerna i bergen i Guatemala tar dockor hand om alla bekymmer under natten och garanterar en fridfull natts sömn för sovaren. Dockorna tillverkas av träpinnar, järntråd, olikfärgade garner och tygbitar. Kom och gör din egen orosdocka och sov gott!</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</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> Good sleep helpers</b><br>What can you do if you are unable to fall asleep and have things weighing on your mind? Come to Annantalo’s Art Monday to build a little doll friend that you can put under your pillow for the night. According to a Mayan legend from the mountains of Guatemala, such dolls would hide the sleeper’s worries for the night, ensuring a peaceful night’s sleep. The dolls are made from wooden sticks and wire, different coloured yarns and fabric patches. Come make your own worry doll and sleep well!</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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67502/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68163", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?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:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1498837, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-02T14:14:27.573361Z", "last_modified_time": "2026-03-02T14:14:27.573379Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785296.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1498837/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-02T14:14:27.444748Z", "last_modified_time": "2026-03-20T01:14:04.059137Z", "date_published": null, "start_time": "2026-04-18", "end_time": "2026-05-09", "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": "Näyttely esittelee Helsingin työväenopiston hopea- ja emalikurssien oppilaiden ja opettajien teoksia." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F4F4B4FF8A2E6F0C5F629ED92B906058/Muotoa_ja_materiaalia", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F4F4B4FF8A2E6F0C5F629ED92B906058/Muotoa_ja_materiaalia", "en": "http://www.vuotalo.fi/en/events/event/F4F4B4FF8A2E6F0C5F629ED92B906058/Muotoa_ja_materiaalia" }, "name": { "fi": "Muotoa ja materiaalia – Helsingin työväenopiston koru- ja emalikurssien näyttely", "sv": "Muotoa ja materiaalia", "en": "Muotoa ja materiaalia" }, "description": { "fi": "<p>Näyttely esittelee Helsingin työväenopiston hopea- ja emalikurssien oppilaiden ja opettajien teoksia.</p><p>Esillä on uniikkeja koruja ja pienesineitä, joissa yhdistyvät perinteiset käsityötekniikat, materiaalin tuntemus ja tekijän oma ilmaisullinen ote.</p><p>Hopeakorut valmistetaan sterling-hopeasta (925), joka sisältää 92,5 % hopeaa ja loput kuparia. Työskentelyssä käytetään kultasepäntyön keskeisiä tekniikoita, kuten sahausta, viilausta, hiontaa, pakotusta, taontaa ja juotoksia.</p><p>Kursseille voi osallistua ilman aiempaa kokemusta. Työskentelyn eteneminen riippuu valitusta tekniikasta ja työn laajuudesta, ja ensimmäinen koru voi valmistua jo muutaman tapaamiskerran aikana.</p><p>Kurssi mahdollistaa myös syventymisen vaativampiin tekniikoihin ja rakenteisiin opiskelijan taitotason mukaan.</p><p>Emalikorut valmistetaan pääosin kuparista, jonka pinnalle sulatetaan lasimainen emalipinnoite korkeassa lämpötilassa. Soluemaloinnissa värit rajataan metallilankareunuksin omiin kenttiinsä, mutta emalia voidaan käyttää myös maalauksellisesti.</p><p>Kursseilla tutustutaan muun muassa cloisonné-, champlevé- ja sgraffito-tekniikoihin sekä emalimaalaukseen. Tavoitteena on ymmärtää, miten lämpötila ja materiaalien ominaisuudet vaikuttavat pinnan, värin ja muodon muodostumiseen.</p><p>Kursseilla valmistetaan korujen lisäksi myös esimerkiksi lusikoita, korurasioita ja pienveistoksia. Teokset syntyvät Helsingin työväenopiston hyvin varustelluissa tiloissa ammattitaitoisten opettajien ohjauksessa.</p><p>Opettajat:<br>Maria Kiialainen<br>Petri Sipilä<br>Mia Kota</p><p>Lisätietoa emalikurssista:<br>https://opistostakasin.hel.fi/emalikorujen-valmistuksen-perusteet-tyoskentelya-materiaalin-ehdoilla/</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68163/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67708", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494338, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-30T13:13:14.126766Z", "last_modified_time": "2025-12-30T13:13:14.126778Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782559.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494338/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-30T13:13:14.011056Z", "last_modified_time": "2026-03-20T01:14:02.423916Z", "date_published": null, "start_time": "2026-04-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": "Lentävä kuolema on röntgenkuva tuberkuloosin jättämistä arvista, joista olemme vuosikymmenet vaienneet.", "sv": "Lentävä kuolema är en röntgenbild av de ärr som tuberkulosen lämnat efter sig, något vi har tigit om i decennier.", "en": "The film Lentävä kuolema – ‘the flying death’ – is an X-ray of the scars left by tuberculosis, which we have been carrying in silence for decades." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/81E29EBCCCFE52F0194EEF7292AEE2BE/Doc_Helios_Lentava_kuolema_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/81E29EBCCCFE52F0194EEF7292AEE2BE/Doc_Helios_Lentava_kuolema_7_", "en": "http://www.malmitalo.fi/en/events/event/81E29EBCCCFE52F0194EEF7292AEE2BE/Doc_Helios_Lentava_kuolema_7_" }, "name": { "fi": "Doc Helios: Lentävä kuolema (7)", "sv": "Doc Helios: Lentävä kuolema (7)", "en": "Doc Helios: Lentävä kuolema (7)" }, "description": { "fi": "<p>Lentävä kuolema on röntgenkuva tuberkuloosin jättämistä arvista, joista olemme vuosikymmenet vaienneet.</p><p>Tuberkuloosiparantola oli asukkailleen yhtä aikaa taivas ja helvetti samojen seinien sisällä. Epidemian historia sisältää niin kuolemaa, häpeää ja eristystä kuin parantolaromansseja, hauskanpitoa ja selviytymistarinoita.</p><p>Lentävä kuolema perehtyy kansalliseen tragediaamme, löytäen sieltä yhteisöllisyyttä, lähimmäisenrakkautta ja järjestelmällistä ja sisukasta työtä ihmishenkien pelastamiseksi.</p><p>Elokuva vie elävälle matkalle parantoloiden aikaan: Se antaa katsojalle yllätyksiä täynnä olevan parantolakokemuksen, ja dokumentaarisen todistusvoiman avulla vie salaisuuksien äärelle.</p><p>Lentävä kuolema paljastaa tuberkuloosin unohdetut tarinat ja antaa mahdollisuuden puhua kokemuksista, joista on vaiettu yli 50 vuotta. Lentävä kuolema kulkee kahdessa eri aikatasossa vuorotellen nykyisyyden ja parantola-aikakauden välillä ja kertoo kollektiivisen tarinan yksilötarinoiden sijaan.</p><p>Ainutlaatuisissa vuonna 1971 tallennetuissa SKS:n arkiston audionauhoissa kolme potilasta kertovat kokemuksistaan parantolan arjesta. Hahmot ovat iloinen maalaistyttö Enne, synkkyyteen taipuva Tenho ja uskonnollinen vastarakastunut Kalevi. Elokuvassa käytetyt arkistofilmit ja valokuvat ovat valtaosin ennennäkemättömiä.</p><p>Kesto: 70 min</p><p>Ikäraja: K-7</p><p>Vapaa pääsy!</p>", "sv": "<p>Lentävä kuolema är en röntgenbild av de ärr som tuberkulosen lämnat efter sig, något vi har tigit om i decennier.</p><p>Tuberkulossanatoriet var samtidigt ett himmelrike och ett helvete för de boende. Epidemihistorien innehåller död, skam och isolering, liksom sanatorieromanser, nöje och överlevnadsberättelser. Filmen Lentävä kuolema utforskar vår nationella tragedi och finner i den en känsla av gemenskap, nästankärlek och en systematisk och modig insats i att rädda människoliv.</p><p>Filmen för dig på en levande resa till sanatoriernas tid: Den ger tittaren en sanatorieupplevelse full av överraskningar, och med hjälp av dokumentära bevis avslöjar den även hemligheter.</p><p>Lentävä kuolema avslöjar de glömda historierna om tuberkulosen och ger en möjlighet att tala om upplevelserna man har tigit om i över 50 år. Lentävä kuolema framskrider i två olika tidsplan växelvis mellan nutid och sanatoriets era och berättar en kollektiv berättelse i stället för individuella berättelser.</p><p>I de unika inspelningarna från 1971 från FLS:s arkiv berättar tre patienter om sina upplevelser av sanatorievardagen. Karaktärerna omfattas av den glada bondflickan Enne, Tenho som blir dyster till sinnet och religösa och nykära Kalevi. De arkivfilmer och fotografier som används i filmen har till stor del aldrig visats förr.</p><p>Längd: 70 min.</p><p>Åldersgräns: K-7</p><p>Fritt inträde!</p>", "en": "<p>The film Lentävä kuolema – ‘the flying death’ – is an X-ray of the scars left by tuberculosis, which we have been carrying in silence for decades.</p><p>The tuberculosis sanatorium was both heaven and hell within the same walls for the residents. The story of the epidemic features death, shame and isolation, but also tales of love at the sanatorium, joy and survival. Lentävä kuolema explores our national tragedy, revealing a sense of community, neighbourly love, and a systematic and determined effort to save human lives.</p><p>The film takes you on a vivid journey to the era of sanatoria: It offers the viewer a sanatorium experience full of surprises and reveals the secrets through the power of documentary evidence. Lentävä kuolema unearths the forgotten stories of tuberculosis and allows us to talk about experiences that have been silenced for more than 50 years. Lentävä kuolema alternates between two different time levels, from the present time to the sanatorium era, telling a collective history instead of individual stories.</p><p>In unique audio tapes from SKS archives recorded in 1971, three patients talk about their experiences of everyday life in the sanatorium. The characters are the cheerful country girl Enne, the brooding Tenho, and the religious Kalevi who has recently fallen in love. Most of the archive films and photographs used in the film have never been seen before in public.</p><p>Duration: 70 min</p><p>Age rating: 7</p><p>Free entry!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67708/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68161", "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: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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1590172, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-11T15:39:58.176110Z", "last_modified_time": "2026-03-11T15:39:58.176130Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780707.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1590172/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-11T15:39:58.066191Z", "last_modified_time": "2026-03-20T01:14:02.283696Z", "date_published": null, "start_time": "2026-04-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": "Työväenopiston konsertti" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/77AC2163D790EB3C44E89EED1B06D79C/Piano_ja_vapaa_saestys_-kurssien_kevatsoittajaiset_", "sv": "http://www.stoa.fi/sv/evenemang/event/77AC2163D790EB3C44E89EED1B06D79C/Piano_ja_vapaa_saestys_-kurssien_kevatsoittajaiset_", "en": "http://www.stoa.fi/en/events/event/77AC2163D790EB3C44E89EED1B06D79C/Piano_ja_vapaa_saestys_-kurssien_kevatsoittajaiset_" }, "name": { "fi": "Piano ja vapaa säestys -kurssien kevätsoittajaiset", "sv": "Piano ja vapaa säestys -kurssien kevätsoittajaiset", "en": "Piano ja vapaa säestys -kurssien kevätsoittajaiset" }, "description": { "fi": "<p>Työväenopiston konsertti</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68161/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68160", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1498836, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-02T14:14:26.790457Z", "last_modified_time": "2026-03-02T14:14:26.790475Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785931.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1498836/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-02T14:14:26.614055Z", "last_modified_time": "2026-03-20T01:14:01.933518Z", "date_published": null, "start_time": "2026-04-16T13:00:00Z", "end_time": "2026-04-16T16: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": "Tervetuloa tutustumaan Kanneltalon palveluihin ja kurkistamaan kulisseihin sekä tapaamaan alueen toimijoita!", "sv": "Välkommen att bekanta dig med Gamlasgårdens tjänster, titta in bakom kulisserna och träffa aktörer i området!", "en": "Welcome to Kanneltalo to take a peek behind the scenes and meet local operators!" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/98D4ED21EBE8C6A7D34AE9DDB31AA12A/Kaikkien_Kantsu_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/98D4ED21EBE8C6A7D34AE9DDB31AA12A/Gamlasgard_for_alla", "en": "http://www.kanneltalo.fi/en/events/event/98D4ED21EBE8C6A7D34AE9DDB31AA12A/Our_Kantsu" }, "name": { "fi": "Kaikkien Kantsu", "sv": "Gamlasgård för alla", "en": "Our Kantsu" }, "description": { "fi": "<p>Tervetuloa tutustumaan Kanneltalon palveluihin ja kurkistamaan kulisseihin sekä tapaamaan alueen toimijoita!</p><p>- Oletko koskaan käynyt Kanneltalossa – vai kuljetko aina vain ohi?</p><p>- Onko Kanneltalo turvallinen paikka, jonne kaikki saavat tulla?</p><p>- Tiesitkö, että saman katon alta löytyy neljä eri palvelua: nuorisotalo, kirjasto, työväenopisto sekä kulttuuripalvelut?</p><p>- Haluaisitko kurkistaa kulissien taakse ja nähdä tiloja, joihin et yleensä pääse?</p><p>- Etsitkö inspiroivaa harrastusta lapselle, nuorelle tai itsellesi – tai kivaa tekemistä koko perheelle?</p><p>- Kiinnostaako tavata talon väkeä ja jutella alueen kuulumisista muiden toimijoiden kanssa?</p><p>Näihin ja muihin kysymyksiin voit saada vastauksen torstaina 16.4., kun Kanneltalossa vietetään avointen ovien iltapäivää.</p><p>Avoimet ovet -tapahtuma on suunnattu kaikille kannelmäkeläisille.</p><p>Kanneltalossa toimii nuorisotalo, kirjasto, kulttuuripalvelut sekä työväenopisto ja avointen ovien iltapäivässä pääset kuulemaan näiden palveluiden toiminnasta sekä tutustumaan henkilökuntaan.</p><p>Iltapäivän aikana pääset kurkkaamaan Kanneltalon kulisseihin ja takakäytäviin sekä näkemään, mitä työväenopiston kursseilla oikeasti tehdään.</p><p>Tapahtuman aikana esitellään Kanneltalon lisäksi myös muita alueen palveluita, kuten harrastus- ja kesätoimintaa sekä tavataan yhteistyökumppaneita.</p><p>Kahvilan stagella kuullaan tietoiskut palveluista klo 16 ja klo 17 ja lähdöt talokierroksille ovat klo 16.30 ja 17.30.</p><p>Kaikille avoin naapurustopaneeli järjestetään Kahvilan stagella klo 18–18.45.<br>Paneelissa mukana Kanneltalon palveluiden johto sekä alueella toimivia tahoja. Paneelin fasilitoi yhdyskuntatyöntekijä Tuija Salovaara.</p><p>Lapsille on omaa ohjelmaa sekä lapsiparkki kirjaston monitoimitila Tempossa klo 16–19.</p><p>Tule mukaan tutustumaan Kanneltaloon sekä kysymään ja keskustelemaan alueen ajankohtaisista asioista.</p><p>Nähdään Kanneltalossa!</p><p>Ohjelma<br>Klo 16–19 Palveluiden ja alueen toimijoiden esittelypisteet ja keskustelua kävijöiden kanssa</p><p>Klo 16–19 Harrastus- ja kesätoiminnan esittelyä</p><p>Klo 16–19 Lasten omaa ohjelmaa ja lapsiparkki kirjaston monitoimitila Tempossa</p><p>Klo 16 Tietoisku Kanneltalon palveluista Kahvilan stagella klo 16 ja klo 17</p><p>Klo 16.30 Ohjattu talokierros (myös kulissien taakse) lähtö aulasta</p><p>Klo 17 Tietoisku Kanneltalon palveluista Kahvilan stagella klo 16 ja klo 17</p><p>Klo 17.30 Ohjattu talokierros (myös kulissien taakse) lähtö aulasta</p><p>Klo 18–18.45 Naapurustopaneeli Kahvilan stagella</p>", "sv": "<p>Välkommen att bekanta dig med Gamlasgårdens tjänster, titta in bakom kulisserna och träffa aktörer i området!</p><p>– Har du någon gång besökt Gamlasgården – eller brukar du bara gå förbi?</p><p>– Är Gamlasgården en trygg plats dit alla får komma?</p><p>– Visste du att där finns fyra olika tjänster under ett och samma tak: en ungdomsgård, ett bibliotek, ett arbetarinstitut och kulturtjänster?</p><p>– Vill du ta en titt bakom kulisserna och se utrymmen som du normalt inte har tillgång till?</p><p>– Letar du efter en inspirerande hobby för ett barn, en ung person eller dig själv – eller något roligt för hela familjen?</p><p>– Vill du träffa personalen i huset och diskutera aktuella frågor i området med andra aktörer?</p><p>Dessa och andra frågor kan du få svar på torsdagen den 16 april, när Gamlasgården håller öppet hus under eftermiddagen.</p><p>Öppet hus-evenemanget riktar sig till alla i Gamlas.</p><p>I Gamlasgården finns en ungdomsgård, ett bibliotek, kulturtjänster och ett arbetarinstitut, och under öppet hus-eftermiddagen får du höra om dessa tjänster och träffa personalen.</p><p>Under eftermiddagen får du kika in bakom kulisserna och backstage på Gamlasgården och se vad man egentligen gör på arbetarinstitutets kurser.</p><p>Under evenemanget presenteras förutom Gamlasgården även andra tjänster i området, till exempel fritids- och sommarverksamhet, och man får träffa samarbetspartner.</p><p>Information om tjänsterna ges på kaféscenen kl. 16 och 17, och rundturer i huset startar 16.30 och 17.30.</p><p>En grannskapspanel som är öppen för alla ordnas på kaféscenen kl. 18–18.45.<br>I panelen medverkar ledningen för Gamlasgårdens tjänster och aktörer som är verksamma i området. Panelen faciliteras av Tuija Salovaara, som arbetar med samhällsfrågor.</p><p>För barnen ordnas eget program och barnparkering i bibliotekets allaktivitetsrum Tempo kl. 16–19.</p><p>Kom med för att utforska Gamlasgården, ställa frågor och diskutera sådant som är aktuellt i området.</p><p>Vi ses på Gamlasgården!</p><p>Program<br>Kl. 16–19 Tjänster och aktörer i området presenterar sig och diskuterar med besökarna</p><p>Kl. 16–19 Presentation av fritids- och sommarverksamhet</p><p>Kl. 16–19 Program för barnen och barnparkering i bibliotekets allaktivitetsrum Tempo</p><p>Kl. 16 Information om Gamlasgårdens tjänster på kaféscenen kl. 16 och kl. 17</p><p>Kl. 16.30 Guidad rundtur i huset (även bakom kulisserna), startar från entrén</p><p>Kl. 17 Information om Gamlasgårdens tjänster på kaféscenen kl. 16 och kl. 17</p><p>Kl. 17.30 Guidad rundtur i huset (även bakom kulisserna), startar från entrén</p><p>18–18.45 Grannskapspanel på kaféscenen</p>", "en": "<p>Welcome to Kanneltalo to take a peek behind the scenes and meet local operators!</p><p>- Have you ever been to Kanneltalo – or do you always just pass it by?</p><p>- Is Kanneltalo a safe place where everyone can come?</p><p>- Did you know that there are four different services under one roof: a youth centre, a library, an adult education centre and cultural services?</p><p>- Would you like to take a peek behind the scenes and visit places you would normally not get to see?</p><p>- Looking for an inspiring hobby for a child, a young person or yourself – or fun activities for the whole family?</p><p>- Are you interested in meeting the people of the centre and talking about neighbourhood events with other operators?</p><p>You can get answers to these and other questions on Thursday 16 April, when Kanneltalo hosts an open house afternoon.</p><p>The Open House event is open to all residents of Kannelmäki.</p><p>Kanneltalo is home to a youth centre, a library, cultural services and an adult education centre, and the open house afternoon will give you the chance to learn more about the activities of these services and meet the staff.</p><p>During the afternoon, you can take a peek behind the scenes and backstage at Kanneltalo and see what really goes on at adult education centre courses.</p><p>In addition to Kanneltalo itself, local services, such as hobby and summer activities, will be presented during the event and you can meet cooperation partners.</p><p>The Café Stage will host information sessions on services at 16.00 and 17.00 and house tours will start at 16.30 and 17.30.</p><p>The neighbourhood panel, open to all, will take place on the Café Stage from 18.00 to 18.45.<br>Kanneltalo service management and local operators will participate in the panel. The panel will be moderated by community worker Tuija Salovaara.</p><p>There are activities for children and a dedicated room for children to stay in in the library's multifunctional space Tempo from 16.00 to 19.00.</p><p>Join us in exploring Kanneltalo and asking questions and discussing current issues in the neighbourhood.</p><p>See you at Kanneltalo!</p><p>Programme<br>16.00–19.00 Presentation of services and local operators and discussion with visitors</p><p>16.00–19.00 Presentation of hobby and summer activities</p><p>16.00–19.00 Children's programme and children's room in the library's multifunctional space Tempo</p><p>16.00 Information session on services at Kanneltalo on the Café Stage at 16.00 and 17.00</p><p>16.30 Guided house tour (including behind-the-scenes areas) starting from the lobby</p><p>17.00 Information session on services at Kanneltalo on the Café Stage at 16.00 and 17.00</p><p>17.30 Guided house tour (including behind-the-scenes areas) starting from the lobby</p><p>18.00–18.45 Neighbourhood panel on the Café Stage</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68160/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68078", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494788, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-06T13:13:18.697803Z", "last_modified_time": "2026-02-06T13:13:18.697816Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780498.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494788/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-06T13:13:18.606543Z", "last_modified_time": "2026-03-20T01:14:01.154800Z", "date_published": null, "start_time": "2026-04-15T08: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": "Kevään Skidikinossa moikataan myyrää! Myyrälle ja hänen ystävilleen aiheuttaa ihmetystä Myyrän kolon edestä löytynyt herätyskello. Sillä on hauska leikkiä, koska se tikittää ja sen viisareita voi käännellä.", "sv": "Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3C29C97D2D06CB80B3B3C9657A9F7E6E/Skidikino_S_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/3C29C97D2D06CB80B3B3C9657A9F7E6E/Skidikino_S_", "en": "http://www.vuotalo.fi/en/events/event/3C29C97D2D06CB80B3B3C9657A9F7E6E/Skidikino_S_" }, "name": { "fi": "Skidikino (S) – Myyrä ja herätyskello", "sv": "Skidikino (S) – Myyrä ja herätyskello", "en": "Skidikino (S) – Myyrä ja herätyskello" }, "description": { "fi": "<p>Kevään Skidikinossa moikataan myyrää! Myyrälle ja hänen ystävilleen aiheuttaa ihmetystä Myyrän kolon edestä löytynyt herätyskello. Sillä on hauska leikkiä, koska se tikittää ja sen viisareita voi käännellä.</p><p>Tsekkiläisen Zdenek Milerin luoma vekkuli Myyrä-hahmo tarjoaa ihastuttavan riemukkaita hetkiä kaikenikäisille! Elokuvassa on musiikkisäestys. Soveltuu myös perheen pienimmille.</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Se sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. Vuotalo - Taidekasvatus</p><p>Kieli: sanaton <br>Kesto: n. 30 min <br>Hinta: 0 € <br>Ikäraja: S <br>Ryhmille pakolliset ilmoittautumiset: www.kultus.hel.fi <br>Lisätietoja: salla.fornaro@hel.fi</p>", "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen. <br> <br>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök. Vuotalo - Taidekasvatus <br> <br>Längd: ca. 30 min <br>Språk: ordlös <br>Anmälan för grupper på kultus.hel.fi <br>Mera info: salla.fornaro@hel.fi</p>", "en": "<p>Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website. The illustrated material tells a story about going to the cinema. Vuotalo - Taidekasvatus <br> <br>Duration: 30 min <br>Language: no dialogue <br>Registration for daycare groups at kultus.hel.fi <br>More information: salla.fornaro@hel.fi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68078/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68079", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494787, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-06T13:13:18.372327Z", "last_modified_time": "2026-02-06T13:13:18.372342Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780497.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494787/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-06T13:13:18.255984Z", "last_modified_time": "2026-03-20T01:14:01.008574Z", "date_published": null, "start_time": "2026-04-15T06: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": "Kevään Skidikinossa moikataan myyrää! Myyrälle ja hänen ystävilleen aiheuttaa ihmetystä Myyrän kolon edestä löytynyt herätyskello. Sillä on hauska leikkiä, koska se tikittää ja sen viisareita voi käännellä.", "sv": "Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/FFE233CA54AC444330E14EE8E21410BC/Skidikino_S_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/FFE233CA54AC444330E14EE8E21410BC/Skidikino_S_", "en": "http://www.vuotalo.fi/en/events/event/FFE233CA54AC444330E14EE8E21410BC/Skidikino_S_" }, "name": { "fi": "Skidikino (S) – Myyrä ja herätyskello", "sv": "Skidikino (S) – Myyrä ja herätyskello", "en": "Skidikino (S) – Myyrä ja herätyskello" }, "description": { "fi": "<p>Kevään Skidikinossa moikataan myyrää! Myyrälle ja hänen ystävilleen aiheuttaa ihmetystä Myyrän kolon edestä löytynyt herätyskello. Sillä on hauska leikkiä, koska se tikittää ja sen viisareita voi käännellä.</p><p>Tsekkiläisen Zdenek Milerin luoma vekkuli Myyrä-hahmo tarjoaa ihastuttavan riemukkaita hetkiä kaikenikäisille! Elokuvassa on musiikkisäestys. Soveltuu myös perheen pienimmille.</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Se sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. Vuotalo - Taidekasvatus</p><p>Kieli: sanaton <br>Kesto: n. 30 min <br>Hinta: 0 € <br>Ikäraja: S <br>Ryhmille pakolliset ilmoittautumiset: www.kultus.hel.fi <br>Lisätietoja: salla.fornaro@hel.fi</p>", "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök. Vuotalo - Taidekasvatus <br> <br>Längd: ca. 30 min <br>Språk: ordlös <br>Anmälan för grupper på kultus.hel.fi <br>Mera info: salla.fornaro@hel.fi</p>", "en": "<p>Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website. The illustrated material tells a story about going to the cinema. Vuotalo - Taidekasvatus <br> <br>Duration: 30 min <br>Language: no dialogue <br>Registration for daycare groups at kultus.hel.fi <br>More information: salla.fornaro@hel.fi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68079/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67589", "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: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: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494528, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T16:13:42.138440Z", "last_modified_time": "2026-01-16T16:13:42.138457Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781981.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494528/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-16T16:13:42.034224Z", "last_modified_time": "2026-03-20T01:14:00.665039Z", "date_published": null, "start_time": "2026-04-14T15: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": "PROSESSISSA-esityksessä Malmitalo muuntautuu taiteellisen prosessin näyttämöksi.", "sv": "I föreställningen PROSESSISSA omvandlas Malms kulturhus till en scen för den konstnärliga processen.", "en": "The PROSESSISSA performance transforms Malmitalo into a stage for an artistic process." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B3D2B4F8FCFA28019E91C3F1B9659AE8/PROSESSISSA_esitys_teatteriesityksen_valmistamisesta", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B3D2B4F8FCFA28019E91C3F1B9659AE8/PROSESSISSA_en_framstallning_om_utarbetande_av_en_teaterforestallning", "en": "http://www.malmitalo.fi/en/events/event/B3D2B4F8FCFA28019E91C3F1B9659AE8/PROSESSISSA_IN_PROCESS_a_show_about_the_making_of_a_theatre_performance" }, "name": { "fi": "PROSESSISSA – esitys teatteriesityksen valmistamisesta", "sv": "PROSESSISSA – en framställning om utarbetande av en teaterföreställning", "en": "PROSESSISSA – IN PROCESS, a show about the making of a theatre performance" }, "description": { "fi": "<p>PROSESSISSA-esityksessä Malmitalo muuntautuu taiteellisen prosessin näyttämöksi.</p><p>Yleisö pääsee reaaliajassa seuraamaan teatteritaiteilijoiden työskentelyä kokonaisuuden eri osa-alueiden parissa sekä vaikuttamaan illan päätteeksi Malmisalin estradilla nähtävän ainutkertaisen näyttämöteoksen sisältöön. Jos olet koskaan pohtinut, kuinka vuorovaikutteinen, todellisista elämäkokemuksista ponnistava esitysprosessi tapahtuu – tämä on esitys juuri sinulle!</p><p>Esitys on osa Helsingin Kaupunginteatterin Pääroolissa Malmi - hanketta, jossa toteutetaan alue- ja yhteisölähtöistä teatteri- ja taidetoimintaa. Hanke on yksi Helsingin kaupungin Helsingin malli -hankkeista.</p><p>Kuvassa Talvikki Eerola ja Reetta Kankare.</p><p>Esitys on maksuton, mutta liput täytyy varata ennakkoon. Lippujen varaus Lyytin kautta: https://www.lyyti.in/PROSESSISSA_esitys</p><p>Esityksen kieli on suomi. Suosittelemme esitystä yli 13-vuotiaille.</p><p>Esityksen kesto 2 t 30 min, sis väliajan</p><p>Työryhmä</p><p>Esityskonsepti:<br>Laura Ikonen, Aleksi Kinnunen, Janne Puustinen</p><p>Taiteelliset suunnittelijat ja osallistavien pisteiden vetäjät:<br>Laura Ikonen, Jenny Jumppanen, Riikka Karjalainen, Aleksi Kinnunen, Mirja Neuvonen, Janne Puustinen</p><p>Näyttelijät:<br>Laura Ikonen, Reetta Kankare, Heli Lyytikäinen</p><p>Avustajaoppaat:<br>Mari Ikonen, Marina Toivonen</p><p>Tuotanto:<br>Helsingin Kaupunginteatterin yleisötyö / Pääroolissa Malmi, Malmitalo</p>", "sv": "<p>I föreställningen PROSESSISSA omvandlas Malms kulturhus till en scen för den konstnärliga processen.</p><p>Publiken kan i realtid följa teaterkonstnärernas arbete bland de olika delområdena i helheten och i slutet av kvällen påverka innehållet i ett unikt scenuppförande som ses på Malmsalens estrad. <br> <br>Föreställningen är en del av Helsingfors stadsteaters projekt Pääroolissa Malmi (Malm i huvudrollen), i vilken man genomför regional och samhällsbaserad teater- och konstverksamhet. Projektet är ett av Helsingfors stads Helsingforsmodellen-projekt.<br> <br>På bilden: Talvikki Eerola och Reetta Kankare.</p><p>Föreställningen är avgiftsfri, men biljetterna måste förhandsbokas. Biljetterna till föreställningen finns tillgängliga i februari 2026.</p><p>Föreställningens språk är finska.</p>", "en": "<p>The PROSESSISSA performance transforms Malmitalo into a stage for an artistic process.</p><p>The audience will be given the chance to see the work of the theatre artists in real time and will be shown how the artists work on the different aspects of the performance. They will also be able to influence the content of this unique performance work, shown on the stage of Malmi Hall at the end of the evening. <br> <br>The performance is part of the Helsinki City Theatre's Pääroolissa Malmi (Starring Malmi) project, which implements regional and community-based theatre and art activities. This project is one of the City of Helsinki's Helsinki Model projects.<br> <br>Pictured Talvikki Eerola and Reetta Kankare.</p><p>The performance is free of charge, but tickets must be booked in advance. Tickets for the show will be available in February 2026.</p><p>The performance will be in Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67589/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67468", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494012, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:10.157077Z", "last_modified_time": "2025-12-03T08:13:10.157092Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781434.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494012/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T08:13:10.056100Z", "last_modified_time": "2026-03-20T01:14:00.419644Z", "date_published": null, "start_time": "2026-04-14T14: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!" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4059968138DB6B0E76CCF0132F5978F6/Yhteislaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4059968138DB6B0E76CCF0132F5978F6/Allsang", "en": "http://www.malmitalo.fi/en/events/event/4059968138DB6B0E76CCF0132F5978F6/Singalongs" }, "name": { "fi": "Yhteislaulut", "sv": "Allsång", "en": "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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67468/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68191", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1585994, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-10T08:12:59.206454Z", "last_modified_time": "2026-03-10T08:12:59.206466Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782247.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1585994/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-10T08:12:59.095549Z", "last_modified_time": "2026-03-20T01:14:00.290443Z", "date_published": null, "start_time": "2026-04-14T12:00:00Z", "end_time": "2026-04-14T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CBB8CF4509A5EFFBDDAE53C035F0191F/Roskasta_kaunista_-tyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CBB8CF4509A5EFFBDDAE53C035F0191F/Roskasta_kaunista_-tyopajat", "en": "http://www.vuotalo.fi/en/events/event/CBB8CF4509A5EFFBDDAE53C035F0191F/Roskasta_kaunista_-tyopajat" }, "name": { "fi": "Roskasta kaunista -työpajat – Roskaa!-näyttelyn oheisohjelmaa", "sv": "Roskasta kaunista -työpajat – Roskaa!-näyttelyn oheisohjelmaa", "en": "Roskasta kaunista -työpajat – Roskaa!-näyttelyn oheisohjelmaa" }, "description": { "fi": "<p>Tule mukaan tekemään roskasta kaunista! Pääset harjoittamaan kädentaitojasi ja kokeilemaan, miten erilaiset materiaalit taipuvat uuteen käyttöön.</p><p>Huhtikuussa järjestetään kolme työpajaa Roskaa!-näyttelyn keskellä, Vuotalon aulassa. Saat kaikki tarvittavat materiaalit paikan päältä. Työpajat eivät maksa mitään. Työpajat sopivat kaiken ikäisille, mutta alle kouluikäiset voivat osallistua vain oman aikuisen seurassa.</p><p>Roskasta kaunista -pajat toteutetaan yhteistyössä Työväenopiston kanssa. Työpajoja ohjaa Kristiina Tergujeff. Ohjauskieli on suomi.</p><p>Ohjelma:</p><p>ti 7.4. klo 15.00-18.15<br>Kukkia karkkipaperista</p><p>ti 14.4. klo 15.00-18.15<br>Napit kiertoon</p><p>ti 21.4. klo 15.00-18.15<br>Kierrätä pitsejä</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68191/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67286", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494068, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:54.638696Z", "last_modified_time": "2025-12-04T12:12:54.638711Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780831.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494068/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:54.565768Z", "last_modified_time": "2026-03-20T01:13:59.693670Z", "date_published": null, "start_time": "2026-04-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": "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!" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2556EEE9319C221814501AD70455C877/Nyt_lauletaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2556EEE9319C221814501AD70455C877/Nu_sjunger_vi_", "en": "http://www.kanneltalo.fi/en/events/event/2556EEE9319C221814501AD70455C877/Let_us_sing_" }, "name": { "fi": "Nyt lauletaan! – Maksuttomat maanantait", "sv": "Nu sjunger vi! – Kostnadsfria måndagar", "en": "Let us sing! – Free Mondays" }, "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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67286/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68020", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-793/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494626, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-26T10:12:56.694420Z", "last_modified_time": "2026-01-26T10:12:56.694431Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777683.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494626/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-26T10:12:56.605709Z", "last_modified_time": "2026-03-20T01:13:59.588013Z", "date_published": null, "start_time": "2026-04-13T13:00:00Z", "end_time": "2026-04-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.", "sv": "På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.", "en": "On Monday afternoons, we will be doing arts and crafts and spending fun time together." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7489357F4A8B0DD77F72B633649F10FE/Nuorten_suunnittelemat_iltapaivat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/7489357F4A8B0DD77F72B633649F10FE/Eftermiddagar_planerade_av_unga", "en": "http://www.vuotalo.fi/en/events/event/7489357F4A8B0DD77F72B633649F10FE/Afternoons_planned_by_young_people" }, "name": { "fi": "Nuorten suunnittelemat iltapäivät – Operaatio Pulssi", "sv": "Eftermiddagar planerade av unga – Operaatio Pulssi", "en": "Afternoons planned by young people – Operation Pulse!" }, "description": { "fi": "<p>Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.</p><p>Vuosaarelaiset nuoret ovat ideoineet tekemistä koulu- tai työpäivän päätteeksi. Kaikki ovat tervetulleita, ikään katsomatta. Iltapäivät ovat ilmaisia ja tarvittavat materiaalit saa paikan päältä.</p><p>Pistäydy tai viihdy vaikka koko aika!</p><p>Työpajoja ohjaavat nuorisotyöntekijä sekä nuoret itse. Tarkemmasta ohjelmasta kerrotaan Vuotalon aulassa ja somekanavissa viimeistään viikkoa ennen.</p><p>Vapaa pääsy</p><p>Huom! Ei järjestetä 6.4.2026.</p>", "sv": "<p>På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.</p><p>Ungdomar i Nordsjö har kommit med idéer om vad man kan göra när skol- eller arbetsdagen är slut. Alla är välkomna, oavsett ålder. Eftermiddagarna är kostnadsfria och det nödvändiga materialet finns tillgängligt på plats. Titta in eller stanna hela tiden!</p><p>Workshopparna leds av en ungdomsledare och ungdomarna själva. Det detaljerade programmet publiceras i Nordhusets aula och på sociala medier minst en vecka innan.</p>", "en": "<p>On Monday afternoons, we will be doing arts and crafts and spending fun time together.</p><p>Young people in Vuosaari have come up with ideas for things to do at the end of the school or workday. All are welcome, regardless of age. The afternoons are free of charge and the materials needed are available on-site. Drop by for a moment or stay the whole time!</p><p>The workshops are run by a youth worker and the young people themselves. The detailed programme will be posted in the Vuotalo lobby and on social media at least one week in advance.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68020/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67236", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494308, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T10:14:00.359534Z", "last_modified_time": "2025-12-23T10:14:00.359556Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780051.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494308/?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-23T10:14:00.217149Z", "last_modified_time": "2026-03-20T01:13:57.642140Z", "date_published": null, "start_time": "2026-04-11T07:00:00Z", "end_time": "2026-04-11T12: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": null, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8A27A7320A6612F11267195FC92FF2FF/Barnfesten_2026", "sv": "http://www.annantalo.fi/sv/evenemang/event/8A27A7320A6612F11267195FC92FF2FF/Barnfesten_2026", "en": "http://www.annantalo.fi/en/events/event/8A27A7320A6612F11267195FC92FF2FF/Barnfesten_2026" }, "name": { "fi": "Barnfesten 2026 – yhdessä aikaa", "sv": "Barnfesten 2026 – tid tillsammans", "en": "Barnfesten 2026 – time together" }, "description": { "fi": "<p>Luckan Barnkultur järjestää jälleen Barnfest-tapahtumapäivän Annantalolla lauantaina 11. huhtikuuta klo 10–15. Tapahtuma toteutetaan yhteistyössä yli 15 muun organisaation kanssa. Barnfesten painottaa moninaisuutta ja saavutettavuutta. Tapahtuma on maksuton ja kannustaa kaikenikäisiä lapsia taiteen ja kulttuurin pariin. Barnfesten on yhteisöllisyyden ja ilon juhla, jossa jokainen lapsi voi löytää jotain itselleen hauskaa ja kiinnostavaa. Ohjelma on pääosin ruotsinkielinen.</p><p>Vuoden 2026 Barnfestenissä voit tanssia 90-luvun rytmeihin Babydiscossa, riimitellä ja liikkua lastenrunojen tahdissa Rimjamissa, luoda värikkäitä askarteluja ja uppoutua satujen lumoon. Voit kuunnella sukupolvien ajan eläviä kansansävelmiä tai laulaa TeckenSandran kanssa. Värikkäät poi-esitykset ja UngaTeaternin puvustoon tutustuminen tuovat vielä lisää elämyksiä päivän ohjelmaan.</p><p>Helmetin ja Celian pop-up-kirjastossa on tarjolla kirjoja kaikenikäisille lapsille, ja Förlaget järjestää ääneenlukua Sanna Sofia Vuoren johdolla. Sanaton näytelmä BullyBully tekee maailmanpolitiikasta helposti ymmärrettävää, ja Teatteri Taimine korvaa tyhjät sanat ja diplomatian laululla, tanssilla ja hauskalla tarinankerronnalla. Lisäksi päivän aikana voit tavata opaskoiraa ja kokeilla pistekirjoitusta sekä suurennuslasia Synförbundetin kanssa.</p><p>Kaikki lapset ovat lämpimästi tervetulleita nauttimaan iloisesta lastenkulttuuripäivästä yhdessä läheistensä kanssa. Osa ohjelmasta on käynnissä koko päivän, mutta tietyt ohjelmat alkavat tiettyinä kellonaikoina ja niihin on rajoitettu osallistujamäärä. Paikkaliput jaetaan Annantalon sisäänkäynnin yhteydessä tapahtumapäivänä klo 10 alkaen. Rajoitettu määrä lippuja on myös saatavilla 7.–10.4. Luckan Helsingistä (Yrjönkatu 27) klo 11–17.</p><p>Lisätietoa Barnfesten 2026 tapahtumasta löydät osoitteesta: <br>https://barnkultur.luckan.fi/barnfesten/</p>", "sv": "<p>Luckan Barnkultur organiserar, tillsammans med över 15 organisationer, årets Barnfest på Annegården lördagen den 11 april kl. 10–15. Evenemanget är tillgängligt och kostnadsfritt, och arrangörerna vill uppmuntra till kulturdelaktighet. Barnfesten är en fest för gemenskap och glädje. Här finns mångsidiga och roliga aktiviteter för alla barn som teater, musik, pyssel och sagor.</p><p>På Barnfesten 2026 kan du skaka loss till 90-talsmusik på Babydisco eller ramsa och dansa i takt med barnpoesi på Rimjam. Lyssna till gamla folksånger som levt vidare genom generationer, eller sjunga med tecken som stöd tillsammans med TeckenSandra. Du kan njuta av färgsprakande poi-uppträdanden eller dyka ner i UngaTeaterns garderob. Eller vill du bli bekant med en ledarhund och utforska punktskrift och förstoringsglas med Synförbundet?</p><p>I Helmet och Celias pop-up-bibliotek finns böcker av olika slag, och Förlaget ordnar högläsning med Sanna Sofia Vuori. Global politik görs barnsligt enkel i den ordlösa pjäsen BullyBully. Teater Taimine ersätter tomma ord och diplomati med sång, dans och härligt löjliga tvister. Dessutom erbjuds flera kreativa pysselverkstäder.</p><p>Alla barn är varmt välkomna att ta del av den festliga barnkulturdagen tillsammans med nära och kära. Vissa program pågår kontinuerligt, medan andra startar vid bestämda tider och har ett begränsat antal platser. Under Barnfesten finns platsbiljetter att hämta i Annegårdens entré från kl. 10. Ett begränsat antal biljetter kan även hämtas på Luckan i Helsingfors, Georgsgatan 27, mellan den 7 och 10 april kl. 11-17.</p><p>Läs mer om Barnfesten 2026:<br>https://barnkultur.luckan.fi/barnfesten/</p>", "en": "<p>Luckan Barnkultur is organizing this year’s Barnfest at Annegården on Saturday, April 11, from 10–15 o’clock, together with over 15 other organizations. Barnfesten takes diversity and accessibility into account. The event is free of charge and aims to encourage participation in culture. Barnfesten celebrates quality time together while offering a wide variety of fun activities for children, ranging from theater and music to arts and crafts and storytelling. The program is mainly in Swedish.</p><p>At Barnfesten 2026, you can move and groove to ‘90s hits at Babydisco, or rhyme along with children’s poetry at Rimjam. Listen to traditional folk songs that have been passed down through generations or sing and sign with TeckenSandra. Enjoy vibrant poi performances, explore UngaTeatern's wardrobe, or meet a guide dog while discovering braille and magnifying glasses with the Synförbundet.</p><p>In Helmet and Celia’s pop-up library, you’ll find children's books of all kinds, and Förlaget will host a reading session with Sanna Sofia Vuori. Global politics is made childishly simple in the non-verbal play BullyBully, Teater Taimine replaces empty words and diplomacy with song, dance, and delightfully silly disputes.</p><p>All children are welcome to enjoy a festive day of children's culture together with their loved ones. Some activities will run throughout the day, while others start at specific times and have a limited number of spots. Tickets for these activities will be available at Annegården’s entrance starting at 10 AM. A limited number of tickets can also be collected in advance between April 7 and 10 from Luckan Helsingfors (Georgsgatan 27) 11–17 o’clock.</p><p>More information about Barnfesten 2026 can be found at:<br>https://barnkultur.luckan.fi/barnfesten/</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67236/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67427", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494782, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-06T09:13:14.438050Z", "last_modified_time": "2026-02-06T09:13:14.438061Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781194.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494782/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-06T09:13:14.357181Z", "last_modified_time": "2026-03-20T01:13:57.538497Z", "date_published": null, "start_time": "2026-04-11T07:00:00Z", "end_time": "2026-04-11T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule ostoksille tai varaa oma myyntipöytä! Kirppis järjestetään Kanneltalon aulassa.", "sv": "Kom och handla eller reservera ett eget bord!", "en": "Come shop or book your own sales table!" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E380CC1782D326FBB9F2DD9CAD62AF97/MLL_n_lastenvaate_ja_-tarvikekirppis", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E380CC1782D326FBB9F2DD9CAD62AF97/MLL_Gamlas_Loppis_for_barnklader_och_barnutrustning", "en": "http://www.kanneltalo.fi/en/events/event/E380CC1782D326FBB9F2DD9CAD62AF97/MLL_Kannelmaki_Flea_market_for_children_s_clothing_and_equipment" }, "name": { "fi": "MLL:n lastenvaate ja -tarvikekirppis", "sv": "MLL Gamlas: Loppis för barnkläder och barnutrustning", "en": "MLL Kannelmäki: Flea market for children’s clothing and equipment" }, "description": { "fi": "<p>Tule ostoksille tai varaa oma myyntipöytä! Kirppis järjestetään Kanneltalon aulassa.</p><p>Pöydän hinta yhdistyksen jäseniltä 7 €, muilta 10 €.</p><p>Pöytävaraukset: https://kannelmaki.mll.fi/kirpputori</p><p>Vapaa pääsy</p>", "sv": "<p>Kom och handla eller reservera ett eget bord!</p><p>Kom och handla eller reservera ett eget bord!</p><p>Loppmarknaden ordnas i Gamlasgårdens lobby.</p><p>Ett bord kostar 7 € för föreningens medlemmar, 10 € för andra. <br>Bordsbokningar: https://kannelmaki.mll.fi/kirpputori/</p>", "en": "<p>Come shop or book your own sales table!</p><p>The flea market is held in the lobby of Kanneltalo.</p><p>Tables are priced at €7 for members, €10 for others.</p><p>Table reservations: https://kannelmaki.mll.fi/kirpputori/</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67427/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67301", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494784, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-06T10:13:13.017380Z", "last_modified_time": "2026-02-06T10:13:13.017394Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780865.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494784/?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-06T10:13:12.877222Z", "last_modified_time": "2026-03-20T01:13:57.108488Z", "date_published": null, "start_time": "2026-04-10T15: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": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.", "en": "Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/14BFD58D934C50283356BD2F202995D2/Global_Club_Nights_Reditus_Duo_ja_Sayan", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/14BFD58D934C50283356BD2F202995D2/Global_Club_Nights_Reditus_Duo_ja_Sayan", "en": "http://www.kanneltalo.fi/en/events/event/14BFD58D934C50283356BD2F202995D2/Global_Club_Nights_Reditus_Duo_ja_Sayan" }, "name": { "fi": "Global Club Nights: Reditus Duo ja Sayan", "sv": "Global Club Nights: Reditus Duo ja Sayan", "en": "Global Club Nights: Reditus Duo ja Sayan" }, "description": { "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Klubi tarjoilee mukaansa tempaavan musiikin lisäksi myös muuta mukavaa lapsille sopivaa ohjelmaa. Aloitetaan viikonloppu yhdessä!</p><p>Tapahtumassa myös työpaja koko perheelle!</p><p><b>Reditus Duo</b><br>Toinen Brasiliasta, toinen Italiasta – kohtaamispaikka: Tallinna. Juuri Viron pääkaupungissa syntyi Reditus Duo. Duoon kuuluvat Marcelo Chacur Politano (sävellykset, kitara ja perinteiset huilut) sekä Francesco Pio Russo (fagotti ja saksofonit). Molemmat muusikot työskentelevät Virossa tohtorintutkimustensa parissa Viron musiikki- ja teatteriakatemiassa, ja heidän musiikillinen yhteistyönsä ylittää perinteiset tyylirajat klassisen, jazzin ja kansanmusiikin kohdatessa läheisessä kulttuurienvälisessä vuoropuhelussa.</p><p>Ohjelma koostuu Marcelo Politanon sävellyksistä, jotka saavat inspiraationsa Etelä-Amerikan ja Viron kansanmusiikkiperinteistä, sekä hetkistä, joissa korostuu vapaa improvisaatio. Osa teoksista toimii improvisaation kehyksinä, kun taas toiset on sävelletty tuomaan esiin soittimien mekaanisia tai kulttuurisia erityispiirteitä sekä muusikoiden ainutlaatuista taiteellista ilmaisua.</p><p>Konsertti ilmentää paluuta yhteisiin musiikillisiin juuriin sekä kulttuuristen ja tyylillisten rajojen ylittämistä. Tämä musiikillinen välitila – sävellyksen ja improvisaation, eri lajien ja perinteiden välissä – heijastaa molempien muusikoiden taiteellisen tutkimuksen ydintä Viron musiikki- ja teatteriakatemiassa sekä Sibelius-Akatemiassa. Marcelo Politanon tutkimus keskittyy kulttuurienväliseen säveltämiseen, kun taas Francesco Russo tutkii improvisaatiotekniikoita fagotilla.</p><p><b>Sayan</b><br>Sayan on dynaaminen musiikkitrio, joka yhdistää persialaisen musiikin rikkaan perinteen globaalin näkökulman kanssa. Yhtyeessä soivat kamanche, qanun ja lyömäsoittimet, ja heidän äänimaailmansa rakentaa sillan perinnön ja nykyilmaisun välille. Persialaiseen musiikkiperinteeseen juurtunut Sayan vaalii kulttuurinsa ydintä samalla kun se tutkii uusia ulottuvuuksia improvisaation, yhteistyön ja oman sävellystyön kautta.</p><p><b>Lumoava hiekkamaalaustyöpaja</b><br>Maksuton ja kaikille avoin työpaja. Hiekalla luodut kuviot valuvat, leviävät, aaltoilevat, katoavat ja muuttuvat toisenlaiseksi jatkuvasti. Pienimmät lapset ovat tervetulleita työpajaan oman aikuisen seurassa. <br>Paikka: Kanneltalon galleria <br>Aika: klo 18–20</p><p>Global Club Nights -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen ja siltojen rakentaminen kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja Kanneltalon kanssa.</p><p>Tapahtumilla pyritään rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Kulttuurikeskus Kanneltalo tuottaa Global Club Nights (GCN) -illat yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman ja Maailman musiikin keskuksen kanssa.</p><p>Paikka: Kahvilan Stage<br>klo 18-20.30<br>Vapaa pääsy</p>", "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p>De avgiftsfria klubbkvällarna börjar tidigt, så barn är också välkomna i sällskap av en vuxen. Låt oss inleda veckoslutet tillsammans!</p><p><b>Residus Duo</b> <br>En från Brasilien, den andra från Italien – mötesplats: Tallinn. Det var i Estlands huvudstad som Reditus Duo föddes. Duon består av Marcelo Chacur Politano (kompositioner, gitarr och traditionella flöjter) och Francesco Pio Russo (fagott och saxofoner). De två musikerna, som båda bedriver doktorsstudier vid Estlands musik- och teaterakademi, presenterar en ljudlig utforskning som överskrider traditionella genregränser genom mötet mellan klassisk musik, jazz och folkmusik i en nära interkulturell dialog.<br>Programmet inkluderar kompositioner av Marcelo Politano, inspirerade av sydamerikanska och estniska folktraditioner, samt stunder av fri improvisation. Vissa stycken fungerar som ramar för improvisation, medan andra är skrivna för att framhäva specifika mekaniska eller kulturella egenskaper hos instrumenten och musikernas unika konstnärskap.</p><p>Konserten uttrycker dessutom en återgång till gemensamma musikaliska rötter och överskridandet av kulturella och stilistiska gränser. Detta gränsland inom musiken – mellan komposition och improvisation, mellan genrer och traditioner – speglar kärnan i båda musikernas konstnärliga forskning vid Estlands musik- och teaterakademi och Sibelius-Akademin. Marcelo Politanos forskning fokuserar på interkulturell komposition, medan Francesco Russo undersöker improvisationstekniker på fagott.</p><p><b>Sayan</b><br>Sayan är en dynamisk musiktrio som förenar den rika persiska musiktraditionen med ett globalt perspektiv. Ensemblen består av kamanche, qanun och slagverk, och skapar ett ljudlandskap som bygger en bro mellan tradition och modern uttrycksform.<br>Med rötter i den persiska musikkulturen värnar Sayan om sin kulturella essens samtidigt som gruppen utforskar nya dimensioner genom improvisation, samarbeten och originalkompositioner.</p><p>Syftet med klubbarna är att skapa en trygg, inkluderande och kreativ miljö och bygga broar mellan alla musikälskare och deras gemenskaper. Global Club Nights har producerats i samarbete med avdelningen för global musik vid Sibelius-Akademin och Gamlasgården.</p><p>Evenemangen syftar till att bygga broar mellan alla musikälskare och deras gemenskaper. Kulturcentret Gamlasgården producerar Global Club Nights (GCN)-kvällarna i samarbete med Sibelius-Akademins utbildningsprogram Global Music.</p>", "en": "<p>Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music.</p><p>The free club nights start early, so children are welcome when accompanied by an adult. In addition to exciting music, the club also offers other fun activities suitable for children. Let's start the weekend together!</p><p><b>Reditus Duo</b><br>One from Brazil, the other from Italy, the meeting place: Tallinn. It is in the Estonian capital that the Reditus Duo was born. The duo is composed of Marcelo Chacur Politano (compositions, guitar and traditional flutes) and Francesco Pio Russo (bassoon and saxophones). The two musicians, both working in Estonia on doctoral research projects at the Estonian Academy of Music and Theatre in Tallinn, present a sound exploration that transcends traditional genre boundaries through the encounter of classical, jazz and folk within a close intercultural dialogue.</p><p>The program includes compositions by Marcelo Politano inspired by South American and Estonian folk traditions, as well as moments of free improvisation. Some pieces serve as frameworks for improvisation, while others were composed to highlight specific mechanical or cultural characteristics of the instruments and the unique artistry of the performers. The concert further embodies a return to shared musical roots and the crossing of cultural and stylistic boundaries. This liminal musical space — between composition and improvisation, between genres and traditions — reflects the core of both musicians' artistic research at the Estonian Academy of Music and Theatre. and the Sibelius Academy. Marcelo Politano’s research explores intercultural music composition, while Francesco Russo investigates improvisational techniques on the bassoon.</p><p><b>Sayan</b><br>Sayan is a dynamic musical trio blending the rich traditions of Persian music with a global perspective. The ensemble features Kamanche, Qanun, and Percussion, creating a sound that bridges heritage and contemporary expression. Rooted in Persian musical traditions, Sayan is dedicated to preserving their cultural essence while exploring new dimensions through improvisation, collaboration, and original composition.</p><p><b>Enchanting sand painting workshop</b><br>The patterns created with sand flow, spread, ripple, disappear and constantly change into something different. Child friendly workshop is free and open to everyone. The smallest children are welcome to the workshop accompanied by their own adult. <br>Venue: Kanneltalo Gallery <br>Time: 6–8 p.m.</p><p>Global Club Nights aims to create a safe, inclusive and creative environment and build bridges between all music lovers and their communities. Global Club Nights has been produced in cooperation with the Sibelius Academy’s Global Music Department and Kanneltalo.</p><p>The events aim to build bridges between all music lovers and their communities. Cultural Centre Kanneltalo produces Global Club Nights (GCN) evenings in cooperation with the Sibelius Academy’s Global Music study programme and the World Music Centre.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67301/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67706", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494100, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-05T09:12:53.912399Z", "last_modified_time": "2025-12-05T09:12:53.912414Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782555.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494100/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-05T09:12:53.835397Z", "last_modified_time": "2026-03-20T01:13:56.264072Z", "date_published": null, "start_time": "2026-04-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": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.", "sv": "I filmserien Publikens favoriter visas en gång i månaden förra säsongens populäraste och mest önskade filmer.", "en": "Once a month, the Audience favourites series presents the most popular and frequently requested films of the previous season." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7A5894621DE31562473CBD31F6C0B4FE/Yleison_suosikit_100_litraa_sahtia", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7A5894621DE31562473CBD31F6C0B4FE/Publikfavorit_100_litraa_sahtia_12_", "en": "http://www.malmitalo.fi/en/events/event/7A5894621DE31562473CBD31F6C0B4FE/Audience_favourites_100_Liters_of_Gold_12_" }, "name": { "fi": "Yleisön suosikit: 100 litraa sahtia", "sv": "Publikfavorit: 100 litraa sahtia (12)", "en": "Audience favourites: 100 Liters of Gold (12)" }, "description": { "fi": "<p>Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.</p><p>100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jossa siskokset Pirkko (Elina Knihtilä) ja Taina (Pirjo Lonka) ovat jatkaneet sukunsa pitkää perinnettä sahdin valmistajina. <br>Kylällä jokainen haluaa osansa maineikkaasta juomasta, vaikka maksukykyä ei aina löytyisikään. Yllättäen kotikonnuille tekee paluun sisarustrion kolmas - Päivi (Ria Kataja), ja tilaa siskoiltaan häihinsä ei enempää eikä vähempää kuin sata litraa sahtia. Pirkko ja Taina panevat tuumasta toimeen täydellisen satsin valmistamiseksi. Pelissä on sekä perhesuhteet että maine. Prosessiin kuuluva maistelu kuitenkin venähtää, ja Sysmän kulta hulahtaa kokonaisuudessaan itse panijoiden sekä kyläläisten kitusiin. Pian häihin on enää alle kaksi vuorokautta aikaa, ja siskosten on keksittävä keino miten toimittaa juhliin luvatut sahdit. Alkaa taistelu aikaa vastaan, ja tilanteen korjaamiseksi käytetään kaikki mahdolliset keinot.<br>Kesto: 88 min<br>Ikäraja: K-12<br>Vapaa pääsy!</p>", "sv": "<p>I filmserien Publikens favoriter visas en gång i månaden förra säsongens populäraste och mest önskade filmer.</p><p>100 litraa sahtia är en komedi som utspelar sig i Sysmä, världens huvudstad för hembryggt öl, där systrarna Pirkko (Elina Knihtilä) och Taina (Pirjo Lonka) har fortsatt sin släkts långa tradition som tillverkare av hembryggt öl. <br>I byn vill alla ha sin andel av den berömda drycken, även om de inte alltid har råd med det. Överraskande nog återvänder den tredje i syskonskaran – Päivi (Ria Kataja) - till hemtrakten och beställer varken mer eller mindre än hundra liter hembryggt öl till sitt bröllop av sina systrar. Pirkko och Taina sätter igång med att tillverka en utmärkt sats. Både familjerelationerna och ryktet står på spel. Den tillhörande provsmakningsprocessen förlängs dock, och guldet från Sysmä hamnar i sin helhet i bryggarnas och bybornas egna magar. Snart är det mindre än två dygn kvar till bröllopet och systrarna måste hitta på ett sätt att leverera den hembryggda ölen som utlovats till festen. En kamp mot tiden börjar och alla tänkbara sätt tas i bruk för att rätta till situationen. <br>Längd: 88 min. <br>Åldersgräns: K-12 <br>Fritt inträde!</p>", "en": "<p>Once a month, the Audience favourites series presents the most popular and frequently requested films of the previous season.</p><p>The film 100 Liters of Gold is a comedy set in Sysmä, the sahti farmhouse ale capital of the world, where sisters Pirkko (Elina Knihtilä) and Taina (Pirjo Lonka) have continued their family's long tradition of brewing sahti. <br>In the village, everyone wants their share of the famous drink – even if they can’t always pay for it. The third member of the sibling trio – Päivi (Ria Kataja) – makes a surprise visit home and asks her sisters to brew no less than hundred litres of this liquid gold for her wedding. Pirkko and Taina get to work to brew a perfect batch of sahti. Both their family relationships and reputation are at stake. However, sampling the product – an integral part of the brewing process – gets a little out of hand, and the whole batch of this Sysmä gold ends up poured down the throats of the brewers themselves and the villagers. With less than two days to go until the wedding, the sisters must find a way to deliver the sahti they have promised. A battle against the clock begins, and the sisters are determined to fix the situation by any means necessary. <br>Duration: 88 min <br>Age rating: 12 <br>Free entry!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67706/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }