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&keyword=yso%3Ap4354
{ "meta": { "count": 6935, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=2", "previous": null }, "data": [ { "id": "kulke:68374", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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: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": 1792306, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T14:13:15.236210Z", "last_modified_time": "2026-04-02T14:13:15.236226Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780005.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1792306/?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": "2026-04-02T14:13:15.167882Z", "last_modified_time": "2026-04-02T14:13:15.350762Z", "date_published": null, "start_time": "2026-06-11T10:00:00Z", "end_time": "2026-06-11T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2954B82828D52F7AE05F75EAE7D6F450/Kesan_taidepajat_Vuotalossa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2954B82828D52F7AE05F75EAE7D6F450/Kesan_taidepajat_Vuotalossa", "en": "http://www.vuotalo.fi/en/events/event/2954B82828D52F7AE05F75EAE7D6F450/Kesan_taidepajat_Vuotalossa" }, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Kesäpihan taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Taidepajat järjestetään Vuotalon pihalla maanantaista perjantaihin 8.-11.6.2026. Jos sataa ja myrskyää, työpaja siirtyy sisätiloihin.</p><p><b>to 11.6. klo 13–15 Tup, tup, tuputus!</b><br>Tuputtamalla maalia itsetekemiin sabluunoihin ja toistamalla niiden kuvioita saamme upean maalauksen.</p><p>Työpajojen ohjaaja: Chloé Mahy-Hulkko <br>Ohjauskielet: suomi, englanti ja ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista!</p>" }, "name": { "fi": "Kesän taidepajat Vuotalossa – Tup, tup, tuputus!", "sv": "Kesän taidepajat Vuotalossa", "en": "Kesän taidepajat Vuotalossa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68374/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68373", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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: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": 1792305, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T14:13:14.867065Z", "last_modified_time": "2026-04-02T14:13:14.867078Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780004.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1792305/?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": "2026-04-02T14:13:14.778608Z", "last_modified_time": "2026-04-02T14:13:14.979633Z", "date_published": null, "start_time": "2026-06-10T07:00:00Z", "end_time": "2026-06-10T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DE3CDCAA7E1A2517838B06C36E16267B/Kesan_taidepajat_Vuotalossa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/DE3CDCAA7E1A2517838B06C36E16267B/Kesan_taidepajat_Vuotalossa", "en": "http://www.vuotalo.fi/en/events/event/DE3CDCAA7E1A2517838B06C36E16267B/Kesan_taidepajat_Vuotalossa" }, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Kesäpihan taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Taidepajat järjestetään Vuotalon pihalla maanantaista perjantaihin 8.-11.6.2026. Jos sataa ja myrskyää, työpaja siirtyy sisätiloihin.</p><p><b>ke 10.6. klo 10–12 Valo herättää värit eloon</b><br>Silkkipaperista ja liisteristä luodaan kaunis läpikuultava ikkunakoriste.</p><p>Työpajojen ohjaaja: Chloé Mahy-Hulkko <br>Ohjauskielet: suomi, englanti ja ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista!</p>" }, "name": { "fi": "Kesän taidepajat Vuotalossa – Valo herättää värit eloon", "sv": "Kesän taidepajat Vuotalossa", "en": "Kesän taidepajat Vuotalossa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68373/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68371", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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: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": 1792304, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T14:13:14.535019Z", "last_modified_time": "2026-04-02T14:13:14.535034Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780003.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1792304/?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": "2026-04-02T14:13:14.460413Z", "last_modified_time": "2026-04-02T14:13:14.635290Z", "date_published": null, "start_time": "2026-06-09T10:00:00Z", "end_time": "2026-06-09T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/73BC25D27961289F043C167DA6DB3CFB/Kesan_taidepajat_Vuotalossa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/73BC25D27961289F043C167DA6DB3CFB/Kesan_taidepajat_Vuotalossa", "en": "http://www.vuotalo.fi/en/events/event/73BC25D27961289F043C167DA6DB3CFB/Kesan_taidepajat_Vuotalossa" }, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Kesäpihan taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Taidepajat järjestetään Vuotalon pihalla maanantaista perjantaihin 8.-11.6.2026. Jos sataa ja myrskyää, työpaja siirtyy sisätiloihin.</p><p><b>ti 9.6. klo 13–15 Toisen roska on toiselle aarre</b><br>Sommitellaan kierrätysmateriaaleista pienikokoinen kullattu taideteos.</p><p>Työpajojen ohjaaja: Chloé Mahy-Hulkko <br>Ohjauskielet: suomi, englanti ja ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista!</p>" }, "name": { "fi": "Kesän taidepajat Vuotalossa – Toisen roska on toiselle aarre", "sv": "Kesän taidepajat Vuotalossa", "en": "Kesän taidepajat Vuotalossa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68371/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68368", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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: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": 1792303, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T14:13:14.164406Z", "last_modified_time": "2026-04-02T14:13:14.164422Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779993.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1792303/?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": "2026-04-02T14:13:14.052066Z", "last_modified_time": "2026-04-02T14:13:14.323429Z", "date_published": null, "start_time": "2026-06-08T07:00:00Z", "end_time": "2026-06-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": "Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/21FCBB844FA8D20CF08EC7B1DDD024E3/Kesan_taidepajat_Vuotalossa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/21FCBB844FA8D20CF08EC7B1DDD024E3/Kesan_taidepajat_Vuotalossa", "en": "http://www.vuotalo.fi/en/events/event/21FCBB844FA8D20CF08EC7B1DDD024E3/Kesan_taidepajat_Vuotalossa" }, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Kesäpihan taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Jos sataa ja myrskyää, työpaja siirtyy sisätiloihin. Taidepajat järjestetään Vuotalon pihalla maanantaista perjantaihin 8.-11.6.2026.</p><p><b>ma 8.6. klo 10–12 Kuplamaalaus</b><br>Tänään maalataan hassulla tavalla: saippuakuplilla!</p><p>Työpajojen ohjaaja: Chloé Mahy-Hulkko <br>Ohjauskielet: suomi, englanti ja ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista!</p>" }, "name": { "fi": "Kesän taidepajat Vuotalossa – Kuplamaalaus", "sv": "Kesän taidepajat Vuotalossa", "en": "Kesän taidepajat Vuotalossa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68368/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68267", "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:105/?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:596/?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": 1682701, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-20T11:14:04.020162Z", "last_modified_time": "2026-03-20T11:14:04.020177Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786122.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1682701/?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-03-20T11:14:03.875581Z", "last_modified_time": "2026-04-01T11:13:37.932396Z", "date_published": null, "start_time": "2026-06-06T07:00:00Z", "end_time": "2026-06-06T11:45: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": "Ihastuttava lasten lauantai rokkaa, muskaroi ja kuljettaa kohti kivoja perhehetkiä lukukeitaan ja työpajojen myötä. Nyt koko perhe Malmille!", "sv": "Under barnens härliga lördag får du rocka, musikleka och ta del av trevliga familjestunder med läsoas och verkstäder. Ta med hela familjen till Malm!", "en": "The delightful Children’s Saturday will feature rocking music, a music playschool and fun family moments with a reading oasis and workshops. Bring the whole family to Malmi!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF826880E5BB479091D11E88120EA497/Lasten_lauantai_Rokkasoppa_Riemukas_perhemuskari_kirjaston_lukukeidas_ja_tyopajoja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF826880E5BB479091D11E88120EA497/Barnens_lordag_Rokkasoppa_glatt_familjemusiklekis_bibliotekets_lasoas_och_verkstader", "en": "http://www.malmitalo.fi/en/events/event/CF826880E5BB479091D11E88120EA497/Children_s_Saturday_Rokkasoppa_a_joyful_family_music_playschool_a_reading_oasis_in_the_library_and_workshops" }, "description": { "fi": "<p>Ihastuttava lasten lauantai rokkaa, muskaroi ja kuljettaa kohti kivoja perhehetkiä lukukeitaan ja työpajojen myötä. Nyt koko perhe Malmille!</p><p>Malmin tapahtumakesän lasten lauantai tarjoaa koko perheelle iloa ja riemua! Päivän aikana pääsee lukemaan, musisoimaan, askartelemaan ja nauttimaan lasten omasta rokkimeiningistä.</p><p><b>Päivän ohjelma</p><p>klo 10.00–16.00 Kirjaston lukukeidas</b><br>Kirjasto pystyttää lukukeitaan Malmitalon sisäänkäynnin läheisyyteen. Ota kirja mukaan ja tule lukemaan. <br>Paikka: Malmitalon rappuset</p><p><b>klo 12.00–16.00 Malmin nuorisotyöyksikön kesätyönuorten ideoimia pelejä ja leikkejä perheen pienille</b><br>Kesätyöntekijät toteuttavat kaikille avointa hyvän mielen toimintaa. Tule mukaan leikkimään ja viihtymään. <br>Paikka: Ala-Malmin tori</p><p><b>klo 12.00–14.00 Pukinmäen taidekoulu: Klovni Dattarataa</b><br>Paikka: Ala-Malmin tori</p><p><b>klo 12.00–14.00 Pohjois-Helsingin kuvataidekoulun pinssityöpaja'</b><br>Paikka: Ala-Malmin tori</p><p><b>klo 12.00–14.00 Yksin hanke: Kollaasitaidetta ja tikkariperhosia</b><br>Paikka: Ala-Malmin tori</p><p><b>klo 13.00–13.30 Riemukas perhemuskari</b><br><i>”Pyöri kuin pyörre – veden pinnalla! Leiju kuin pilvi – taivaan kannella!”</i><br>Riemukkaassa perhemuskarissa lauletaan, leikitään ja musisoidaan yhdessä kesäisissä tunnelmissa. Muskarin ohjaa musiikin maisteri ja lastenmuusikko Henna-Maija Kuki.<br>Paikka: Konttilava, Ala-Malmin tori</p><p><b>klo 14.00–14.45 Rokkasoppa</b><br>Eskari-ikäinen Rokkasoppa on muksurockbändi, jonka laulut kertovat mauista, hajuista, tuntemuksista ja fiiliksistä rokkitvistillä, joka saa myös aikuisten peput heilumaan tahdissa. \"Ruuassa ja Rokissa parasta on se, että saa tykätä just siitä, mistä tykkää. Kaikkea pitää kuitenkin maistaa.\" <br>Paikka: Konttilava, Ala-Malmin tori</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>Under barnens härliga lördag får du rocka, musikleka och ta del av trevliga familjestunder med läsoas och verkstäder. Ta med hela familjen till Malm!</p><p>Barnens lördag under Malms evenemangssommar bjuder på glädje och skoj för hela familjen! Under dagen kan du läsa, musicera, pyssla och njuta av rockstämning för barn.</p><p><b>Dagens program</p><p>kl. 10.00–16.00<br>Bibliotekets läsoas</b><br>Biblioteket ordnar en läsoas nära ingången till Malms kulturhus. Ta med en bok och kom och läs.<br>Plats: Malms kulturhus trappa</p><p><b>kl. 12.00–16.00<br>Spel och lekar för den yngsta, som planerats av unga sommarjobbare vid Malms ungdomsarbetsenhet</b><br>Sommarjobbarna ordnar feel good-verksamhet som är öppen för alla. Kom med och lek och ha roligt.<br>Plats: Nedre Malms torg</p><p><b>kl. 12.00–14.00 Pukinmäen taidekoulut: Clownen Dattarataa</b><br>Plats: Nedre Malms torg</p><p><b>kl. 12.00–14.00 Pohjois-Helsingin kuvataidekoulus pinsverkstad</b><br>Plats: Nedre Malms torg</p><p><b>kl. 12.00–14.00 Yksin-projektet: Collagekonst och slickepinnsfjärilar</b><br>Plats: Nedre Malms torg</p><p><b>kl. 13.00–13.30<br>Glatt familjemusiklekis</b><br><i>”Snurra som en virvel – på vattenytan! Sväva som ett moln – på himlen!”</i><br>I det glada familjemusiklekiset får vi sjunga, leka och musicera tillsammans i sommaren. Programmet leds av musikmagistern och barnmusikern Henna-Maija Kuki.<br>Plats: Containerscenen, Nedre Malms torg</p><p><b>kl. 14.00–14.45<br>Rokkasoppa</b><br>Rokkasoppa är ett barnrockband som nu nått förskoleåldern. Deras låtar handlar om smaker, dofter, känslor och stämningar med en rockig twist som även får de vuxnas rumpor att svänga i takt. ”Det bästa med mat och rock är att man får gilla det som man gillar. Men man måste smaka på allt.”<br>Plats: Containerscenen, Nedre Malms torg</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>The delightful Children’s Saturday will feature rocking music, a music playschool and fun family moments with a reading oasis and workshops. Bring the whole family to Malmi!</p><p>As part of the Malmi Summer of Events, Children’s Saturday will provide joy and fun for the whole family! During the day, you can read, play music, do arts and crafts and enjoy rocking music for children.</p><p><b>The day’s programme</p><p>10.00–16.00<br>Reading oasis in the library</b><br>The library will set up a reading oasis near the entrance to the Malmitalo. Bring a book and come read with us.<br>Place: Malmitalo stairs</p><p><b>12.00–16.00<br>Games and play activities for the youngest members of the family, created by the Malmi Youth Work Unit’s young summer workers</b><br>Summer workers will provide enjoyable activities open to all. Join us for fun and games!<br>Place: Ala-Malmi Square</p><p><b>12.00–14.00<br>Pukinmäki Art School: Clown Dattarataa</b><br>Place: Ala-Malmi Square</p><p><b>12.00–14.00<br>Pin-making workshop by Helsinki Upper Secondary School of Visual Arts</b><br>Place: Ala-Malmi Square</p><p><b>12.00–14.00<br>The Yksin (‘Alone’) project: Collage art and lollipop butterflies</b><br>Place: Ala-Malmi Square</p><p><b>13.00–13.30<br>Joyful family music playschool</b><br><i>“Spin like a whirlpool – on the surface of the water! Float like a cloud – up in the sky!\"</i><br>This joyful family music playschool will involve singing, play and making music together in a summery atmosphere. The music playschool will be led by Master of Music and children’s musician Henna-Maija Kuki.<br>Place: Container stage, Ala-Ala-Malmi Square</p><p><b>14.00–14.45<br>Rokkasoppa</b><br>Having reached preschool age, Rokkasoppa are a children’s rock band whose songs are about tastes, smells, sensations and feelings with a rock twist that will have even the adults shaking their butts. “The best thing about food and rock is that you’re free to like what you like. But you do have to taste everything.”<br>Place: Container stage, Ala-Ala-Malmi Square</p><p>Entry to the events is free of charge!</p>" }, "name": { "fi": "Lasten lauantai: Rokkasoppa, Riemukas perhemuskari, kirjaston lukukeidas ja työpajoja – Malmin tapahtumakesä 2026", "sv": "Barnens lördag: Rokkasoppa, glatt familjemusiklekis, bibliotekets läsoas och verkstäder – Malms evenemangssommar 2026", "en": "Children’s Saturday: Rokkasoppa, a joyful family music playschool, a reading oasis in the library and workshops – Malmi Summer of Events 2026" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68267/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67760", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/mimmit-luonnonsuojelun-supersankarit-vuotalo-21058896/?affiliate=TFI#tab=", "sv": "https://www.lippu.fi/event/mimmit-luonnonsuojelun-supersankarit-vuotalo-21058896/?affiliate=TFI#tab=", "en": "https://www.lippu.fi/event/mimmit-luonnonsuojelun-supersankarit-vuotalo-21058896/?affiliate=TFI#tab=" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494141, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T16:13:16.216766Z", "last_modified_time": "2025-12-08T16:13:16.216832Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780510.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494141/?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-08T16:13:16.132348Z", "last_modified_time": "2026-04-01T07:13:29.227227Z", "date_published": null, "start_time": "2026-04-25T12: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": "Luonnon monimuotoisuuden väheneminen ja elinympäristöjen katoaminen on ilmastonmuutoksen lisäksi yksi maapallon suurimpia uhkia." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1CD4ADB0980A62D1E907BCD5DC8CDAA2/Mimmit_Luonnonsuojelun_supersankarit_konsertti", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1CD4ADB0980A62D1E907BCD5DC8CDAA2/Mimmit_Luonnonsuojelun_supersankarit_konsertti", "en": "http://www.vuotalo.fi/en/events/event/1CD4ADB0980A62D1E907BCD5DC8CDAA2/Mimmit_Luonnonsuojelun_supersankarit_konsertti" }, "description": { "fi": "<p>Luonnon monimuotoisuuden väheneminen ja elinympäristöjen katoaminen on ilmastonmuutoksen lisäksi yksi maapallon suurimpia uhkia.</p><p>Mimmit tarttuvat nyt tähän ongelmaan yhdessä lasten kanssa!<br> <br>Luonnonsuojelun supersankarit -konsertti tuo esille, millaisia elinympäristöjä eri lajit tarvitsevat ja miten monet tututkin eläimet tarvitsevat apuamme. Mukana on ihan uusia lauluja sekä monille tuttuja Mimmit-hittejä. Lauluissa tutustutaan eri eläimiin kuten dugongi, jakki ja panda. Lisäksi laulujen avulla retkeillään kansallispuistossa luontoa ja muita retkeilijöitä kunnioittaen ja opitaan, miten voidaan tehdä niitty pörriäisiä varten. <br> <br>Upea ja mukaansatempaava konserttikokonaisuus koostuu musiikista, tanssista ja animaatioista, joiden avulla tätä monimutkaista ongelmaa voidaan selittää myös lapsille. Lapset pääsevät myös osallistumaan erilaisiin toiminnallisiin tehtäviin konsertin aikana. Vaikka aihe onkin vakava, on konsertti Mimmien tyyliin energinen ja innostava ja saa lapset osallistumaan konkreettisin keinoin.<br> <br>Tule mukaan! Sinäkin voit olla Luonnonsuojelun supersankari!<br> <br>Mimmit on yksi Suomen tunnetuimmista lastenmusiikkiyhtyeistä. Mimmit on tehnyt yli 1100 konserttia Suomessa ja ulkomailla ja julkaissut yhdeksän levyä suomeksi ja kaksi ruotsiksi. ”Ystävyys” -levy valittiin vuoden lastenlevyksi 2017 ja roskaa vuoden yhtyeeksi 2024. Yhteensä Mimmien levyt ovat saavuttaneet kolme Emma-ehdokkuutta. Mimmit-lauluja ja -videoita on striimattu eri palveluissa jo yli 25 miljoonaa kertaa!</p>" }, "name": { "fi": "Mimmit & Luonnonsuojelun supersankarit –konsertti – LOPPUUNMYYTY", "sv": "Mimmit & Luonnonsuojelun supersankarit –konsertti", "en": "Mimmit & Luonnonsuojelun supersankarit –konsertti" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67760/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67240", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p21812/?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": 1494300, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:49.094609Z", "last_modified_time": "2025-12-23T09:13:49.094623Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780106.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494300/?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-23T09:13:48.961491Z", "last_modified_time": "2026-03-31T08:13:13.857077Z", "date_published": null, "start_time": "2026-03-27", "end_time": "2026-08-08", "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": "Palapeleille maalattuja, toistaiseksi tuntemattomien eläinoletettujen olentojen muotokuvia.", "sv": "Porträtt av hittills okända djurliknande varelser målade på pussel.", "en": "Portraits of hitherto unknown creatures, assumed to be animals, painted on jigsaw puzzles." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B5FADFDE34602A9BE5FC44956DDEFF37/Hans-Peter_Sch_tt_Anima", "sv": "http://www.annantalo.fi/sv/evenemang/event/B5FADFDE34602A9BE5FC44956DDEFF37/Hans-Peter_Sch_tt_Anima", "en": "http://www.annantalo.fi/en/events/event/B5FADFDE34602A9BE5FC44956DDEFF37/Hans-Peter_Sch_tt_Anima" }, "description": { "fi": "<p>Palapeleille maalattuja, toistaiseksi tuntemattomien eläinoletettujen olentojen muotokuvia.</p><p>Anima-näyttelyn teokset kuvaavat eläinoletettuja olentoja ja ne on tehty käytettyinä löydetyistä palapeleistä. Olennoissa on jotakin tuttua, mutta ne eivät kuitenkaan kuvaa mitään tuntemiamme eläimiä. Se mitä ajattelemme tietävämme ja tuntevamme muuntuu uudeksi ja kummalliseksi. Tuntemattomuus on läsnä, mutta sen saa kohdata turvallisesti.<br> <br>Teokset käsittelevät eläinaiheen välityksellä ei-inhimillisen maailman kohtaamista pohtien mahdollisuuksia, joita meillä ihmisillä on vaikuttaa näiden kohtaamisten laatuun esim. herkkyyden, mielikuvituksen ja kärsivällisyyden avulla. Miten osaisimme paremmin mieltää muunlaisia, itsestämme poikkeavia tapoja olla ja elää maailmassa sekä ottaa niitä huomioon? <br> <br>Avajaiset 26.3. klo 17-19 – Tervetuloa!<br> <br>Näyttely on valittu ohjelmistoon Annantalon avoimen haun kautta. Kevään 2025 aikana hakuun tuli 230 hakemusta, joiden joukosta Annantalon oppilasraati valitsi kuusi taiteilijaa toisen kerroksen gallerioihin sekä alakerran yhteisnäyttelyyn.</p>", "sv": "<p>Porträtt av hittills okända djurliknande varelser målade på pussel.</p><p>Verken i utställningen Anima föreställer djurliknande varelser och är tillverkade av begagnade pussel. Det finns något bekant över varelserna, men de föreställer ändå inte några av de djur vi känner till. Det vi tror att vi vet och känner förvandlas till något nytt och egendomligt. Det okända finns där, men vi får möta det på ett säkert sätt.<br> <br>Verken handlar om mötet med den icke-mänskliga världen genom djurtemat och reflekterar över de möjligheter vi människor har att påverka kvaliteten på dessa möten genom till exempel känslighet, fantasi och tålamod. Hur kan vi bättre förstå och ta hänsyn till andra sätt att vara och leva i världen som skiljer sig från våra egna? <br> <br>Vernissage 26.3. kl. 17–19 – Välkommen!<br> <br>Utställningen har tagits med i programmet genom Annegårdens öppna ansökan. Under våren 2025 inkom 230 ansökningar, bland vilka Annegårdens elevjury valde ut sex konstnärer till gallerierna på andra våningen och till den gemensamma utställningen på nedre våningen.</p>", "en": "<p>Portraits of hitherto unknown creatures, assumed to be animals, painted on jigsaw puzzles.</p><p>The works in the Anima exhibition depict creatures that are assumed to be animals and have been made from second-hand jigsaw puzzles. There is something familiar about the creatures, but they do not represent any animals that we know. What we think we know and feel is transformed into something new and strange. The unknown is present, but it can be faced safely.<br> <br>Through their animal theme, the works deal with facing a non-human world, reflecting on the opportunities that we humans have to influence the quality of these encounters through means such as sensitivity, imagination and patience. How could we better understand and take into account other ways of being and living in the world, ways that are different from our own? <br> <br>Opening event on 26 March at 17.00–19.00 – hope to see you there!<br> <br>The exhibition was selected for the programme through an open call at Annantalo. During the spring of 2025, Annantalo received 230 applications, from which the Annantalo student jury selected six artists for the second floor galleries and the joint exhibition downstairs.</p>" }, "name": { "fi": "Hans-Peter Schütt: Anima", "sv": "Hans-Peter Schütt: Anima", "en": "Hans-Peter Schütt: Anima" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67240/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67815", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1710077, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-23T07:13:05.181126Z", "last_modified_time": "2026-03-23T07:13:05.181140Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782928.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710077/?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-03-23T07:13:05.074298Z", "last_modified_time": "2026-03-30T07:13:21.298281Z", "date_published": null, "start_time": "2026-05-28T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F46C54BFCC85A9E6781E77E5CB36112B/Jussin_metsasadut", "sv": "http://www.stoa.fi/sv/evenemang/event/F46C54BFCC85A9E6781E77E5CB36112B/Jussin_metsasadut", "en": "http://www.stoa.fi/en/events/event/F46C54BFCC85A9E6781E77E5CB36112B/Jussin_metsasadut" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan. <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Myös perheet ovat tuokioihin tervetulleita!<br> <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br>Ikäsuositus: 3–7-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi <br>Vapaa pääsy <br>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch 13.1. klo 10 alkaen</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska</p><p>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>", "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>" }, "name": { "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä", "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog", "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67815/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67814", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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": 1710076, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-23T07:13:04.816624Z", "last_modified_time": "2026-03-23T07:13:04.816639Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782927.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710076/?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-03-23T07:13:04.684671Z", "last_modified_time": "2026-03-30T07:13:21.124224Z", "date_published": null, "start_time": "2026-05-28T06:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/EA6E041ED1B7F131C30E9778FBBFF007/Jussin_metsasadut", "sv": "http://www.stoa.fi/sv/evenemang/event/EA6E041ED1B7F131C30E9778FBBFF007/Jussin_metsasadut", "en": "http://www.stoa.fi/en/events/event/EA6E041ED1B7F131C30E9778FBBFF007/Jussin_metsasadut" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan. <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Myös perheet ovat tuokioihin tervetulleita!<br> <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br>Ikäsuositus: 3–7-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi <br>Vapaa pääsy <br>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch 13.1. klo 10 alkaen</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska</p><p>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>", "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>" }, "name": { "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä", "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog", "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67814/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67813", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1710074, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-23T07:13:03.162794Z", "last_modified_time": "2026-03-23T07:13:03.162809Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782925.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710074/?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-03-23T07:13:03.049479Z", "last_modified_time": "2026-03-30T07:13:20.004794Z", "date_published": null, "start_time": "2026-05-21T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/26858B40DDEB500EEC406CF896627905/Jussin_metsasadut_", "sv": "http://www.stoa.fi/sv/evenemang/event/26858B40DDEB500EEC406CF896627905/Jussin_metsasadut_", "en": "http://www.stoa.fi/en/events/event/26858B40DDEB500EEC406CF896627905/Jussin_metsasadut_" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan. <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Myös perheet ovat tuokioihin tervetulleita!<br> <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br>Ikäsuositus: 3–7-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi <br>Vapaa pääsy <br>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch 13.1. klo 10 alkaen</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska</p><p>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>", "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk. <br>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>" }, "name": { "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä", "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog", "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67813/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67812", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1710073, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-23T07:13:02.752322Z", "last_modified_time": "2026-03-23T07:13:02.752340Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782924.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710073/?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-03-23T07:13:02.629024Z", "last_modified_time": "2026-03-30T07:13:19.788191Z", "date_published": null, "start_time": "2026-05-21T06:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A804EED9EEBFBD27EC109A90553D81BF/Jussin_metsasadut_", "sv": "http://www.stoa.fi/sv/evenemang/event/A804EED9EEBFBD27EC109A90553D81BF/Jussin_metsasadut_", "en": "http://www.stoa.fi/en/events/event/A804EED9EEBFBD27EC109A90553D81BF/Jussin_metsasadut" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana.</p><p>Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Myös perheet ovat tuokioihin tervetulleita!<br> <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.</p><p>Ikäsuositus: 3–7-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi</p><p>Vapaa pääsy</p><p>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch<br>13.1. klo 10 alkaen</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen.</p><p>Den pålitliga utflyktsgitarren följer med.<br>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt. <br>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar</p><p>Längd: ca 45 min.<br>Språk: finska <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>", "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>" }, "name": { "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä", "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog", "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67812/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68331", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1722883, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-24T15:13:23.284161Z", "last_modified_time": "2026-03-24T15:13:23.284178Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785214.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1722883/?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-03-24T15:13:23.113039Z", "last_modified_time": "2026-03-25T13:14:02.473190Z", "date_published": null, "start_time": "2026-06-08T07:00:00Z", "end_time": "2026-06-12T11: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": "Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.", "sv": "På kursen används mediekonst och scenkonst för att reflektera över medieläskunnighet och planera en föreställning som videofilmas.", "en": "During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/ED4DCD9E32DEC64648CC445411E403AC/Lavastettu_juttu", "sv": "http://www.caisa.fi/sv/evenemang/event/ED4DCD9E32DEC64648CC445411E403AC/En_iscensatt_affar", "en": "http://www.caisa.fi/en/events/event/ED4DCD9E32DEC64648CC445411E403AC/A_Staged_Affair" }, "description": { "fi": "<p>Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.</p><p>Mitä medialukutaito tarkoittaa? Mistä tietää onko jokin asian totta? Miltä voi tuntua, kun jokin paljastuu valheeksi? Millä tavoilla meidän käsityksiämme todellisuudesta rakennetaan?</p><p>Kurssin aikana suunnitellaan ja toteutetaan leikin kautta esitys, jossa kesäkurssilaiset pohtivat medialukutaitoa ja omaa suhdettaan esitettyyn todellisuuteen. Esitys suunnitellaan ja käsikirjoitetaan yhdessä. Harjoiteltu esitys kuvataan ja editoidaan valmiiksi videoteokseksi.</p><p>Tutustumme esityksen valmistamisen päävaiheisiin, joihin kuuluu lavastus, puvustus, kuvaaminen ja videoeditointi helpoilla editointiohjelmilla. Tutustumme näyttelemiseen ja esiintymiseen kehollisten harjoitteiden ja leikin avulla.</p><p>Kurssi on tarkoitettu 7–12-vuotiaille. Kurssi ei edellytä ennakko-osaamista. Valmiit videoteokset jaetaan osallistujille kurssin päätteeksi. Kuvattuja materiaaleja ei käytetä tai säilytetä kurssin jälkeen. Osallistuminen edellyttää kuvauslupaa edellä mainittuun tarkoitukseen.</p><p>Kurssiin ei sisälly ruokailua, joten lapsilla tulee olla mukana omat eväät ja juomapullo.</p><p>Ohjaajina toimivat taidekasvattajat Andra Sarenius ja Saban Ramadani.</p><p>Kielet: suomi ja englanti tarvittaessa.</p><p><b>Ilmoittautuminen</b><br>Ilmoittaudu mukaan hauskalle ja leikkisälle Caisan kesäkurssille! Ilmoittautuminen on sitova. Mahdolliset peruutukset mahdollisimman ajoissa. Vahvistamme ilmoittautumisen sähköpostitse.</p><p>Kurssikokonaisuus vk 24 8.6–12.6. ma–pe klo 10–14. <br>Ilmoittaudu tästä viikon 24 kesäkurssille (aukeaa pian)</p><p>Kysymykset ja tiedustelut: teemu.savikurki@hel.fi</p>", "sv": "<p>På kursen används mediekonst och scenkonst för att reflektera över medieläskunnighet och planera en föreställning som videofilmas.</p><p>Vad är medieläskunnighet? Hur vet man om något är sant? Hur kan det kännas när något avslöjas som en lögn? På vilket sätt är våra verklighetsuppfattningar konstruerade?</p><p>Under kursen planeras och genomförs en lekfull föreställning där kursdeltagarna reflekterar över medieläskunnighet och sin egen relation till den verklighet som presenteras. Föreställningen är planerad och skriven tillsammans. Den inövade föreställningen filmas och redigeras till ett färdigt videoverk.</p><p>Vi bekantar oss med de viktigaste skeden i att göra en föreställning, inklusive scenografi, kostymdesign, filmning och videoredigering med lättanvänd programvara före redigering. Vi lär oss om skådespeleri och uppträdande genom fysiska övningar och lek.</p><p>Kursen är avsedd för 7–12-åringar. Inga förkunskaper krävs för att delta i kursen. De färdiga videoverken kommer att delas ut till deltagarna i slutet av kursen. Det filmade materialet kommer inte att användas eller förvaras efter kursen. Deltagande kräver ett filmningstillstånd för ovanstående ändamål.</p><p>I kursen ingår inga måltider, så barnen bör ta med sig egen matsäck och en vattenflaska.</p><p>Projektet leds av konstpedagogerna Andra Sarenius och Saban Ramadani.</p><p>Språk: finska och engelska</p><p>Anmälan<br>Anmäl dig till Caisas roliga och lekfulla sommarkurs! Anmälan är bindande. Eventuella avbokningar ska göras så tidigt som möjligt.</p><p>Kurspaket v 24, 8.6–12.6. må–fre 10–14</p><p>Anmälan här: (Öppnas snart)</p>", "en": "<p>During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie.</p><p>What does media literacy mean? How do you know if something is true? How does it feel when something turns out to be a lie? In what ways are our perceptions of reality constructed?</p><p>During the course, a performance is planned and implemented through play. The summer course participants reflect on media literacy and their own relationship with represented reality. The performance is planned and scripted together. The rehearsed performance is filmed and edited into a finished video work.</p><p>We will get to know the main stages of making a show, which include staging, costuming, filming and video editing with easy editing programs. We get to know acting and performing through physical exercises and play.</p><p>The course is intended for 7–12-year-olds. The course does not require prior knowledge. The finished video works will be distributed to the participants at the end of the course. The described materials are not used or stored after the course. Participation requires a photography permit for the aforementioned purpose.</p><p>The course does not include meals, so children must bring their own snacks and a drinking bottle.</p><p>The instructors are art educators Andra Sarenius and Saban Ramadani.</p><p>Language: Finnish & English</p><p>Registration<br>Sign up for the fun and playful Caisa summer course! Registration is binding. Possible cancellations as early as possible. Two options to choose from:</p><p>Course 1, week 23, 1.6.–5.6. mon–fri 10 am–2 pm<br>REGISTER VIA THIS LINK: (link opens soon)</p>" }, "name": { "fi": "Lavastettu juttu – kesäkurssi 7–12-vuotiaille lapsille", "sv": "En iscensatt affär – sommarkurs för barn i åldern 7–12 år", "en": "A Staged Affair – summer course for children aged 7–12" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68331/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67718", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p11617/?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": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "15,30€ / 8,10€", "sv": "15,30€ / 8,10€", "en": "15,30€ / 8,10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1730104, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-25T09:14:00.942090Z", "last_modified_time": "2026-03-25T09:14:00.942104Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782582.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1730104/?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": "2026-03-25T09:14:00.843724Z", "last_modified_time": "2026-03-25T09:14:01.084796Z", "date_published": null, "start_time": "2026-05-23T14: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": "Kannelmäen Voimistelijoiden perinteiset kevätnäytökset nähdään jälleen Kanneltalolla.", "sv": "De traditionella våruppvisningarna av Kannelmäen Voimistelijat hålls återigen på Gamlasgården.", "en": "The traditional spring performances of Kannelmäen Voimistelijat will once again be held at Kanneltalo." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0F14FDD1E9AD06EDDFC549757E7CA14E/Kannelmaen_Voimistelijoiden_kevatnaytos_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0F14FDD1E9AD06EDDFC549757E7CA14E/Varuppvisning_av_Kannelmaen_Voimistelijat", "en": "http://www.kanneltalo.fi/en/events/event/0F14FDD1E9AD06EDDFC549757E7CA14E/Spring_Performance_of_Kannelmaen_Voimistelijat" }, "description": { "fi": "<p>Kannelmäen Voimistelijoiden perinteiset kevätnäytökset nähdään jälleen Kanneltalolla.</p><p>Tiedot näytöksissä esiintyvistä ryhmistä löytyvät Kannelmäen voimistelijoiden verkkosivuilta: https://www.kannelmaenvoimistelijat.fi/</p><p>Kesto: n. 1 h</p>", "sv": "<p>De traditionella våruppvisningarna av Kannelmäen Voimistelijat hålls återigen på Gamlasgården.</p><p>Information om de grupper som uppträder på uppvisningarna finns på Kannelmäen voimistelijats webbplats: https://www.kannelmaenvoimistelijat.fi/</p>", "en": "<p>The traditional spring performances of Kannelmäen Voimistelijat will once again be held at Kanneltalo.</p><p>Details about the performing groups can be found on the Kannelmäen voimistelijat website: https://www.kannelmaenvoimistelijat.fi/</p>" }, "name": { "fi": "Kannelmäen Voimistelijoiden kevätnäytös", "sv": "Våruppvisning av Kannelmäen Voimistelijat", "en": "Spring Performance of Kannelmäen Voimistelijat" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67718/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67966", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:734/?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:p11617/?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": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "15,30€ / 8,10€", "sv": "15,30€ / 8,10€", "en": "15,30€ / 8,10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1730103, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-25T09:14:00.472436Z", "last_modified_time": "2026-03-25T09:14:00.472454Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782581.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1730103/?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": "2026-03-25T09:14:00.328834Z", "last_modified_time": "2026-03-25T09:14:00.670182Z", "date_published": null, "start_time": "2026-05-23T12: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": "Kannelmäen Voimistelijoiden perinteiset kevätnäytökset nähdään jälleen Kanneltalolla.", "sv": "De traditionella våruppvisningarna av Kannelmäen Voimistelijat hålls återigen på Gamlasgården.", "en": "The traditional spring performances of Kannelmäen Voimistelijat will once again be held at Kanneltalo." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/686BE90F816B56D62FD1FEA39C8CE93E/Kannelmaen_Voimistelijoiden_kevatnaytos_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/686BE90F816B56D62FD1FEA39C8CE93E/Varuppvisning_av_Kannelmaen_Voimistelijat", "en": "http://www.kanneltalo.fi/en/events/event/686BE90F816B56D62FD1FEA39C8CE93E/Spring_Performance_of_Kannelmaen_Voimistelijat" }, "description": { "fi": "<p>Kannelmäen Voimistelijoiden perinteiset kevätnäytökset nähdään jälleen Kanneltalolla.</p><p>Tiedot näytöksissä esiintyvistä ryhmistä löytyvät Kannelmäen voimistelijoiden verkkosivuilta: https://www.kannelmaenvoimistelijat.fi/</p><p>Kesto: n. 1 h</p>", "sv": "<p>De traditionella våruppvisningarna av Kannelmäen Voimistelijat hålls återigen på Gamlasgården.</p><p>Information om de grupper som uppträder på uppvisningarna finns på Kannelmäen voimistelijats webbplats: https://www.kannelmaenvoimistelijat.fi/</p>", "en": "<p>The traditional spring performances of Kannelmäen Voimistelijat will once again be held at Kanneltalo.</p><p>Details about the performing groups can be found on the Kannelmäen voimistelijat website: https://www.kannelmaenvoimistelijat.fi/</p>" }, "name": { "fi": "Kannelmäen Voimistelijoiden kevätnäytös", "sv": "Våruppvisning av Kannelmäen Voimistelijat", "en": "Spring Performance of Kannelmäen Voimistelijat" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67966/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67928", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@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": 1494398, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-08T09:12:58.930989Z", "last_modified_time": "2026-01-08T09:12:58.931005Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780468.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494398/?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-08T09:12:58.836801Z", "last_modified_time": "2026-03-24T09:13:20.753431Z", "date_published": null, "start_time": "2026-03-30T07:15:00Z", "end_time": "2026-05-25T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa tanssin ja leikin maailmaan!", "en": "Welcome to the world of dance and play!" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/BA6CE2C6D6D62DD7FE76D4D7013CAF91/Tanssi_ja_leikki_", "sv": "http://www.caisa.fi/sv/evenemang/event/BA6CE2C6D6D62DD7FE76D4D7013CAF91/Dans_och_lek", "en": "http://www.caisa.fi/en/events/event/BA6CE2C6D6D62DD7FE76D4D7013CAF91/The_dance_and_play" }, "description": { "fi": "<p>Tervetuloa tanssin ja leikin maailmaan!</p><p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta. Työpaja on suunnattu 1–3- vuotiaille taaperoille ja heidän aikuisilleen. Taaperon tulisi osata kävellä.</p><p>Sopii osallistujille erilaisilla kyvyillä, myös erityistarpeet huomioiden. Vanhemmat sisarukset ovat tervetulleita mukaan.<br>Työpajassa lapset leikkivät, kommunikoivat ja ilmaisevat itseään liikkeen ja tanssin kautta. Liike toimii kaikille yhteisenä kielenä.</p><p>Työpajat on suunniteltu huomioimaan osallistujien yksilöllisiä tarpeita osana sosiaalista ryhmätilannetta. Tavoitteena on kehittää sosiaalisia suhteita ikätovereidensa kanssa, sekä löytää uusia vuorovaikutuksen tapoja oman aikuisen kanssa. Turvallisessa ja ystävällisessä ilmapiirissä syntyvät positiiviset kokemukset edesauttavat osallistujia oppimaan uusia taitoja.</p><p>Työpajan ohjaa Vera Lapitskaya, tanssitaiteilija ja inklusiivinen tanssiohjaaja.<br>Opetuskieli: suomi (englanti, venäjä, espanja tarvittaessa)</p><p><b>Huom! Työpajaa ei järjestetä 16.2., 6.4. eikä 20.4.</b></p><p><b>Osallistuminen </b><br>Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä lasta aikuisen seurassa.</p><p>Tiedustelut ja kysymykset: teemu.savikurki@hel.fi</p>", "en": "<p>Welcome to the world of dance and play!</p><p>The dance and play workshops introduce children to the world of dance through movement, music and play. The workshop is aimed at toddlers aged 1–3 and their adults. Toddler should be able to walk.</p><p>Suitable for participants with different abilities, including special needs. Older siblings are welcome to join.<br>In the workshop, children play, communicate and express themselves through movement and dance. Movement acts as a common language for everyone.</p><p>The workshops are designed to take into account the individual needs of the participants as part of a social group situation. The goal is to develop social relationships with their peers, and to find new ways of interacting with their own adult. The positive experiences created in a safe and friendly atmosphere help participants learn new skills.</p><p>Workshop is directed by Vera Lapitskaya, dance artist and inclusive dance director.<br>Language: Finnish (English, Russian, Spanish if necessary)</p><p><b>Please note! The workshop will not be held on 16.2., 6.4. or 20.4.</b></p><p><b>Participation</b> <br>You can participate in the workshop whenever it suits you, all times or just some. Choose the workshop that suits you and arrive on time. No pre-registration, places will be filled in the order they arrive. The first 12 children with an adult can join.</p><p>Questions and inquiries: teemu.savikurki@hel.fi</p>" }, "name": { "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän aikuisilleen", "sv": "Dans och lek – Verkstaden för småbarn", "en": "The dance and play – Workshop for toddlers and their parents" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67928/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67926", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@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": 1494397, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-08T09:12:58.584975Z", "last_modified_time": "2026-01-08T09:12:58.584989Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780466.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494397/?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-08T09:12:58.475770Z", "last_modified_time": "2026-03-24T09:13:20.577694Z", "date_published": null, "start_time": "2026-03-30T06:15:00Z", "end_time": "2026-05-25T07:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa tanssin ja leikin maailmaan!", "en": "Welcome to the world of dance and play!" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/955001E3E341352D22B3996DDBEB66B6/Tanssi_ja_leikki", "sv": "http://www.caisa.fi/sv/evenemang/event/955001E3E341352D22B3996DDBEB66B6/Dans_och_lek", "en": "http://www.caisa.fi/en/events/event/955001E3E341352D22B3996DDBEB66B6/The_dance_and_play" }, "description": { "fi": "<p>Tervetuloa tanssin ja leikin maailmaan!</p><p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta. Työpaja on suunnattu 1–3- vuotiaille taaperoille ja heidän aikuisilleen. Taaperon tulisi osata kävellä.</p><p>Sopii osallistujille erilaisilla kyvyillä, myös erityistarpeet huomioiden. Vanhemmat sisarukset ovat tervetulleita mukaan.</p><p>Työpajassa lapset leikkivät, kommunikoivat ja ilmaisevat itseään liikkeen ja tanssin kautta. Liike toimii kaikille yhteisenä kielenä.</p><p>Työpajat on suunniteltu huomioimaan osallistujien yksilöllisiä tarpeita osana sosiaalista ryhmätilannetta. Tavoitteena on kehittää sosiaalisia suhteita ikätovereidensa kanssa, sekä löytää uusia vuorovaikutuksen tapoja oman aikuisen kanssa. Turvallisessa ja ystävällisessä ilmapiirissä syntyvät positiiviset kokemukset edesauttavat osallistujia oppimaan uusia taitoja.</p><p>Työpajan ohjaa Vera Lapitskaya, tanssitaiteilija ja inklusiivinen tanssiohjaaja.<br>Opetuskieli: suomi (englanti, venäjä, espanja tarvittaessa)</p><p><b>Huom! Työpajaa ei järjestetä 16.2., 6.4. eikä 20.4.</b></p><p><b>Osallistuminen </b><br>Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä lasta aikuisen seurassa.</p><p>Tiedustelut ja kysymykset: teemu.savikurki@hel.fi</p>", "en": "<p>Welcome to the world of dance and play!</p><p>The dance and play workshops introduce children to the world of dance through movement, music and play. The workshop is aimed at toddlers aged 1–3 and their adults. Toddler should be able to walk.</p><p>Suitable for participants with different abilities, including special needs. Older siblings are welcome to join.</p><p>In the workshop, children play, communicate and express themselves through movement and dance. Movement acts as a common language for everyone.</p><p>The workshops are designed to take into account the individual needs of the participants as part of a social group situation. The goal is to develop social relationships with their peers, and to find new ways of interacting with their own adult. The positive experiences created in a safe and friendly atmosphere help participants learn new skills.</p><p>Workshop is directed by Vera Lapitskaya, dance artist and inclusive dance director.<br>Language: Finnish (English, Russian, Spanish if necessary)</p><p><b>Please note! The workshop will not be held on 16.2., 6.4. or 20.4.</b></p><p><b>Participation </b><br>You can participate in the workshop whenever it suits you, all times or just some. Choose the workshop that suits you and arrive on time. No pre-registration, places will be filled in the order they arrive. The first 12 children with an adult can join.</p><p>Questions and inquiries: teemu.savikurki@hel.fi</p>" }, "name": { "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän aikuisilleen", "sv": "Dans och lek – Verkstaden för småbarn", "en": "The dance and play – Workshop for toddlers and their parents" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67926/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68136", "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:105/?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:732/?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: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": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494913, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-20T09:13:04.016142Z", "last_modified_time": "2026-02-20T09:13:04.016160Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781732.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494913/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-02-20T09:13:03.870202Z", "last_modified_time": "2026-03-20T10:12:57.443876Z", "date_published": null, "start_time": "2026-04-11T07:00:00Z", "end_time": "2026-04-11T11: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": "Vaippakansan karnevaali eli Vaippis, vauvojen ja taaperoiden oma festari, saapuu jälleen!", "sv": "Blöjfolkets karneval, bebisars och småbarns egen festival, är tillbaka!", "en": "The carnival for those in nappies, Vaippakansan karnevaali or Vaippis, a dedicated festival for babies and toddlers, is back!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1FA6F562D9A491365A611574CBF23B05/Vaippakansan_karnevaali", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1FA6F562D9A491365A611574CBF23B05/Blojfolkets_karneval", "en": "http://www.malmitalo.fi/en/events/event/1FA6F562D9A491365A611574CBF23B05/Carnival_for_those_in_nappies" }, "description": { "fi": "<p>Vaippakansan karnevaali eli Vaippis, vauvojen ja taaperoiden oma festari, saapuu jälleen!</p><p>Malmitalo kannustaa kurottelemaan kohti kulttuuria talon täyttyessä taaperoikäisille suunnatuista esityksistä, työpajoista ja muusta ohjelmasta. <br>Vauvakinoa lukuun ottamatta ohjelma maksutonta. Osaan ennakkoilmoittautuminen tai maksuttomat pääsyliput paikan päältä.<br>Huom! Lastenvaunut yms. tulee jättää talon edustalla sijaitsevaan vaunuparkkiin. Varaathan mukaasi kantovälineen tarvittaessa.</p><p>Esitykset<br>10.30 ja 12.30 Vauvavaltameri – Babyocean, Malmisali, maksuttomat liput<br>11.15. ja 13.15 Puistopartio, aula, vapaa pääsy<br>12 Vauvakino: Rental Family, Pieni sali, liput 9€ (sis. 1 aik. ja 1 vauva)</p><p>Muu ohjelma, vapaa pääsy<br>10–13.15 Vauvadisko, 2. krs kokoushuone 2<br>10–14 Sademetsän salaisuudet -näyttely + satu- ja satuliikuntatuokiot, Galleria<br>10–14 Kukkaniitty ja pörriäiset! Taidepaja vaippakansalle, 2. krs parvi</p><p>Työpajat, ennakkoilmoittautuminen<br>10 ja 11 Vauvojen luontokylpy, kirjaston monitoimitila<br>10–13 Baby Spa -tuokiot ja elämystila, 2. krs kokoushuone 3<br>10, 11 ja 13 Vauva- ja taapero muskarit, 2. krs muskariluokka<br>10.15, 11.30 ja 12.30 Vauvojen värikylpy, 2. krs. kuvanveistoluokka <br>10.30 ja 11.30 Vauvasirkustyöpaja, Pieni sali</p><p>Vauvavaltameri – Babyocean<br>Vauvavaltameri on tanssiteos ja aistielämys vauvoille seuralaisineen.<br>Sympaattinen matka elämän alkulähteille, alkumereen, jossa eoseeni-ajan alkueliöt kelluvat, kulkevat ja muuttavat muotoaan. Vauvavaltameressä voi ihmetellä, eläytyä, osallistua tai vain rentoutua virran mukana.<br>Ikäsuositus: 0–18 kk<br>Kesto: n. 40 min</p><p>Puistopartio-konsertti<br>Puistopartion mukaansa tempaavissa lauluissa seikkailevat muun muassa kaivurit, kippiautot ja hälytysajoneuvot. Tule mukaan laulamaan ja liikkumaan työkonetanssien tahtiin!<br>Konsertin jälkeen on mahdollista tavata Puistopartio ja saada oma fanikortti mukaan.<br>Konsertin kesto: n. 30 min<br>Vapaa pääsy</p><p>Vauvakino: Rental Family (S)<br>Rentoudu elokuvan parissa yhdessä vauvasi kanssa. Vauvakinonäytöksessä äänet ovat normaalia hiljemmalla ja pidämme yleisövalot himmeällä koko elokuvan ajan. Saliin voit ottaa mukaan kantokopan, salissa on myös tyynyjä ja patjoja, joilla voi oleilla, sekä mikro lasten ruokien yms. lämmittämistä varten.<br>Lue lisää elokuvasta lipunmyyntisivulta<br>Ikäraja: Sallittu<br>Kesto: 111 min<br>Liput: 9 € / lapsi + aikuinen –pari</p><p>Vauvadisko<br>Dj Elviksen Äiti soittaa lasten suosikkeja ja toiveita Malmitalon toisessa kerroksessa. Tule tanssimaan ja pitämään hauskaa koko perheen voimin!</p><p>Sademetsän salaisuudet – näyttely ja satu- ja satuliikuntatuokiot<br>Lasten osallistava elämysnäyttely kutsuu seikkailuun sademetsän sydämeen. Sukella jännittävälle satumatkalle osana tutkimusmatkailijoiden retkikuntaa.</p><p>Kukkaniitty ja pörriäiset! - luonnonväri taidepaja vaippakansalle <br>Maalataan luontoaiheisia töitä luonnonväreillä. Haistellaan ja ehkä jopa maistellaan värien hehkua!</p><p>Vauvojen luontokylpy<br>Kesto n. 40 min. Ikäsuositus 6–18kk. Ennakkoilmoittautuminen: suvi.vehmas@hel.fi</p><p>Baby Spa -aistitila ja ohjatut leikkituokiot<br>Spa-käynti sisältää ohjatun leikkituokion, joka johdattaa suloisiin äänimaisemiin, tilan tutkimiseen ja lempeisiin vaahtoaaltoihin! <br>Sopii alle 1,5v. Kesto noin 30 min. Aistitilassa ei käytetä vettä. <br>Ennakkoilmoittautuminen: hupsansaary@gmail.com. Kerro toivomasi kellonaika, seurueesi koko sekä lapsen ikä.</p><p><b>Seuraaviin työpajoihin ennakkoilmoittautumiset anna.antikainen@hel.fi. Kerro ilmoittautuessasi toivomasi työpajan kellonaika ja lapsen ikä. Suosittelemme varaamaan paikat ikäryhmittäin, mikäli mahdollista.</b></p><p>Vauvojen värikylpy<br>Tule mukaan kylpemään väreissä ja opeta vauvallesi lisää tapoja ilmaista itseään luovasti ja leikkisästi! Ikäryhmät: 12–18kk 10.15, 6–12kk 11.30 ja 18–24kk 12.30</p><p>Vauva- ja taaperomuskarit<br>Tervetuloa laulamaan, soittamaan ja liikkumaan iloisiin perhemuskareihin. Ikäryhmät: 2-3v klo 10, 1-2v klo 11, 0-1 v klo 13.</p><p>Vauvasirkustyöpaja<br>Vauvasirkuksessa vahvistamme vanhemman ja lapsen välistä suhdetta leikin ja ilon kautta. Tutustumme pariakrobatiaan ja sirkusvälineisiin. Ikäsuositus 6–18kk.</p>", "sv": "<p>Blöjfolkets karneval, bebisars och småbarns egen festival, är tillbaka!</p><p>Malms kulturhus uppmuntrar barn att sträcka sig mot kulturen när huset fylls med föreställningar, verkstäder och annat program riktade till bebisar och småbarn.</p><p>I entrén i Malms kulturhus utlovas barnmusikorkester Puistopartios avgiftsfria konserter. I deras medryckande sånger är bland annat grävmaskiner, kippbilar och utryckningsfordon ute på äventyr. Kom med och sjung samt rör på dig till takten av arbetsmaskinsdanser!</p><p>Ta med dig ditt barn och rulla barnvagnen till Malms kulturhus i april!</p><p>En del av programmet är belagt med en inträdesavgift. Det fullständiga programmet publiceras i mars.</p><p>Åldersrekommendation: 0–3 år med familj.</p>", "en": "<p>The carnival for those in nappies, Vaippakansan karnevaali or Vaippis, a dedicated festival for babies and toddlers, is back!</p><p>Cultural Centre Malmitalo encourages children to reach out for culture as the house fills up with performances, workshops and other activities for babies and toddlers. <br>The Malmitalo lobby will host free concerts by the children's music group Puistopartio. Their captivating songs tell stories about the adventures of excavators, dump trucks, emergency vehicles and many more of the like. Come and sing and move with us in the rhythm of dancing work machines!<br>So bring your child and roll your stroller to Malmitalo in April! <br>Some of the programme is subject to an admission fee. The full programme will be published in March.<br>Recommended ages: 0–3 yrs. and their families.</p>" }, "name": { "fi": "Vaippakansan karnevaali", "sv": "Blöjfolkets karneval", "en": "Carnival for those in nappies" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68136/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68050", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494680, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-29T12:13:02.348015Z", "last_modified_time": "2026-01-29T12:13:02.348030Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772068.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494680/?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-29T12:13:02.181459Z", "last_modified_time": "2026-03-20T01:14:28.209137Z", "date_published": null, "start_time": "2026-06-01T07:00:00Z", "end_time": "2026-06-05T11: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": "Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.", "sv": "På kursen används mediekonst och scenkonst för att reflektera över medieläskunnighet och planera en föreställning som videofilmas.", "en": "During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/74B7B0631FE3FC6CCE6DF3521F580B00/Lavastettu_juttu", "sv": "http://www.caisa.fi/sv/evenemang/event/74B7B0631FE3FC6CCE6DF3521F580B00/En_iscensatt_affar_", "en": "http://www.caisa.fi/en/events/event/74B7B0631FE3FC6CCE6DF3521F580B00/A_Staged_Affair" }, "description": { "fi": "<p>Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.</p><p>Mitä medialukutaito tarkoittaa? Mistä tietää onko jokin asian totta? Miltä voi tuntua, kun jokin paljastuu valheeksi? Millä tavoilla meidän käsityksiämme todellisuudesta rakennetaan? <br>Kurssin aikana suunnitellaan ja toteutetaan leikin kautta esitys, jossa kesäkurssilaiset pohtivat medialukutaitoa ja omaa suhdettaan esitettyyn todellisuuteen. Esitys suunnitellaan ja käsikirjoitetaan yhdessä. Harjoiteltu esitys kuvataan ja editoidaan valmiiksi videoteokseksi. <br> <br>Tutustumme esityksen valmistamisen päävaiheisiin, joihin kuuluu lavastus, puvustus, kuvaaminen ja videoeditointi helpoilla editointiohjelmilla. Tutustumme näyttelemiseen ja esiintymiseen kehollisten harjoitteiden ja leikin avulla. <br> <br>Kurssi on tarkoitettu 7–12-vuotiaille. Kurssi ei edellytä ennakko-osaamista. Valmiit videoteokset jaetaan osallistujille kurssin päätteeksi. Kuvattuja materiaaleja ei käytetä tai säilytetä kurssin jälkeen. Osallistuminen edellyttää kuvauslupaa edellä mainittuun tarkoitukseen. <br> <br>Kurssiin ei sisälly ruokailua, joten lapsilla tulee olla mukana omat eväät ja juomapullo. <br> <br>Ohjaajina toimivat taidekasvattajat Andra Sarenius ja Saban Ramadani.</p><p>Kielet: suomi ja englanti tarvittaessa. <br> <br>Ilmoittautuminen <br>Ilmoittaudu mukaan hauskalle ja leikkisälle Caisan kesäkurssille! Ilmoittautuminen on sitova. Mahdolliset peruutukset mahdollisimman ajoissa. Vahvistamme ilmoittautumisen sähköpostitse.<br> <br>Kurssikokonaisuus vk 23, 1.6.–5.6. ma–pe klo 10–14</p><p>Kysymykset ja tiedustelut: teemu.savikurki@hel.fi</p>", "sv": "<p>På kursen används mediekonst och scenkonst för att reflektera över medieläskunnighet och planera en föreställning som videofilmas.</p><p>Vad är medieläskunnighet? Hur vet man om något är sant? Hur kan det kännas när något avslöjas som en lögn? På vilket sätt är våra verklighetsuppfattningar konstruerade?</p><p>Under kursen planeras och genomförs en lekfull föreställning där kursdeltagarna reflekterar över medieläskunnighet och sin egen relation till den verklighet som presenteras. Föreställningen är planerad och skriven tillsammans. Den inövade föreställningen filmas och redigeras till ett färdigt videoverk. <br> <br>Vi bekantar oss med de viktigaste skeden i att göra en föreställning, inklusive scenografi, kostymdesign, filmning och videoredigering med lättanvänd programvara före redigering. Vi lär oss om skådespeleri och uppträdande genom fysiska övningar och lek. <br> <br>Kursen är avsedd för 7–12-åringar. Inga förkunskaper krävs för att delta i kursen. De färdiga videoverken kommer att delas ut till deltagarna i slutet av kursen. Det filmade materialet kommer inte att användas eller förvaras efter kursen. Deltagande kräver ett filmningstillstånd för ovanstående ändamål. <br> <br>I kursen ingår inga måltider, så barnen bör ta med sig egen matsäck och en vattenflaska. <br> <br>Projektet leds av konstpedagogerna Andra Sarenius och Saban Ramadani.</p><p>Språk: finska och engelska<br> <br>Anmälan <br>Anmäl dig till Caisas roliga och lekfulla sommarkurs! Anmälan är bindande. Eventuella avbokningar ska göras så tidigt som möjligt. <br> <br>Kurspaket v 23, 1.6–5.6. må–fre 10–14 <br>ANMÄL DIG VIA DENNA LÄNK: https://forms.office.com/e/dpT7c2FxDm</p>", "en": "<p>During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie.</p><p>What does media literacy mean? How do you know if something is true? How does it feel when something turns out to be a lie? In what ways are our perceptions of reality constructed?<br> <br>During the course, a performance is planned and implemented through play. The summer course participants reflect on media literacy and their own relationship with represented reality. The performance is planned and scripted together. The rehearsed performance is filmed and edited into a finished video work.<br> <br>We will get to know the main stages of making a show, which include staging, costuming, filming and video editing with easy editing programs. We get to know acting and performing through physical exercises and play.<br> <br>The course is intended for 7–12-year-olds. The course does not require prior knowledge. The finished video works will be distributed to the participants at the end of the course. The described materials are not used or stored after the course. Participation requires a photography permit for the aforementioned purpose.</p><p>The course does not include meals, so children must bring their own snacks and a drinking bottle.</p><p>The instructors are art educators Andra Sarenius and Saban Ramadani.</p><p>Language: Finnish & English<br> <br>Registration <br>Sign up for the fun and playful Caisa summer course! Registration is binding. Possible cancellations as early as possible. Two options to choose from:<br> <br>Course 1, week 23, 1.6.–5.6. mon–fri 10 am–2 pm<br>REGISTER VIA THIS LINK: https://forms.office.com/e/dpT7c2FxDm</p>" }, "name": { "fi": "Lavastettu juttu – kesäkurssi 7–12-vuotiaille lapsille (TÄYNNÄ)", "sv": "En iscensatt affär – sommarkurs för barn i åldern 7–12 år (FULL)", "en": "A Staged Affair – summer course for children aged 7–12 (FULL)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68050/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68086", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494807, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-09T12:13:57.862992Z", "last_modified_time": "2026-02-09T12:13:57.863020Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784534.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494807/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-02-09T12:13:57.752287Z", "last_modified_time": "2026-03-20T01:14:25.659994Z", "date_published": null, "start_time": "2026-05-26T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C2EFCC423C4BA2EF775978EAFEBA745F/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C2EFCC423C4BA2EF775978EAFEBA745F/Skogssagostunder_med_Jussi_Ollila_", "en": "http://www.vuotalo.fi/en/events/event/C2EFCC423C4BA2EF775978EAFEBA745F/Jussi_Ollila_s_forest_fairy_tales" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Satu on aina uusi, koska se syntyy vuorovaikutuksessa lapsiyleisön kanssa. Metsäsatutuokio sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille <br>Kesto: n. 45 min <br>Kieli: suomi <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille ennakkoilmoittautumiset osoitteessa www.kultus.hel.fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen. <br>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar <br>Längd: ca 45 min. <br>Språk: finska <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på www.kultus.hel.fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip. <br>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds <br>Duration: approx. 45 min <br>Language: Finnish <br>Free of charge <br>Intended for day-care groups and families. Advance registration for groups at www.kultus.hel.fi</p>" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot", "sv": "Skogssagostunder med Jussi Ollila", "en": "Jussi Ollila's forest fairy tales" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68086/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68085", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494806, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-09T12:13:57.459304Z", "last_modified_time": "2026-02-09T12:13:57.459320Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784532.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494806/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-02-09T12:13:57.370080Z", "last_modified_time": "2026-03-20T01:14:25.357028Z", "date_published": null, "start_time": "2026-05-26T06:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/538C3F9F87B1DE6CB70703DC1E6B940A/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/538C3F9F87B1DE6CB70703DC1E6B940A/Skogssagostunder_med_Jussi_Ollila_", "en": "http://www.vuotalo.fi/en/events/event/538C3F9F87B1DE6CB70703DC1E6B940A/Jussi_Ollila_s_forest_fairy_tales_" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Satu on aina uusi, koska se syntyy vuorovaikutuksessa lapsiyleisön kanssa. Metsäsatutuokio sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille <br>Kesto: n. 45 min <br>Kieli: suomi <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille ennakkoilmoittautumiset osoitteessa www.kultus.hel.fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen. <br>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar <br>Längd: ca 45 min. <br>Språk: finska <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på www.kultus.hel.fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip. <br>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds <br>Duration: approx. 45 min <br>Language: Finnish <br>Free of charge <br>Intended for day-care groups and families. Advance registration for groups at www.kultus.hel.fi</p>" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot", "sv": "Skogssagostunder med Jussi Ollila", "en": "Jussi Ollila's forest fairy tales" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68085/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }