Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=17
{ "meta": { "count": 21736, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=18", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=16" }, "data": [ { "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": [], "info_url": null, "description": null, "price": 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." }, "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" }, "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>" }, "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" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67301/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67396", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468698/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468698/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468698/" }, "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1672531, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T11:14:17.973009Z", "last_modified_time": "2026-03-19T11:14:17.973023Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781086.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672531/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T11:14:17.842025Z", "last_modified_time": "2026-03-20T01:13:56.990203Z", "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": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DA13D097E1ECEE9BDBCEAB41487BA339/The_Wizard_of_The_Kremlin_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/DA13D097E1ECEE9BDBCEAB41487BA339/The_Wizard_of_The_Kremlin_12_", "en": "http://www.malmitalo.fi/en/events/event/DA13D097E1ECEE9BDBCEAB41487BA339/The_Wizard_of_The_Kremlin_12_" }, "description": { "fi": "<p>Venäjä 1990-luvun alussa. Neuvostoliitto on romahtanut. Keskellä kaaosta ja itseään uudelleen rakentavaa maata kulkee määrätietoisesti omaa polkuaan poikkeuksellisen älykäs nuori mies, Vadim Baranov (Paul Dano). Ensin avantgardetaiteilija, sitten tosi-tv-ohjelmien tuottaja, hänestä tulee epävirallinen neuvonantaja entiselle KGB-agentille, joka on matkalla kohti ehdotonta valtaa – miehelle, joka tullaan pian tuntemaan nimellä ”tsaari”, Vladimir Putin (Jude Law).</p><p>Järjestelmän ytimeen päätynyt Baranov nousee uuden Venäjän spin doctoriksi, muovaamaan puheita, mielikuvia ja todellisuudentajua. Yksi ihminen jää kuitenkin hänen vaikutusvaltansa ulkopuolelle: Ksenia (Alicia Vikander), vapaa ja tavoittamaton nainen, joka edustaa mahdollisuutta paeta – kauas poliittisesta vaikutuksesta ja vallankäytöstä.</p><p>Viisitoista vuotta myöhemmin, vetäydyttyään hiljaisuuteen, Baranov suostuu puhumaan. Se, mitä hän paljastaa, hämärtää rajat totuuden ja fiktion, uskomuksen ja strategian välillä. The Wizard of the Kremlin on laskeutuminen vallan pimeisiin käytäviin – elokuva, jossa jokainen sana on osa juonta.</p><p>Elokuva perustuu Giuliano da Empolin romaaniin Kremlin velho.</p><p>Ikäraja: 12<br>Kesto: 146 min<br>Ensi-ilta: 13.03.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "The Wizard of The Kremlin (12) – Kino Helios", "sv": "The Wizard of The Kremlin (12) – Kino Helios", "en": "The Wizard of The Kremlin (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67396/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67395", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-isanpaiva-malmitalo-21468599/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-isanpaiva-malmitalo-21468599/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-isanpaiva-malmitalo-21468599/" }, "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1672116, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T10:14:16.597952Z", "last_modified_time": "2026-03-19T10:14:16.597966Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781085.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672116/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T10:14:16.435570Z", "last_modified_time": "2026-03-20T01:13:56.884342Z", "date_published": null, "start_time": "2026-04-10T12: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": "Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0517FF4F01B38B62E39CFA2BB88BDC10/Isanpaiva_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0517FF4F01B38B62E39CFA2BB88BDC10/Isanpaiva_7_", "en": "http://www.malmitalo.fi/en/events/event/0517FF4F01B38B62E39CFA2BB88BDC10/Isanpaiva_7_" }, "description": { "fi": "<p>Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.</p><p>Elokuvassa Veikko (Tommi Korpela) auttaa ystäväänsä Tinkeä (Tomi Lindfors) selviämään arjesta palveluyksikössä. Tinke on juonut terveytensä, ja elämää pitää kasassa sen nurjasta puolesta kumpuava huumori.</p><p>Kun ystävysten bändimenneisyydestä tutun Saimin (Laura Birn) teini-ikäiset kaksoset (Vilja ja Varpu Rintanen) päättävät ottaa selvää isästään, etsintä johtaa heidät Tinken jäljille. Saimi aikoo estää kaksosia tapaamasta Tinkeä, mutta sotkun keskelle tempautunut Veikko on eri mieltä.</p><p>Salmenperän luottonäyttelijä Tommi Korpelan rinnalla näyttelevä Tomi Lindfors tuo katkeransuloiseen tarinaan omakohtaista kokemustaan elämästä sivuraiteilla.</p><p>Lindforsin ja Tommi Korpelan vuosikymmenten mittainen tosimaailman ystävyys on vilahtanut aiemmin myös Salmenperän Jussi-palkitussa elokuvassa Tyhjiö.</p><p>Ikäraja: 7<br>Kesto: 99 min<br>Ensi-ilta: 6.3.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Isänpäivä (7) – Kino Helios", "sv": "Isänpäivä (7) – Kino Helios", "en": "Isänpäivä (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67395/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65848", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/name-20035842", "sv": "https://www.lippu.fi/event/name-20035842", "en": "https://www.lippu.fi/event/name-20035842" }, "description": null, "price": { "fi": "38,90-48,90 €", "sv": "38,90-48,90 €", "en": "38,90-48,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 465235, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-04T11:13:36.785172Z", "last_modified_time": "2025-04-04T11:13:36.785192Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767653.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/465235/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-04T11:13:36.760696Z", "last_modified_time": "2026-03-20T01:13:56.724133Z", "date_published": null, "start_time": "2026-04-09T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Featuring #1 Elvis Tribute-Artist Dwight Icenhower, plus special guests.", "sv": "Featuring #1 Elvis Tribute-Artist Dwight Icenhower, plus special guests.", "en": "Featuring #1 Elvis Tribute-Artist Dwight Icenhower, plus special guests." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CB870DF0C96E6AEFB812AA31407EE4E7/The_Elvis_Concert_2026_USA_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/CB870DF0C96E6AEFB812AA31407EE4E7/The_Elvis_Concert_2026_USA_", "en": "http://www.savoyteatteri.fi/en/events/event/CB870DF0C96E6AEFB812AA31407EE4E7/The_Elvis_Concert_2026_USA_" }, "description": { "fi": "<p>Featuring #1 Elvis Tribute-Artist Dwight Icenhower, plus special guests.</p><p>Elviksen legenda elää tänä päivänä vahvemmin kuin koskaan. Uuden elokuvan ansiosta uudet sukupolvet löytävät hänen musiikkinsa. Kappaleet kuten ‘Suspicious Minds’, ‘If I Can Dream’ ja ‘Unchained Melody’ löytävät jälleen kaikupohjaa nuoremmasta yleisöstä. Tämä erikoisshow tekee kunniaa miehelle ja hänen musiikilleen. Kaikki hänen parhaat laulunsa ovat mukana, tunteella esitettynä ja huippubändin autenttisuudelle, jossa soittavat loistavat muusikot ympäri maailmaa.</p><p>Laulajana tässä erinomaisessa showssa on <b>Dwight Icenhower</b> (USA), joka on voittanut Maailman Parhaan Elvis Tribute Artistin palkinnon jo neljästi. Dwightin ääni on niin lähellä Elvistä, että se on hämännyt jopa asiantuntijoita. Viimeisessä showssaan täällä Dwight lauloi Unchained Melodyn säestäen itseään pianolla aivan kuten Elviskin teki 1977. Se oli poikkeuksellinen hetki, hänen äänensä kuulosti aivan Elvikseltä ja onnistui toistamaan hienovaraisimmatkin vivahteet. Jos suljit silmäsi, tuntui aivan kuin Elvis olisi ollut huoneessa. Monet sanoivat jälkikäteen, että se antoi heille kylmiä väreitä ja joillekin jopa kyyneleitä. Se oli hieno hetki. Tästä on luvassa yksi noista erittäin hienoista illoista, jota voimme lämpimästi suositella ei vain Elvis-faneille, mutta kenelle tahansa, joka arvostaa hyvää musiikkia. Kuninkaan musiikki on ajatonta ja tämä show ei ainoastaan sisällä hänen hittinsä, mutta myös joitain gospel-lauluja ja b-puolia: ‘Hound Dog’, ‘Devil In Disguise’, ‘Don’t Be Cruel’, ‘How Great Thou Art’… ja paljon muita.</p><p>Suosittelemme lämpimästi!</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>Featuring #1 Elvis Tribute-Artist Dwight Icenhower, plus special guests.</p><p>Elvis legend lever i dag starkare än någonsin. Tack vare den nya filmen hittar yngre generationer hans musik. Låtar som Suspicious Minds, If I Can Dream och Unchained Melody hittar åter klangbotten hos den yngre publiken. Denna specialshow är en hyllning till en man och hans musik. Alla de bästa låtarna är med, framförs med känsla och det autentiska uttrycket av det fantastiska bandet, som består av extraordinära musiker från hela världen.</p><p>Sångaren i denna utmärkta show är Dwight Icenhower (USA), som vunnit priset Världens Bästa Elvis Tribute Artist redan fyra gånger. Dwights röst är så nära Elvis att han förbluffat till och med experter. På sin senaste show här ackompanjerade Dwight sig själv på pianot till låten Unchained Melody, precis som Elvis gjorde 1977. Detta var ett exceptionellt ögonblick, han lät precis som Elvis och lyckades imitera även de mest finstämda nyanserna. När man blundade kändes det som om Elvis var i rummet. Många sade i efterhand att de fått kalla kårar, till och med tårar i ögonen. Det var en fin stund. Nu får vi se fram emot en av de verkligen fina kvällarna som vi kan varmt rekommendera, inte bara för Elvisfans, utan för alla som uppskattar god musik. Kungens musik är tidlös och under denna show framförs inte bara hans hitlåtar utan även vissa gospelsåtar och b-sidor: Hound Dog, Devil In Disguise, Don’t Be Cruel, How Great Thou Art… och många fler.</p><p>Vi rekommenderar varmt!</p><p>Längd ca 2h 15 min, med paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>Featuring #1 Elvis Tribute-Artist Dwight Icenhower, plus special guests.</p><p>The legend of Elvis lives on stronger than ever. Thanks to the new film, new generations are now discovering his music. Young audiences are once again responding to songs like Suspicious Minds, If I Can Dream and Unchained Melody. This special show honours the man and his music. All of his best songs are included and performed with emotion and the authenticity of a first-rate band brimming with amazing musicians from around the world.</p><p>The vocalist for the stupendous show is Dwight Icenhower (USA), who has been honoured as the best Elvis Tribute Artist four times. Dwight’s voice is so close Elvis’ that it has even fooled experts. In his last show in Finland, Dwight sang Unchained Melody accompanying himself with a piano, just as Elvis did in 1977. It was an extraordinary moment: he sounded exactly like Elvis and was able to replicate even the most minor nuances. If you closed your eyes, it was as if Elvis was in the room. Many said afterwards that they got goosebumps and had tears in their eyes. It was an experience to remember. The new concert is sure to be an equally incredible show that we can warmly recommend not only to Elvis fans but everyone who appreciates good music. The King’s music is timeless, and alongside his hits, the show also features some gospel songs and B-sides: Hound Dog, Devil In Disguise, Don’t Be Cruel, How Great Thou Art and many more.</p><p>This concert is highly recommended!</p><p>Duration approx. 2,5 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>" }, "name": { "fi": "The Elvis Concert 2026 (USA) – Loppuunmyyty! / Sold out!", "sv": "The Elvis Concert 2026 (USA) – Slutsåld!", "en": "The Elvis Concert 2026 (USA) – Sold out!" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Deelen Consultancies", "sv": "Deelen Consultancies", "en": "Deelen Consultancies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65848/?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": [], "info_url": null, "description": null, "price": 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." }, "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_" }, "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>" }, "name": { "fi": "Yleisön suosikit: 100 litraa sahtia", "sv": "Publikfavorit: 100 litraa sahtia (12)", "en": "Audience favourites: 100 Liters of Gold (12)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67706/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67971", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/niillas-holmberg-pauli-lyytinen-naarattu-laulu-vuotalo-21104709/", "sv": "https://www.lippu.fi/event/niillas-holmberg-pauli-lyytinen-naarattu-laulu-vuotalo-21104709/", "en": "https://www.lippu.fi/event/niillas-holmberg-pauli-lyytinen-naarattu-laulu-vuotalo-21104709/" }, "description": null, "price": { "fi": "15€", "sv": "15€", "en": "15€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494466, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-13T12:13:46.971111Z", "last_modified_time": "2026-01-13T12:13:46.971127Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780467.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494466/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-13T12:13:46.875548Z", "last_modified_time": "2026-03-20T01:13:55.956976Z", "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": "Niillas Holmbergin ja Pauli Lyytisen yhteinen ääni kertoo kuulijoille maisemista, joissa rantojen vesiraja nousee ja laskee.", "sv": "Niillas Holmbergs och Pauli Lyytinens gemensamma röst berättar om landskap där vattenlinjen stiger och sjunker.", "en": "The combined sound of Niillas Holmberg and Pauli Lyytinen tells listeners about landscapes where the waterline rises and falls." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4A6EF332BD4BD6F45949B49C2564F10D/Niillas_Holmberg_Pauli_Lyytinen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/4A6EF332BD4BD6F45949B49C2564F10D/Niillas_Holmberg_Pauli_Lyytinen", "en": "http://www.vuotalo.fi/en/events/event/4A6EF332BD4BD6F45949B49C2564F10D/Niillas_Holmberg_Pauli_Lyytinen" }, "description": { "fi": "<p>Niillas Holmbergin ja Pauli Lyytisen yhteinen ääni kertoo kuulijoille maisemista, joissa rantojen vesiraja nousee ja laskee.</p><p>Saamelainen runoilija ja muusikko Niillas Holmberg sekä Emma-palkittu saksofonisti ja säveltäjä Pauli Lyytinen julkaisivat odotetun ensimmäisen yhteislevynsä Naarattu laulu syksyllä 2025.</p><p>Valaan laulu, jumalten vaate!<br>Missä me olemme, kun runojoikaaja ja saksofonisti naaraavat myyttistä laulua kuivalle maalle, minkä veden äärellä? Maailma, jonka Niillas Holmberg ja Pauli Lyytinen runon, joiun, saksofonin, perkussioiden ja eloelektroniikan avulla nostattavat, rakentuu vuosisatojen, unen ja valveen yhtäaikaiseen läsnäoloon.</p><p>Entä jos varttuu Järvellä? <br>Niille vesille ei valaan laulu ei nouse.<br>Duon musiikillinen maailma perustuu kanavointiin, improvisointiin ja väkevään toistensa kuunteluun. Heidän taiteensa ei ole Naarattu laulu -niminen tuote; se on verbi. Taide ei ole saalis vaan akti, kun yhteistyössä punotulla verkolla naarataan jotain ikiaikaista usvaisesta vedestä.</p><p>Holmbergin ja Lyytisen välinen yhteistyö alkoi vuonna 2021 ja duo on sittemmin esiintynyt lukuisissa taide-, kirjallisuus- ja musiikkitapahtumissa Suomessa, Saksassa, Italiassa ja Norjassa. Yhteistyö on saanut kypsyä ja kehittyä live-esiintymisten myötä. <br>Holmbergin runous on ollut alusta asti yksi projektin peruselementeistä. Gummerus julkaisi Holmbergin uuden runokokoelman Naarattu lokakuussa 2025.</p><p>Kesto: 2 t sis. väliajan</p><p>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa.</p><p>Sali avautuu klo 17.30.</p>", "sv": "<p>Niillas Holmbergs och Pauli Lyytinens gemensamma röst berättar om landskap där vattenlinjen stiger och sjunker.</p><p>Den samiska poeten och musikern Niillas Holmberg och den Emma-belönade saxofonisten och tonsättaren Pauli Lyytinen gav ut sitt efterlängtade första gemensamma album Naarattu laulu hösten 2025.</p><p>Var är vi när poesijojkaren och saxofonisten draggar en mytisk sång upp på torra land, som är vid vatten? Den värld som Niillas Holmberg och Pauli Lyytinen väcker till liv genom poesi, jojk, saxofon, slagverk och live-elektronik bygger på den samtidiga närvaron av århundraden, sömn och vakenhet.</p><p>Duons musikaliska värld bygger på kanalisering, improvisation och intensivt lyssnande på varandra. Deras konst är inte en produkt som heter Naarattu laulu; den är ett verb. Konsten är inte ett byte utan en akt, när man med ett nät som flätats tillsammans draggar något evigt ur det grumliga vattnet.</p><p>Holmbergs och Lyytinens samarbete började 2021 och duon har sedan dess framträtt vid många konst-, litteratur- och musikevenemang i Finland, Tyskland, Italien och Norge. Samarbetet har mognat och utvecklats genom liveframträdanden.</p><p>Holmbergs poesi har varit en av grundpelarna i projektet ända från början. Gummerus gav ut Holmbergs nya diktsamling Naarattu i oktober 2025.</p><p>Längd: 2 h inklusive paus</p>", "en": "<p>The combined sound of Niillas Holmberg and Pauli Lyytinen tells listeners about landscapes where the waterline rises and falls.</p><p>Sámi poet and musician Niillas Holmberg and Emma Award-winning saxophonist and composer Pauli Lyytinen released their highly anticipated first collaborative album, Naarattu laulu, in autumn 2025.</p><p>Where are we when the poetry yoiker and the saxophonist are dragging a mythical song onto dry land, at what water? The world that Niillas Holmberg and Pauli Lyytinen bring to life through poetry, yoik, saxophone, percussion and live electronics is built on the simultaneous presence of centuries, sleep and wakefulness.</p><p>The duo’s musical world is based on channelling, improvisation and intensely listening to each other. Their art is not a product entitled Naarattu laulu; it is a verb. Art is not a catch, but an act, when a collaboratively woven net is used to drag up something ancient from the cloudy waters.</p><p>The collaboration between Holmberg and Lyytinen began in 2021, and the duo have since performed at numerous art, literature and music events in Finland, Germany, Italy and Norway. This collaboration has matured and developed through live performances.</p><p>Holmberg’s poetry has been one of the basic elements of the project from the beginning. Gummerus published Holmberg’s new collection of poems, Naarattu, in October 2025.</p><p>Duration: 2 h, incl. intermission</p>" }, "name": { "fi": "Niillas Holmberg & Pauli Lyytinen – Klubi-ilta", "sv": "Niillas Holmberg & Pauli Lyytinen", "en": "Niillas Holmberg & Pauli Lyytinen" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67971/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67998", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494586, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T10:13:46.113533Z", "last_modified_time": "2026-01-21T10:13:46.113550Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783891.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494586/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-21T10:13:45.984304Z", "last_modified_time": "2026-03-20T01:13:55.851503Z", "date_published": null, "start_time": "2026-04-09T14: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": "Yksin vai yhdessä – Ensam eller tillsammans on tanssitaiteilija Katriina Kantolan ja viulisti Teija Kivisen monitaiteellinen teos. Teoksessa yhdistyvät nykytanssi, tanssi-improvisaatio, aikamme viulumusiikki, vanha viulumusiikki sekä suomenruotsalainen runous." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5C12BA801FF5BEB0180CDF17835BB752/Yksin_vai_yhdessa_Ensam_eller_tillsammans", "sv": "http://www.vuotalo.fi/sv/evenemang/event/5C12BA801FF5BEB0180CDF17835BB752/Yksin_vai_yhdessa_Ensam_eller_tillsammans", "en": "http://www.vuotalo.fi/en/events/event/5C12BA801FF5BEB0180CDF17835BB752/Yksin_vai_yhdessa_Ensam_eller_tillsammans" }, "description": { "fi": "<p>Yksin vai yhdessä – Ensam eller tillsammans on tanssitaiteilija Katriina Kantolan ja viulisti Teija Kivisen monitaiteellinen teos. Teoksessa yhdistyvät nykytanssi, tanssi-improvisaatio, aikamme viulumusiikki, vanha viulumusiikki sekä suomenruotsalainen runous.</p><p>Teos Yksin vai yhdessä – Ensam eller tillsammans kertoo yksinäisyydestä murtautumista kohti vuorovaikutusta ja yhteentuloa muiden kanssa. Se herättelee pohtimaan, millaista on olla yksin ja eristyksissä muista. Teos pohtii myös voiko tuntea olevansa yhteydessä muihin, vaikka olisi fyysisesti etäällä muista. Se kannustaa kurottamaan kohti toisia ihmisiä itseensä käpertymisen sijaan.</p><p>Teoksessa kuullaan muun muassa säveltäjä Maija Hynnisen sävellys Island sooloviululle. Hynninen sävelsi teoksen koronasulun aikaan Pariisissa vuonna 2021 ja hän kuvailee teostaan seuraavasti: ”Viulu liikkuu erilaisten tekstuurien ja sävyjen läpi, maalaten niiden avulla lempeää kuvaa yksinäisyydestä”.</p><p>Teos on ymmärrettävä kaikille, kielitaustaan katsomatta.</p><p>Konsepti: tanssitaiteilija Katriina Kantola ja viulisti Teija Kivinen<br>Koreografia: Katriina Kantola<br>Esiintyjät: Katriina Kantola ja Teija Kivinen<br>Esityksen musiikki: Maija Hynninen: Island. Johan Helmich Roman: Fuma (BeRi 347)<br>Esityksen runot: Edith Södergran <br>Kesto: 20 minuuttia</p><p>Vapaa pääsy</p>" }, "name": { "fi": "Yksin vai yhdessä – Ensam eller tillsammans", "sv": "Yksin vai yhdessä – Ensam eller tillsammans", "en": "Yksin vai yhdessä – Ensam eller tillsammans" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67998/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68116", "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/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494886, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-17T11:13:26.646722Z", "last_modified_time": "2026-02-17T11:13:26.646742Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785625.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494886/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-17T11:13:26.558991Z", "last_modified_time": "2026-03-20T01:13:55.754795Z", "date_published": null, "start_time": "2026-04-09", "end_time": "2026-05-23", "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": "Mainiot materiaalit -näyttely kannustaa lapsia ja nuoria luovaan kokeiluun käyttämällä luonnon antimia ja kotitalouksien kierrätysastioiden aarteita." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E3345ADCCD2151B4671CF8557AED936A/Mainiot_materiaalit", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E3345ADCCD2151B4671CF8557AED936A/Mainiot_materiaalit", "en": "http://www.vuotalo.fi/en/events/event/E3345ADCCD2151B4671CF8557AED936A/Mainiot_materiaalit" }, "description": { "fi": "<p>Mainiot materiaalit -näyttely kannustaa lapsia ja nuoria luovaan kokeiluun käyttämällä luonnon antimia ja kotitalouksien kierrätysastioiden aarteita.</p><p>Näyttely pohjautuu Aalto-yliopiston Bioinnovaatiokeskuksen julkaisemaan Mainiot materiaalit -kirjaan. Kirja yhdistää kemian, materiaalitieteen, taiteen ja muotoilun käytännönläheisiin resepteihin, jotka vapauttavat luovuuden kotona ja koulussa – ilman, että ympäristö kärsii.</p><p>Kirjassa on 17 ohjetta, joiden avulla voi valmistaa luonnosta kerätyistä, kierrätetyistä ja biohajoavista raaka-aineista kiinnostavia materiaaleja.</p><p>Näyttelytalon biopohjaisista materiaaleista valmistetut huonekalut, asukkaat ja muut yksityiskohdat ovat Espoon ja Forssan kuvataidekoululaisten sekä Forssan yhteislyseon opiskelijoiden tekemiä.</p>" }, "name": { "fi": "Mainiot materiaalit – Näyttelytalo Vuotalon aulassa", "sv": "Mainiot materiaalit – Näyttelytalo Vuotalon aulassa", "en": "Mainiot materiaalit – Näyttelytalo Vuotalon aulassa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68116/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67478", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4044935", "sv": "https://www.lippu.fi/eventseries/name-4044935", "en": "https://www.lippu.fi/eventseries/name-4044935" }, "description": null, "price": { "fi": "19,80€/24,80€", "sv": "19,80€/24,80€", "en": "19,80€/24,80€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494099, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-05T09:12:53.509739Z", "last_modified_time": "2025-12-05T09:12:53.509756Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781454.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-05T09:12:53.371858Z", "last_modified_time": "2026-03-20T01:13:55.462119Z", "date_published": null, "start_time": "2026-04-08T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa kokemaan Blues Bizarren levyjulkkarikeikka Malmitalolla – varaudu outoon mutta voimaannuttavaan kokemukseen!", "sv": "Välkommen att uppleva Blues Bizarrs skivsläpp i Malms kulturhus – förbered dig på en märklig men kraftgivande upplevelse!", "en": "Welcome to Blues Bizarre's album release gig at Cultural Centre Malmitalo – prepare for a strange yet empowering experience!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9F681D6CCD3E589A8578F8306E537ECC/Blues_Bizarre", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9F681D6CCD3E589A8578F8306E537ECC/Blues_Bizarre", "en": "http://www.malmitalo.fi/en/events/event/9F681D6CCD3E589A8578F8306E537ECC/Blues_Bizarre" }, "description": { "fi": "<p>Tervetuloa kokemaan Blues Bizarren levyjulkkarikeikka Malmitalolla – varaudu outoon mutta voimaannuttavaan kokemukseen!</p><p>Blues Bizarren toinen levy räjäyttää pankin vielä kovempaa kuin edellinen. Levyä saa vuoroin kuunnella suu auki sen nerokkuutta ja taidokkuutta ihaillen ja vuoroin nauraen ja ihmetellen sen tarjoamia hulluja ideoita. Toisella levyllään yhtye jatkaa omaa rajoja rikkovaa tyyliään sekoittaen perinteisen juurevan bluesin kanssa vaikutteita aina itämaisista sävyistä psykedeeliseen bluesiin.</p><p>Blues Bizarrea voidaan pitää suomalaisen modernin bluesin lipunkantajana. Nuoren sukupolven uraa uurtavista muusikoista koostuva yhtye on kiinnittänyt puolelleen huomiota bluespiireissä sen perustusvuodesta 2021 asti, ja Blues Bizarre nähtiinkin muun muassa Puistobluesin pääkonsertissa kesällä 2025. Yhtyeen keulan muodostavat karismaattinen laulaja-kitaristi Sylvi Saarekas ja slidekitaran mestarina tunnettu Marko Karppi. Tiiviisti toimivasta komppiryhmästä löytyvät rumpali Leevi Heikkilä ja basisti Nikolas Rissanen.</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>", "sv": "<p>Välkommen att uppleva Blues Bizarrs skivsläpp i Malms kulturhus – förbered dig på en märklig men kraftgivande upplevelse!</p><p>Blues Bizarres andra album överraskar ännu hårdare än det föregående. Man får turvis lyssna på albumet med gapande mun i beundran över dess genialitet och skicklighet samt turvis skrattande och förundrande över de galna idéer som det bjuder på. På sitt andra album fortsätter bandet sin gränsöverskridande stil och blandar traditionell rootsig blues med intryck som sträcker sig från orientaliska toner till psykedelisk blues.</p><p>Blues Bizarre kan betraktas som banbrytare för den finska moderna bluesmusiken. Bandet består av banbrytande unga musiker och det har väckt uppmärksamhet i blueskretsarna sedan 2021 då bandet grundades, och Blues Bizarre sågs på huvudkonserten i Puistoblues sommaren 2025. Bandet leds av den karismatiska sångaren och gitarristen Sylvi Saarekas och Marko Karppi, känd som mästare på slidegitarr. Det sammansvetsade bandet omfattar också trummisen Leevi Heikkilä och basisten Nikolas Rissanen.</p><p>Längd: 1 h 45 min., inklusive en paus på 20 min.</p>", "en": "<p>Welcome to Blues Bizarre's album release gig at Cultural Centre Malmitalo – prepare for a strange yet empowering experience!</p><p>The second album by Blues Bizarre blows off the roof even harder than their previous one. At times, you will listen to this album with your mouth agape in admiration of its ingenuity and skill, and at times you will laugh and marvel at its range of crazy ideas. On their second album, the band stays true to their boundary-breaking style, mixing traditional deep-rooted blues with influences ranging from oriental tones to psychedelic blues.</p><p>Blues Bizarre could be said to be the flagship of Finnish modern blues. The band, made up of trailblazing musicians of the younger generation, has been attracting attention in the blues circles since its founding in 2021, and it was one of the performers of the main concert of Puistoblues in summer 2025. The band is fronted by the charismatic singer-guitarist Sylvi Saarekas and Marko Karppi, known as a master of slide guitar. The tight-knit band also includes drummer Leevi Heikkilä and bassist Nikolas Rissanen.</p><p>Duration: 1 hour 45 min, incl. a 20-min intermission</p>" }, "name": { "fi": "Blues Bizarre – Roots-musiikin evoluutio", "sv": "Blues Bizarre – Roots-musikens evolution", "en": "Blues Bizarre – The evolution of roots music" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67478/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67394", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468709/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468709/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468709/" }, "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1672534, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T11:14:32.236408Z", "last_modified_time": "2026-03-19T11:14:32.236424Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781083.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672534/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T11:14:32.133821Z", "last_modified_time": "2026-03-20T01:13:55.345656Z", "date_published": null, "start_time": "2026-04-08T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/381C11B17BF318BC73C3DC31ABEDAAE6/_Orava_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/381C11B17BF318BC73C3DC31ABEDAAE6/_Orava_12_", "en": "http://www.malmitalo.fi/en/events/event/381C11B17BF318BC73C3DC31ABEDAAE6/_Orava_12_" }, "description": { "fi": "<p>Orava on absurdi tarina Pasista, yksinäisestä mutta hyväsydämisestä keinotekoisten eläinten suunnittelijasta, joka elää maailmassa, missä luonto on vain muisto ja ihmisen hyvinvointi on järjestetty jopa liiankin huolellisesti.</p><p>Eräänä päivänä Pasi (Miro Lopperi) löytää sattumalta maailman viimeisen elävän oravan, ja kohtaa samalla Emilian (Mimosa Willamo), hyvinvoinnin sääntökirjaa valvovan viranomaisen. Pasi päättää uhmata yhteiskunnan sääntöjä ja auttaa oravaa, mutta tapahtuu jotain odottamatonta – orava masentuu ja Pasi rakastuu.</p><p>7.5. klo 13 HopeaCine-näytöksessä mukana tekijävieras.</p><p>Ikäraja: 12<br>Kesto: 93 min<br>Ensi-ilta: 02.04.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Orava (12) – Kino Helios", "sv": "Orava (12) – Kino Helios", "en": "Orava (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67394/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67737", "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: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:668/?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:p1377/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494500, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-15T13:13:49.469269Z", "last_modified_time": "2026-01-15T13:13:49.469285Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782668.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494500/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-15T13:13:49.356370Z", "last_modified_time": "2026-03-20T01:13:55.222051Z", "date_published": null, "start_time": "2026-04-08T14:00:00Z", "end_time": "2026-04-08T16: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": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan ravintolaan!", "sv": "Ta en kreativ paus i vardagen och sätt dig ner en stund i Stoas restaurang för lite kvällste!", "en": "Take a creative break from everyday life and sit down in Stoa’s restaurant for some evening tea!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/420EF29D63AFF289FCFCB8DD006D6BB6/Ekologinen_evaspakkaus_Mehilaisvahakaare", "sv": "http://www.stoa.fi/sv/evenemang/event/420EF29D63AFF289FCFCB8DD006D6BB6/Ekologisk_matsack_Bivaxduk", "en": "http://www.stoa.fi/en/events/event/420EF29D63AFF289FCFCB8DD006D6BB6/Eco-friendly_food_wrap_Beeswax_wrap" }, "description": { "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan ravintolaan!</p><p>Nyt valmistaudutaan piknik-kauteen! Muovikelmua ekologisempi vaihtoehto on olemassa: mehiläisvahakääre.</p><p>Se kestää useita käyttöjä, on helposti puhdistettava ja sopii ruoan pakkaamiseen. Pajan aikana jokainen saa luoda yhden mehiläisvahakääreen.</p><p>Alle 10-vuotiaat työskentelevät yhdessä aikuisen kanssa. Huom! Mukaan mahtuu max. 40 osallistujaa, kerrallaan noin 20 henkilöä.</p><p>Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Stoan ravintolassa on osallistujille tarjolla iltateetä tai mehua.</p><p>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Stoan Ravintola<br>Kesto: 120 min per kerta<br>Pajojen ohjauskieli: suomi, ranska ja englanti <br>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p>", "sv": "<p>Ta en kreativ paus i vardagen och sätt dig ner en stund i Stoas restaurang för lite kvällste!</p><p>I Konstpaus-verkstäderna berikas din vardag med stressfria hantverkstekniker som är lätta att lära sig. Kvällste och saft serveras för deltagarna i Stoas restaurang.</p><p>ons 8.4 Ekologisk matsäck: Bivaxduk<br>Vi förbereder oss för picknicksäsongen! Det finns ett mera ekologiskt alternativ än plastfolie, nämligen en bivaxduk. Den kan användas flera gånger, är lätt att rengöra och passar för att förpacka mat. I verkstaden får alla göra en egen bivaxduk.</p><p>Barn under 10 år arbetar tillsammans med en vuxen. Obs! Högst 40 deltagare, ca 20 i taget, får plats.</p><p>Handledare: Chloé Mahy-Hulkko <br>Plats: Stoas restaurang<br>Längd: 120 min. per session<br>Verkstäderna leds på finska, franska och engelska <br>Fritt inträde. Ingen förhandsanmälan krävs. Stoa bjuder deltagarna på kvällste.</p>", "en": "<p>Take a creative break from everyday life and sit down in Stoa’s restaurant for some evening tea!</p><p>Taidetauko workshops enrich your everyday life with easy-to-learn, unhurried crafts. Participants will be served evening tea or juice at Stoa’s restaurant.</p><p>Wed 8 April Eco-friendly food wrap: Beeswax wrap<br>Let's get ready for picnic season! There is a more ecological alternative to plastic wrap: beeswax wrap. It can be used several times and it is easy to clean and suitable for food packaging. During the workshop, everyone will get to create one beeswax wrapper.</p><p>Children under the age of 10 must work together with an adult. Please note! There is room for around 40 participants, 20 participants at a time.</p><p>Instructor: Chloé Mahy-Hulkko <br>Location: Stoa restaurant<br>Duration: 120 min per session<br>Instructions in Finnish, French and English <br>Free entry. No advance registration required. Stoa will provide evening tea for participants.</p>" }, "name": { "fi": "Ekologinen eväspakkaus: Mehiläisvahakääre – Taidetauko-työpajat", "sv": "Ekologisk matsäck: Bivaxduk – Konstpaus-verkstäder", "en": "Eco-friendly food wrap: Beeswax wrap – Taidetauko art workshops" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67737/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67299", "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: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494781, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-06T09:13:13.621620Z", "last_modified_time": "2026-02-06T09:13:13.621633Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780861.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494781/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-06T09:13:13.510786Z", "last_modified_time": "2026-03-20T01:13:55.096100Z", "date_published": null, "start_time": "2026-04-08T14:00:00Z", "end_time": "2026-04-08T16: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": "Kantsun kahvit on avoin kohtaamispaikka, johon järjestetään yhdessä vaihtuvaa ohjelmaa." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3051D3ED0CB20A11937C7639EAAD84EF/Kantsun_kahvit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3051D3ED0CB20A11937C7639EAAD84EF/Kantsun_kahvit", "en": "http://www.kanneltalo.fi/en/events/event/3051D3ED0CB20A11937C7639EAAD84EF/Kantsun_kahvit" }, "description": { "fi": "<p>Kantsun kahvit on avoin kohtaamispaikka, johon järjestetään yhdessä vaihtuvaa ohjelmaa.</p><p>Tule tapaamaan ihmisiä ja keskustelemaan ajankohtaisista asioista kahvittelun lomassa. Tarjoamme kahvia, teetä ja pientä syötävää.</p><p>Lapset ovat tervetulleita vanhempiensa kanssa.</p><p>Kantsun kahvien sisällöt suunnitellaan yhdessä asukasaktiivien kanssa. Osallistu keskusteluun Kantsun kahvit -Facebook-ryhmässä: https://www.facebook.com/groups/875036451503848</p><p>Kantsun kahvit järjestää yhteistyössä alueen asukkaat, Kannelmäen D-asema ja Helsingin kaupunki</p><p>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton.</p><p>Paikka: Kanneltalon kahvilan stage</p>" }, "name": { "fi": "Kantsun kahvit", "sv": "Kantsun kahvit", "en": "Kantsun kahvit" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67299/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67393", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468696/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468696/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468696/" }, "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1672530, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T11:14:16.783765Z", "last_modified_time": "2026-03-19T11:14:16.783781Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781082.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672530/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T11:14:16.626799Z", "last_modified_time": "2026-03-20T01:13:54.960955Z", "date_published": null, "start_time": "2026-04-08T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/40E7DFEDD706530E2D3485FDC0CD4329/The_Wizard_of_The_Kremlin_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/40E7DFEDD706530E2D3485FDC0CD4329/The_Wizard_of_The_Kremlin_12_", "en": "http://www.malmitalo.fi/en/events/event/40E7DFEDD706530E2D3485FDC0CD4329/The_Wizard_of_The_Kremlin_12_" }, "description": { "fi": "<p>Venäjä 1990-luvun alussa. Neuvostoliitto on romahtanut. Keskellä kaaosta ja itseään uudelleen rakentavaa maata kulkee määrätietoisesti omaa polkuaan poikkeuksellisen älykäs nuori mies, Vadim Baranov (Paul Dano). Ensin avantgardetaiteilija, sitten tosi-tv-ohjelmien tuottaja, hänestä tulee epävirallinen neuvonantaja entiselle KGB-agentille, joka on matkalla kohti ehdotonta valtaa – miehelle, joka tullaan pian tuntemaan nimellä ”tsaari”, Vladimir Putin (Jude Law).</p><p>Järjestelmän ytimeen päätynyt Baranov nousee uuden Venäjän spin doctoriksi, muovaamaan puheita, mielikuvia ja todellisuudentajua. Yksi ihminen jää kuitenkin hänen vaikutusvaltansa ulkopuolelle: Ksenia (Alicia Vikander), vapaa ja tavoittamaton nainen, joka edustaa mahdollisuutta paeta – kauas poliittisesta vaikutuksesta ja vallankäytöstä.</p><p>Viisitoista vuotta myöhemmin, vetäydyttyään hiljaisuuteen, Baranov suostuu puhumaan. Se, mitä hän paljastaa, hämärtää rajat totuuden ja fiktion, uskomuksen ja strategian välillä. The Wizard of the Kremlin on laskeutuminen vallan pimeisiin käytäviin – elokuva, jossa jokainen sana on osa juonta.</p><p>Elokuva perustuu Giuliano da Empolin romaaniin Kremlin velho.</p><p>Ikäraja: 12<br>Kesto: 146 min<br>Ensi-ilta: 13.03.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "The Wizard of The Kremlin (12) – Kino Helios", "sv": "The Wizard of The Kremlin (12) – Kino Helios", "en": "The Wizard of The Kremlin (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67393/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68249", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1643631, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T14:14:01.576540Z", "last_modified_time": "2026-03-16T14:14:01.576555Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786461.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1643631/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T14:14:01.482548Z", "last_modified_time": "2026-03-20T01:13:54.860375Z", "date_published": null, "start_time": "2026-04-08T08:00:00Z", "end_time": "2026-04-08T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta ja sen alkuperästä." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7D36F842AD3635E00D11D733FB497349/Made_in_Vuosaari_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/7D36F842AD3635E00D11D733FB497349/Made_in_Vuosaari_", "en": "http://www.vuotalo.fi/en/events/event/7D36F842AD3635E00D11D733FB497349/Made_in_Vuosaari_" }, "description": { "fi": "<p>Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta ja sen alkuperästä.</p><p>Projektin tarkoitus on kurottaa kohti alueen asukkaita ja saada tutkimaan omia kodin tavaroita. Mistä ne ovat lähtöisin? Onko niillä käyttöä? Minne ne tulevat päätymään, kun niitä ei enää tarvita? <br>Työpajat on suunnattu 3–6-luokkalaisille.</p><p>Koululaisia pyydetään tuomaan työpajaan kotoa tarpeettomia tavaroita. Tavara voi olla mikä tahansa pienehkö esine, esimerkiksi virheostos, lelu tai astia. Tavaroista rakennetaan veistoksia.</p><p>Anne Roininen on kuvanveistäjä, joka työskentelee usein paikkasidonnaisesti ja prosessipohjaisesti. Kohtaamiset ihmisten kanssa ovat tärkeä osa Roinisen työskentelyä, ja teosten taustalla on usein poliittinenkin lataus.</p><p>Lue lisää: https://anneroininen.com/</p><p>Ilmoita luokkasi työpajaan osoitteessa kultus.hel.fi!</p>" }, "name": { "fi": "Made in Vuosaari – Työpajat koululaisille", "sv": "Made in Vuosaari – Työpajat koululaisille", "en": "Made in Vuosaari – Työpajat koululaisille" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68249/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67891", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494305, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:55.348092Z", "last_modified_time": "2025-12-23T09:13:55.348108Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781416.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494305/?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-23T09:13:55.246920Z", "last_modified_time": "2026-03-20T01:13:54.758157Z", "date_published": null, "start_time": "2026-04-08T07: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": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.", "sv": "Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.", "en": "Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EFC36E08E23D892094BE8CCC5A55D80B/Ko-kollektiivi_Tanssikorttipakka", "sv": "http://www.annantalo.fi/sv/evenemang/event/EFC36E08E23D892094BE8CCC5A55D80B/Ko-kollektiivi_Tanssikorttipakka_Danskortlek", "en": "http://www.annantalo.fi/en/events/event/EFC36E08E23D892094BE8CCC5A55D80B/Ko-kollektiivi_Tanssikorttipakka" }, "description": { "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen. Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen. Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p>Mukana: <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen kultus.hel.fi</p>", "sv": "<p>Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.</p><p>Korten innehåller praktiska dansövningar som uppmuntrar barn till dans, konstnärligt uttryck och kroppslighet. Föreställningarna bygger på improvisation, frigörande av fantasin och stark interaktion. I föreställningarna deltar barnen tillsammans med en professionell dansare och en musiker samt får vara med och påverka föreställningens gång.</p><p>Medverkar:</p><p>Amandine Doat: dans<br>Riku Kantola: musik</p><p>Föreställningarna Tanssikorttipakka är avsedda för dagisgrupper (4+), högst 20 barn och deras lärare.</p><p>Anmälan: kultus.hel.fi</p>", "en": "<p>Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children.</p><p>The cards contain practical dance exercises that encourage children to engage in dance, artistic expression and bodiliness. The Tanssikorttipakka performances are based on improvisation, letting imagination run wild and strong interaction. In the performances, children can participate with a professional dancer and a musician and have a say in the course of the performance.</p><p>Team:</p><p>Amandine Doat: dance<br>Riku Kantola: music</p><p>Tanssikorttipakka is intended for daycare groups (age 4+) with max. 20 children and their instructor.</p><p>Registration: kultus.hel.fi</p>" }, "name": { "fi": "Ko-kollektiivi: Tanssikorttipakka", "sv": "Ko-kollektiivi: Tanssikorttipakka – Danskortlek", "en": "Ko-kollektiivi: Tanssikorttipakka" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67891/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67875", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494510, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T13:13:43.090068Z", "last_modified_time": "2026-01-16T13:13:43.090085Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780531.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494510/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-16T13:13:42.934000Z", "last_modified_time": "2026-03-20T01:13:54.572584Z", "date_published": null, "start_time": "2026-04-08T07:00:00Z", "end_time": "2026-04-08T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!", "sv": "I fantasifullt utformade lekmiljöer får leken fritt spelrum!", "en": "In these imaginatively modified play environments, play gets to run wild!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/84460F68B9C6061812325F93A9D5CA6B/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/84460F68B9C6061812325F93A9D5CA6B/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/84460F68B9C6061812325F93A9D5CA6B/Art_games_a_space_for_play" }, "description": { "fi": "<p>Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!</p><p>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Leikille luodaan sysäys joka voi jatkua missä tahansa. Eri aistit huomioivat kokonaisuudet, leikittelevät taiteella ja asettavat asioiden mittasuhteita uudelleen.</p><p>Tilat jakautuvat kahteen osaan. Pesässä rauhoitutaan ja laskeudutaan maadoittavaan tunnelmaan. Aktivoivissa leikeissä leikitään vaihtuvien teemojen maailmoissa.</p><p>Molemmat tilat tarjoavat mahdollisuuden tukea lapsen ja aikuisen vuorovaikutusta sekä tutustumista toisiin aikuisiin ja lapsiin. Aktiivisessa tilassa toimii lisäksi leikittäjä.</p><p>Taideleikit on suunnattu 0-3-vuotiaille lapsille sekä heidän omalle vanhemmalle tai aikuiselle.</p><p>Ohjaus: Noora Puranen <br>Aika: 10–12 (nonstop) <br>Ikäryhmä: 0-3v<br>Kieli: suomi <br>Maksuton</p><p>Taideleikit Annantalossa<br>4.2. klo 10–12<br>18.2. klo 10–12<br>4.3. klo 10–12<br>25.3. klo 10–12<br>8.4. klo 10–12<br>22.4. klo 10–12</p>", "sv": "<p>I fantasifullt utformade lekmiljöer får leken fritt spelrum!</p><p>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Leken får en skjuts framåt som kan fortsätta var som helst. Sinnena uppfattar helheter, leker med konsten och omdefinierar proportionerna för saker och ting.</p><p>Lokalerna är indelade i två delar. Boet är en plats där man kan lugna ner sig och komma till ro i en jordande atmosfär. I de aktiverande lekarna leker deltagarna i världar med olika teman. Båda utrymmena erbjuder möjligheter att stödja samspelet mellan barnet och den vuxna samt lära känna andra barn och vuxna. I det aktiva utrymmet finns det också en lekledare.</p><p>Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen. <br>Regi: Noora Puranen <br>Tid: kl. 10–12 (non-stop) <br>Åldersgrupp: 0–3 år<br>Språk: finska</p><p>Avgiftsfritt</p>", "en": "<p>In these imaginatively modified play environments, play gets to run wild!</p><p>These art games enrich play and provide play ideas to take home. Play will get boosted with a drive that can continue anywhere. The different senses will perceive wholes, play with art and redefine the proportions of things.</p><p>The facilities will be divided into two spaces: one will be a nest, a place for calming down and settling into a grounding atmosphere, the other will host activating games that involve playing in worlds with changing themes. Both spaces will provide an opportunity to support child-adult interaction and to meet other adults and children. The active space will also feature a play instructor.</p><p>The art games are aimed at children aged 0–3 and their own parent or adult.</p><p>Instruction: Noora Puranen <br>Time: 10.00–12.00 (non-stop) <br>Age group: 0–3<br>Language: Finnish <br>Free of charge</p>" }, "name": { "fi": "Taideleikit – leikin oma tila – 0–3-v lapset aikuisen kanssa", "sv": "Konstlekar – en egen plats för lek – Barn 0–3 år tillsammans med en vuxen", "en": "Art games – a space for play – Children aged 0–3 with an adult" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67875/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67983", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494522, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T14:13:36.340664Z", "last_modified_time": "2026-01-16T14:13:36.340693Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781415.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494522/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-16T14:13:36.249488Z", "last_modified_time": "2026-03-20T01:13:54.445149Z", "date_published": null, "start_time": "2026-04-08T06: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": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.", "sv": "Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.", "en": "Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0475A99ED8C7066395D7C866239921CA/Ko-kollektiivi_Tanssikorttipakka", "sv": "http://www.annantalo.fi/sv/evenemang/event/0475A99ED8C7066395D7C866239921CA/Ko-kollektiivi_Tanssikorttipakka_Danskortlek", "en": "http://www.annantalo.fi/en/events/event/0475A99ED8C7066395D7C866239921CA/Ko-kollektiivi_Tanssikorttipakka" }, "description": { "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen. Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen. Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p>Mukana: <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen kultus.hel.fi</p>", "sv": "<p>Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.</p><p>Korten innehåller praktiska dansövningar som uppmuntrar barn till dans, konstnärligt uttryck och kroppslighet. Föreställningarna bygger på improvisation, frigörande av fantasin och stark interaktion. I föreställningarna deltar barnen tillsammans med en professionell dansare och en musiker samt får vara med och påverka föreställningens gång.</p><p>Medverkar:</p><p>Amandine Doat: dans<br>Riku Kantola: musik</p><p>Föreställningarna Tanssikorttipakka är avsedda för dagisgrupper (4+), högst 20 barn och deras lärare.</p><p>Anmälan: kultus.hel.fi</p>", "en": "<p>Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children.</p><p>The cards contain practical dance exercises that encourage children to engage in dance, artistic expression and bodiliness. The Tanssikorttipakka performances are based on improvisation, letting imagination run wild and strong interaction. In the performances, children can participate with a professional dancer and a musician and have a say in the course of the performance.</p><p>Team:</p><p>Amandine Doat: dance<br>Riku Kantola: music</p><p>Tanssikorttipakka is intended for daycare groups (age 4+) with max. 20 children and their instructor.</p><p>Registration: kultus.hel.fi</p>" }, "name": { "fi": "Ko-kollektiivi: Tanssikorttipakka", "sv": "Ko-kollektiivi: Tanssikorttipakka – Danskortlek", "en": "Ko-kollektiivi: Tanssikorttipakka" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67983/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68248", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1643630, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T14:14:01.043801Z", "last_modified_time": "2026-03-16T14:14:01.043822Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786460.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1643630/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T14:14:00.907307Z", "last_modified_time": "2026-03-20T01:13:54.337740Z", "date_published": null, "start_time": "2026-04-08T06:00:00Z", "end_time": "2026-04-08T07:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta ja sen alkuperästä." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6830D1CE2C88B318BE2DD2D1DBFEBB24/Made_in_Vuosaari", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6830D1CE2C88B318BE2DD2D1DBFEBB24/Made_in_Vuosaari", "en": "http://www.vuotalo.fi/en/events/event/6830D1CE2C88B318BE2DD2D1DBFEBB24/Made_in_Vuosaari" }, "description": { "fi": "<p>Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta ja sen alkuperästä.</p><p>Projektin tarkoitus on kurottaa kohti alueen asukkaita ja saada tutkimaan omia kodin tavaroita. Mistä ne ovat lähtöisin? Onko niillä käyttöä? Minne ne tulevat päätymään, kun niitä ei enää tarvita?</p><p>Työpajat on suunnattu 3–6-luokkalaisille.</p><p>Koululaisia pyydetään tuomaan työpajaan kotoa tarpeettomia tavaroita. Tavara voi olla mikä tahansa pienehkö esine, esimerkiksi virheostos, lelu tai astia. Tavaroista rakennetaan veistoksia.</p><p>Anne Roininen on kuvanveistäjä, joka työskentelee usein paikkasidonnaisesti ja prosessipohjaisesti. Kohtaamiset ihmisten kanssa ovat tärkeä osa Roinisen työskentelyä, ja teosten taustalla on usein poliittinenkin lataus.</p><p>Lue lisää: https://anneroininen.com/</p><p>Ilmoita luokkasi työpajaan osoitteessa kultus.hel.fi!</p>" }, "name": { "fi": "Made in Vuosaari – Työpajat koululaisille", "sv": "Made in Vuosaari – Työpajat koululaisille", "en": "Made in Vuosaari – Työpajat koululaisille" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68248/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68174", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/veljekset-sydanmetsa-malmitalo-21404846/", "sv": "https://www.lippu.fi/event/veljekset-sydanmetsa-malmitalo-21404846/", "en": "https://www.lippu.fi/event/veljekset-sydanmetsa-malmitalo-21404846/" }, "description": null, "price": { "fi": "24,80 €", "sv": "24,80 €", "en": "24,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1543514, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-06T13:13:03.180648Z", "last_modified_time": "2026-03-06T13:13:03.180662Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785975.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1543514/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-06T13:13:03.053710Z", "last_modified_time": "2026-03-20T01:13:54.233450Z", "date_published": null, "start_time": "2026-04-07T16: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": "Veljekset Sydänmetsä feat. Parcus Majakkala & Friends nähdään Malmitalossa kahden setin erikoiskeikalla!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FF8005FDFE36F6D542DC4DF4CD511A18/Veljekset_Sydanmetsa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/FF8005FDFE36F6D542DC4DF4CD511A18/Veljekset_Sydanmetsa", "en": "http://www.malmitalo.fi/en/events/event/FF8005FDFE36F6D542DC4DF4CD511A18/Veljekset_Sydanmetsa" }, "description": { "fi": "<p>Veljekset Sydänmetsä feat. Parcus Majakkala & Friends nähdään Malmitalossa kahden setin erikoiskeikalla!</p><p>Akustiseenkin sävyyn taipuva Veljekset Sydänmetsä täyttää tänä vuonna vuosia, ja on aiheellista juhlistaa isoja rajapyykkejä monin eri tavoin. Yhtyeen kitaristi Keijo V Sydänmetsä kertoo illasta:</p><p>”Odotamme tätä Malmitalon erikoiskeikkaa kuin kuuta nousevaa sillä settilista tulee olemaan talvinen ja sydänmetsän sininen - täpötäynnä musiikkia. Paljon on pedattu myös Parcus Majakkalan tuohitorvien varaan.</p><p>Myös yllätysvierailijoita saattaa ilmestyä lavalle. Tervetuloa!”.</p><p>Veljekset Sydänmetsän musiikki on taidokasta ja kansainvälisesti tunnustettua.</p><p>Kesto: 2 t 30 min, sis 20 min väliajan</p>" }, "name": { "fi": "Veljekset Sydänmetsä", "sv": "Veljekset Sydänmetsä", "en": "Veljekset Sydänmetsä" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68174/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68189", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1585993, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-10T08:12:57.076294Z", "last_modified_time": "2026-03-10T08:12:57.076316Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782246.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1585993/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-10T08:12:56.878532Z", "last_modified_time": "2026-03-20T01:13:54.109397Z", "date_published": null, "start_time": "2026-04-07T12:00:00Z", "end_time": "2026-04-07T15: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A455DB910FD9E5B42E4DFE6854F54E05/Roskasta_kaunista_-tyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A455DB910FD9E5B42E4DFE6854F54E05/Roskasta_kaunista_-tyopajat", "en": "http://www.vuotalo.fi/en/events/event/A455DB910FD9E5B42E4DFE6854F54E05/Roskasta_kaunista_-tyopajat" }, "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>" }, "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" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68189/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }