Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=43®istration__remaining_waiting_list_capacity__isnull=true
{ "meta": { "count": 32750, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=44®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=42®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "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" }, { "id": "kulke:67890", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": 1494304, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:51.551249Z", "last_modified_time": "2025-12-23T09:13:51.551263Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781413.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494304/?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:51.458151Z", "last_modified_time": "2026-03-20T01:13:53.988999Z", "date_published": null, "start_time": "2026-04-07T07: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/7BB6EF5BB96A6FFF558817B403EE947F/Ko-kollektiivi_Tanssikorttipakka", "sv": "http://www.annantalo.fi/sv/evenemang/event/7BB6EF5BB96A6FFF558817B403EE947F/Ko-kollektiivi_Tanssikorttipakka_Danskortlek", "en": "http://www.annantalo.fi/en/events/event/7BB6EF5BB96A6FFF558817B403EE947F/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.</p><p>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:67890/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67889", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": 1494303, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:51.205118Z", "last_modified_time": "2025-12-23T09:13:51.205133Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781412.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494303/?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:51.089331Z", "last_modified_time": "2026-03-20T01:13:53.880870Z", "date_published": null, "start_time": "2026-04-07T06: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/287E952F42DAFB57FAA11282366545A1/Ko-kollektiivi_Tanssikorttipakka", "sv": "http://www.annantalo.fi/sv/evenemang/event/287E952F42DAFB57FAA11282366545A1/Ko-kollektiivi_Tanssikorttipakka_Danskortlek", "en": "http://www.annantalo.fi/en/events/event/287E952F42DAFB57FAA11282366545A1/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.</p><p>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:67889/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67242", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494336, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-30T12:13:06.133817Z", "last_modified_time": "2025-12-30T12:13:06.133830Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780320.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494336/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-30T12:13:06.027463Z", "last_modified_time": "2026-03-20T01:13:53.481679Z", "date_published": null, "start_time": "2026-04-02", "end_time": "2026-06-13", "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": "Kalmakumpu on Roope Erosen kokeellinen lastensarjakuva lumotusta lemmikkieläinten hautausmaasta ja sen asukkaista.", "sv": "Kalmakumpu är en experimentell tecknad serie för barn av Roope Eronen om en förtrollad djurkyrkogård och dess invånare.", "en": "Kalmakumpu is Roope Eronen’s experimental children’s comic about an enchanted pet cemetery and its inhabitants." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8603C2FEB0E380EBEBE32171FD1542AE/Kalmakumpu", "sv": "http://www.annantalo.fi/sv/evenemang/event/8603C2FEB0E380EBEBE32171FD1542AE/Kalmakumpu_Dodens_kulle", "en": "http://www.annantalo.fi/en/events/event/8603C2FEB0E380EBEBE32171FD1542AE/Kalmakumpu" }, "description": { "fi": "<p>Kalmakumpu on Roope Erosen kokeellinen lastensarjakuva lumotusta lemmikkieläinten hautausmaasta ja sen asukkaista.</p><p>Sarjakuvan hahmot perustuvat suurimmalta osin lukijoiden ehdotuksiin. Ensimmäiset hahmot kerättiin Annantalon sarjakuvakurssien oppilailta. Kalmakumpu ilmestyy kahdesti vuodessa. Sen ensimmäinen osa julkaistiin syksyllä 2025.<br> <br>Kalmakummun tavoitteena on syventää lasten suhdetta sarjakuvaan siinä käytetyn laajan tunnespektrin avulla. Teos pyrkii kehittämään lukijoiden empatiaa sekä vahvistamaan lapsen asemaa lukijana. Teoksessa luotetaan lapsen kykyyn käsitellä myös vakavia asioita luetun kautta. Kalmakummussa käsitellään kuoleman eri ulottuvuuksia turvallisessa ja lempeässä ympäristössä.<br> <br>Näyttely esittelee sarjakuvan hahmoja ja tunnelmia. Se juhlistaa toisen Kalmakumpu-albumin ilmestymistä.</p><p>Työskentelyä on tukenut Koneen Säätiö.</p><p><a href=\"https://www.kalmakumpu.fi/\"><b>www.kalmakumpu.fi</b></a></p><p>_</p><p>Tervetuloa näyttelyn avajaisiin ja Kalmakumpu 2:n julkkareihin Annantalon Kahvila Naperoon 2.4. klo 17-19!</p><p>Klo 18 auditoriossa Markus Koistisen Kalmakumpu-aiheinen pelikonsertti!</p>", "sv": "<p>Kalmakumpu är en experimentell tecknad serie för barn av Roope Eronen om en förtrollad djurkyrkogård och dess invånare.</p><p>Karaktärerna i serien är till stor del baserade på förslag från läsarna. De första figurerna samlades in från deltagarna i Annegårdens seriekurser. Kalmakumpu utkommer två gånger per år. Den första delen publicerades hösten 2025.<br> <br>Kalmakumpu syftar till att fördjupa barns relation till tecknade serier genom det breda känslospektrum som används i dem. Verket syftar till att utveckla läsarnas empati och stärka barnets roll som läsare. Verket förlitar sig på barnets förmåga att hantera allvarliga frågor genom läsning. Kalmakumpu behandlar dödens olika dimensioner i en trygg och vänlig miljö.<br> <br>Utställningen presenterar den tecknade seriens karaktärer och stämningar. Den firar utgivningen av det andra Kalmakumpu-albumet.</p><p>Arbetet har fått stöd av Konestiftelsen.</p><p>www.kalmakumpu.fi</p>", "en": "<p>Kalmakumpu is Roope Eronen’s experimental children’s comic about an enchanted pet cemetery and its inhabitants.</p><p>The characters of the comic are largely based on suggestions from readers. The ideas for the first characters were collected from students of Annantalo’s comic courses. Kalmakumpu is published twice a year. The first issue was published in autumn 2025.<br> <br>Kalmakumpu aims to deepen children’s relationship with comics through the broad emotional spectrum that it uses. The work aims to develop empathy among readers and strengthen the role of children as readers. It trusts that children are also able to process serious matters through what they read. Kalmakumpu deals with different dimensions of death in a safe and gentle environment.<br> <br>This exhibition presents the characters and moods of the comic. It celebrates the release of the second Kalmakumpu album.</p><p>The work has been supported by the Kone Foundation.</p><p>www.kalmakumpu.fi</p>" }, "name": { "fi": "Kalmakumpu – Kuvitusnäyttely kahvila Naperossa", "sv": "Kalmakumpu – Dödens kulle – Illustrationsutställning på kafé Napero", "en": "Kalmakumpu – Illustration exhibition at Café Napero" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67242/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67587", "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/maria-ylipaa-ystavat-malmitalo-20915451/", "sv": "https://www.lippu.fi/event/maria-ylipaa-ystavat-malmitalo-20915451/", "en": "https://www.lippu.fi/event/maria-ylipaa-ystavat-malmitalo-20915451/" }, "description": null, "price": { "fi": "32 € / 27 €", "sv": "32 € / 27 €", "en": "32 € / 27 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493908, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-25T14:13:14.583733Z", "last_modified_time": "2025-11-25T14:13:14.583749Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781977.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493908/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-25T14:13:14.468100Z", "last_modified_time": "2026-03-20T01:13:53.276569Z", "date_published": null, "start_time": "2026-04-01T16: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": "Monipuolisena näyttelijänä ja laulajana tunnettu Maria Ylipää tarjoaa unelmatrionsa kanssa suuria tunteita ja vaihtuvia tunnelmia sisältävän konsertin.", "sv": "Maria Ylipää, som är känd som en mångsidig skådespelerska och sångerska, bjuder tillsammans med sin drömtrio på en konsert med stora känslor och växlande stämningar.", "en": "Maria Ylipää, well known as a versatile actress and singer, and her dream trio offer a concert full of grand emotions and changing moods." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A57B14204AB4D671D81257DFFA09272D/Maria_Ylipaa_Ystavat", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A57B14204AB4D671D81257DFFA09272D/Maria_Ylipaa_Vanner", "en": "http://www.malmitalo.fi/en/events/event/A57B14204AB4D671D81257DFFA09272D/Maria_Ylipaa_Friends" }, "description": { "fi": "<p>Monipuolisena näyttelijänä ja laulajana tunnettu Maria Ylipää tarjoaa unelmatrionsa kanssa suuria tunteita ja vaihtuvia tunnelmia sisältävän konsertin.</p><p>Konsertti koostuu estradi- ja teatterimusiikin klassikoista sekä sävelletystä suomalaisesta runoudesta. Illan aikana kuullaan taiturimaisia, intohimoisia ja sielukkaita tulkintoja mm. Édith Piafin ja Jacques Brelin tunnetuksi tekemiä chansoneita, saksalaista kabareemusiikkia elokuvasäveltäjä Friedrich Hollaenderin kynästä, suomalaista runoutta Anna-Mari Kähärän säveltämänä sekä otteita Marzi Nymanin Marialle ja harmonikkataiteilija Niko Kumpuvaaralle säveltämästä laulusarjasta.</p><p>Kokoonpano:<br>Maria Ylipää, laulu<br>Niko Kumpuvaara, harmonikka<br>Marzi Nyman, kitara<br>Ville Herrala, kontrabasso</p><p>Kesto: 1 t 15 min</p>", "sv": "<p>Maria Ylipää, som är känd som en mångsidig skådespelerska och sångerska, bjuder tillsammans med sin drömtrio på en konsert med stora känslor och växlande stämningar.</p><p>Konserten består av klassiker från estrad- och teatermusiken samt tonsättningar av finsk poesi. Under kvällen får vi höra skickliga, passionerade och själfulla tolkningar av bland annat chansoner som populariserats av Édith Piaf och Jacques Brel, tysk kabarémusik från filmkompositören Friedrich Hollaenders penna, finsk poesi som tonsatts av Anna-Mari Kähärä samt utdrag ur Marzi Nymans serie av sånger för Maria och dragspelskonstnären Niko Kumpuvaara.</p><p>Sammansättning:<br>Maria Ylipää, sång<br>Niko Kumpuvaara, dragspel<br>Marzi Nyman, gitarr<br>Ville Herrala, kontrabas<br>Längd: 1 h 15 min.</p>", "en": "<p>Maria Ylipää, well known as a versatile actress and singer, and her dream trio offer a concert full of grand emotions and changing moods.</p><p>The concert consists of stage and theatre music classics and Finnish poetry set to music. The evening will feature skilful, passionate and soulful interpretations of music such as chansons made famous by Édith Piaf and Jacques Brel, German cabaret music penned by film composer Friedrich Hollaender, Finnish poetry set to music by Anna-Mari Kähärä, and excerpts from a series of songs composed by Marzi Nyman for Maria and accordionist Niko Kumpuvaara.</p><p>Line-up:<br>Maria Ylipää, vocals<br>Niko Kumpuvaara, accordion<br>Marzi Nyman, guitar<br>Ville Herrala, double bass</p><p>Duration: 1 hour 15 min</p>" }, "name": { "fi": "Maria Ylipää & Ystävät", "sv": "Maria Ylipää & Vänner", "en": "Maria Ylipää & Friends" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67587/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68260", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1663445, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-18T13:13:55.583058Z", "last_modified_time": "2026-03-18T13:13:55.583073Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785558.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1663445/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-18T13:13:55.429720Z", "last_modified_time": "2026-03-20T01:13:53.148164Z", "date_published": null, "start_time": "2026-04-01T15: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": "Ky Nam Inn, Leon Le, Vietnam Quán Kỳ Nam, 2025, 140 min, K12" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/36472C559BCB7A2D73ED2FEF3E93F59F/Helsinki_Cine_Aasia_x_Vuotalo_Ky_Nam_Inn", "sv": "http://www.vuotalo.fi/sv/evenemang/event/36472C559BCB7A2D73ED2FEF3E93F59F/Helsinki_Cine_Aasia_x_Vuotalo_Ky_Nam_Inn", "en": "http://www.vuotalo.fi/en/events/event/36472C559BCB7A2D73ED2FEF3E93F59F/Helsinki_Cine_Aasia_x_Vuotalo_Ky_Nam_Inn" }, "description": { "fi": "<p>Ky Nam Inn, Leon Le, Vietnam Quán Kỳ Nam, 2025, 140 min, K12</p><p>Vietnam<br>Nuori lupaus Khang muuttaa Saigoniin 1980-luvun sodanjälkeisessä yhdistyneessä Vietnamissa tehtävänään kääntää uudestaan Pikku prinssi. Samassa asuintalossa asuva leski Ky Nam elättää itsensä pyörittämällä pientä ruokabisnestä, ja näiden kahden tiet risteävät muiden naapurusten silmien alla. Pidätettyjä tunteita, surua, kaipuuta ja varautuneisuutta patoava koreografia on kuin hienostunut hatunnosto Wong Kar-wain klassikolle In the Mood for Love.</p><p>Leon Le ihastutti HCA-yleisöä jo aikaisemmalla elokuvallaan Song Lang (2018) ja maalaa jälleen kankaalle tyylitellyn ajankuvan sille ominaisine sosiaalisine jännitteineen ja asetelmineen nyt 35 mm filmille kuvattuna.</p><p>Jenni Peisa & Thu Nguyen</p><p>Tekstitys: englanti.</p><p>Vapaa sisäänpääsy</p>" }, "name": { "fi": "Helsinki Cine Aasia x Vuotalo: Ky Nam Inn", "sv": "Helsinki Cine Aasia x Vuotalo: Ky Nam Inn", "en": "Helsinki Cine Aasia x Vuotalo: Ky Nam Inn" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68260/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68252", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/ulla-tapaninen-lava-ammuntaa-viii-after-eight-komiikkaa-kanneltalo-20937676/", "sv": "https://www.lippu.fi/event/ulla-tapaninen-lava-ammuntaa-viii-after-eight-komiikkaa-kanneltalo-20937676/", "en": "https://www.lippu.fi/event/ulla-tapaninen-lava-ammuntaa-viii-after-eight-komiikkaa-kanneltalo-20937676/" }, "description": null, "price": { "fi": "24,80€ / 20€", "sv": "24,80€ / 20€", "en": "24,80€ / 20€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1652169, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-17T10:13:26.034151Z", "last_modified_time": "2026-03-17T10:13:26.034166Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786494.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1652169/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-17T10:13:25.804583Z", "last_modified_time": "2026-03-20T01:13:52.944494Z", "date_published": null, "start_time": "2026-04-01T15: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": "Ulla Tapaninen. 70 vuotta elossa. 50 vuotta näyttämöllä. 30 vuotta lava-ammuntaa. Ja terävämpänä kuin koskaan!", "sv": "Ulla Tapaninen. 70 år i livet. 50 år på scenen. 30 år av Lava-ammuntaa. Och skarpare än någonsin!", "en": "Ulla Tapaninen. 70 years alive. 50 years on stage. 30 years of the ‘Lava-ammuntaa’ show. And sharper than ever!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/EC6D0347C905D11602B72AD8797312B1/LAVA-AMMUNTAA_VIII_-_After_Eight_-komiikkaa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/EC6D0347C905D11602B72AD8797312B1/LAVA-AMMUNTAA_VIII_After_Eight_-komiikkaa", "en": "http://www.kanneltalo.fi/en/events/event/EC6D0347C905D11602B72AD8797312B1/LAVA-AMMUNTAA_VIII_After_Eight_comedy" }, "description": { "fi": "<p>Ulla Tapaninen. 70 vuotta elossa. 50 vuotta näyttämöllä. 30 vuotta lava-ammuntaa. Ja terävämpänä kuin koskaan!</p><p>Tapahtuma siirtyi sairastapauksen vuoksi torstailta 12.3. keskiviikolle 1.4. Kanneltalo pahoittelee asiasta koituvaa harmia.<br>Jo ostetut liput käyvät uuteen esitykseen sellaisenaan. Mikäli uusi esitysaika ei sovi, voit hakea lippurahojen palautusta 31.3.2026 mennessä osoitteesta https://web.lippu.fi/palautus/</p><p>Keväällä 2026 nauretaan ja juhlitaan pyöreitä porukassa, kun Ulla Tapanisen ja Raila Leppäkosken kirjoittama Lava-ammuntaa-esityssarja viettää kolmekymppisiään, näyttelijä-Ulla viisikymppisiään ja siviili-Ulla seitsemänkymppisiään. Kevät 2026 on siis yhtä ikäkriisiä, ei kun siis juhlaa!</p><p>Lava-ammuntaa VIII jatkaa ajankohtaisten asioiden ja ilmiöiden päivittelyä suorasanaisesti ja oivaltavasti terävällä huumorilla terästettynä. Nyt kun ikää ja kokemusta on saavutettu kunnioitettavasti, sallitaan iltaherkuttelukin.</p><p>Lava-ammuntaa VIII – After Eight -komiikkaa iskee ajassa kiinni oleviin ilmiöihin tuttuun, suorasanaiseen ja hävyttömän osuvaan tyyliin.</p><p>Ulla Tapaninen on kotimaisen näyttämötaiteen suurnimi, jonka roolityöt ovat jääneet pysyvästi suomalaisten sydämiin. Hänen monologisarjansa Lava-ammuntaa on kulttimaineessa, ja hänen äänensä on tuttu muun muassa Muumimammana ja Ursulana.</p><p>Käsikirjoitus Ulla Tapaninen ja Raila Leppäkoski<br>Ohjaus Raila Leppäkoski<br>Lavalla Ulla Tapaninen</p><p>Esityksen arvioitu kesto noin 1 h 45 minuuttia sisältäen väliajan.</p>", "sv": "<p>Ulla Tapaninen. 70 år i livet. 50 år på scenen. 30 år av Lava-ammuntaa. Och skarpare än någonsin!</p><p>Våren 2026 får vi skratta och fira när Ulla Tapaninens och Raila Leppäkoskis föreställningsserie Lava-ammuntaa firar 30, skådespelar-Ulla 50 och civila Ulla 70 år. Våren 2026 är alltså en enda ålderskris, nej alltså en fest!</p><p>Lava-ammuntaa VIII fortsätter diskussionen om aktuella frågor och fenomen på ett frispråkigt och insiktsfullt sätt med en rejäl dos humor. Nu när en aktningsvärd ålder och erfarenhet har uppnåtts är det tillåtet med lite godis till kvällen.</p><p>Lava-ammuntaa VIII – After Eight -komiikkaa tar tag i aktuella fenomen i en välbekant, frispråkig och skamlöst träffande stil.</p><p>Ulla Tapaninen är ett stort namn på de finländska scenerna, vars rollarbete har fått en permanent plats i finländarnas hjärtan. Hennes monologserie Lava-ammuntaa är kultförklarad och hennes röst är välkänd som bland annat Muminmamman och Ursula.</p><p>Manus av Ulla Tapaninen och Raila Leppäkoski<br>Regi Raila Leppäkoski<br>På scenen Ulla Tapaninen</p><p>Föreställningens beräknade längd är ca 1 h 45 min., inklusive paus.<br>Språk: finska</p>", "en": "<p>Ulla Tapaninen. 70 years alive. 50 years on stage. 30 years of the ‘Lava-ammuntaa’ show. And sharper than ever!</p><p>In the spring of 2026, the ‘Lava-ammuntaa’ series, written by Ulla Tapaninen and Raila Leppäkoski, will celebrate its thirtieth birthday, the actor Ulla her fiftieth birthday and the civilian Ulla her seventieth birthday. So spring 2026 will be all about ageing ungracefully. Oops, I meant celebrations!</p><p>‘Lava-ammuntaa VIII’ continues to discuss current affairs and phenomena with a frank and insightful approach, laced with sharp humour. Now that age and experience have been respectably acquired, evening snacks are allowed.</p><p>‘Lava-ammuntaa VIII – After Eight comedy’ tackles contemporary phenomena in a familiar, frank and unashamedly apt style.</p><p>Ulla Tapaninen is a great name in Finnish stage art, whose roles have remained in the hearts of Finns forever. Her monologue series ‘Lava-ammuntaa’ is a cult hit, and her voice is familiar as Moominmamma and Ursula, among others.</p><p>Script by Ulla Tapaninen and Raila Leppäkoski<br>Directed by Raila Leppäkoski<br>Ulla Tapaninen on stage</p><p>Estimated duration of the performance: approximately 1 h 45 minutes, including an intermission.<br>Language: Finnish</p>" }, "name": { "fi": "LAVA-AMMUNTAA VIII - After Eight -komiikkaa – Ulla Tapaninen & Raila Leppäkoski", "sv": "LAVA-AMMUNTAA VIII – After Eight -komiikkaa – Ulla Tapaninen & Raila Leppäkoski", "en": "LAVA-AMMUNTAA VIII – After Eight comedy – Ulla Tapaninen & Raila Leppäkoski" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68252/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67392", "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-epic-elvis-presley-in-concert-malmitalo-21468598/", "sv": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21468598/", "en": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21468598/" }, "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1671704, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T09:14:19.971128Z", "last_modified_time": "2026-03-19T09:14:19.971145Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781080.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1671704/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T09:14:19.820184Z", "last_modified_time": "2026-03-20T01:13:52.824369Z", "date_published": null, "start_time": "2026-04-01T15: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": "EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/76D6D1B2B74DA7F9AA62CF98D451809D/EPiC_Elvis_Presley_in_Concert_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/76D6D1B2B74DA7F9AA62CF98D451809D/EPiC_Elvis_Presley_in_Concert_7_", "en": "http://www.malmitalo.fi/en/events/event/76D6D1B2B74DA7F9AA62CF98D451809D/EPiC_Elvis_Presley_in_Concert_7_" }, "description": { "fi": "<p>EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi.</p><p>Baz Luhrmannin ainutlaatuisessa elokuvaelämyksessä Elvis laulaa ja kertoo tarinansa tavalla, jollaista ei ole koettu aiemmin.</p><p>Elokuva pohjautuu arkistoista löytyneeseen 68 laatikolliseen ennennäkemätöntä kuvamateriaalia. Ohjaaja Baz Luhrmannin tiimi on restauroinut ja synkronoinut mykät arkistolöydöt vastaamaan aitoja äänitallenteita. Elokuva yhdistää ikonisia lavatulkintoja, kuten vuoden 1957 Havaijin ”kultatakki”-esiintymisen, sekä harvinaisen 45-minuuttisen tallenteen, jolla Elvis kertoo itse omasta elämästään.</p><p>Ikäraja: 7<br>Kesto: 96 min<br>Ensi-ilta: 27.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "EPiC: Elvis Presley in Concert (7) – Kino Helios", "sv": "EPiC: Elvis Presley in Concert (7) – Kino Helios", "en": "EPiC: Elvis Presley in Concert (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67392/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }