Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=3
{ "meta": { "count": 27757, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=4", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=2" }, "data": [ { "id": "kulke:68276", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1682699, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-20T11:13:51.998638Z", "last_modified_time": "2026-03-20T11:13:51.998653Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785519.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1682699/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-20T11:13:51.880217Z", "last_modified_time": "2026-03-20T11:13:52.163593Z", "date_published": null, "start_time": "2026-04-11T08:00:00Z", "end_time": "2026-04-11T13: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F3ED97C6E1AC9EC811EA5B59E00CBC94/Kudontakioski", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F3ED97C6E1AC9EC811EA5B59E00CBC94/VavKiosk_", "en": "http://www.vuotalo.fi/en/events/event/F3ED97C6E1AC9EC811EA5B59E00CBC94/Weaving_Kiosk" }, "provider": null, "short_description": { "fi": "Tule kokeilemaan kudontaa kangaspuilla – olipa sinulla aiempaa kokemusta tai ei!", "sv": "Kom och prova på vävning i vävstolarna – oavsett om du har tidigare erfarenhet eller inte!", "en": "Come and try weaving on the looms – whether you have prior experience or not!" }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Tule kokeilemaan kudontaa kangaspuilla – olipa sinulla aiempaa kokemusta tai ei!</p><p>Tervetuloa Kudontakioskiin!</p><p>Tule kokeilemaan kudontaa kangaspuilla – olipa sinulla aiempaa kokemusta tai ei!</p><p>Kudonta on käsityötaito, joka yhdistää kulttuureja ja ihmisiä ympäri maailmaa. Kudontakioski on kaikille avoin ja tilapäinen julkinen tila, jossa kudontatyökalut ja -materiaalit ovat helposti saatavilla.</p><p>Voit viihtyä niin pitkään kuin haluat ja nauttia käsillä tekemisen ilosta. Kangaspuut ovat kaikkien käytössä saapumisjärjestyksen mukaan.</p><p>Paikka: Vuotalon aula</p><p>Ajankohdat:<br>Pe 10.4. klo 12–17<br>La 11.4. klo 11–16</p><p>Lisätietoa: rosatolnovclausen.com/Weaving-Kiosk</p><p>Kudontakioski on Suomessa asuvan tanskalaisen tekstiilitaiteilijan, Rosa Tolnov Clausenin, eri puolilla maailmaa kiertänyt projekti, jonka avulla hän tutkii kudontatiloja ja kudonnan tulevaisuutta.</p><p>Lämpimästi tervetuloa!</p>", "sv": "<p>Kom och prova på vävning i vävstolarna – oavsett om du har tidigare erfarenhet eller inte!</p><p>Handvävning är ett hantverk som förenar kulturer och människor över hela världen. Vävkiosken är en öppen och tillfällig offentlig plats där vävredskap och material är lättillgängliga för alla.</p><p>Du kan stanna så länge du vill och njuta av glädjen i att arbeta med händerna. Vävstolarna används i turordning enligt principen först till kvarn.</p><p>Vävkiosken är ett projekt av den danska textilkonstnären Rosa Tolnov Clausen, bosatt i Finland. Den har rest runt i världen som ett sätt att utforska vävplatser och vävningens framtid.</p><p>Plats: Nordhusets aula</p>", "en": "<p>Come and try weaving on the looms – whether you have prior experience or not!</p><p>Welcome to the Weaving Kiosk!</p><p>Come and try weaving on the looms – whether you have prior experience or not!</p><p>Hand-weaving is a craft that connects cultures and people around the world. The Weaving Kiosk is an open and temporary public space where weaving tools and materials are easily available to everyone.</p><p>You can stay as long as you wish and enjoy the joy of working with your hands. The looms are available on a first-come, first-served basis.</p><p>Place: Vuotalo lobby</p><p>Dates: <br>Fri 10.4. 12–17 <br>Sat 11.4. 11–16</p><p>More information: rosatolnovclausen.com/Weaving-Kiosk</p><p>The Weaving Kiosk is a project by Danish textile artist Rosa Tolnov Clausen, based in Finland. It has travelled across the world as a way of exploring weaving spaces and the future of weaving.</p><p>We look forward to welcoming you!</p>" }, "name": { "fi": "Kudontakioski", "sv": "VävKiosk", "en": "Weaving Kiosk" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68276/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68275", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1682293, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-20T10:12:56.733213Z", "last_modified_time": "2026-03-20T10:12:56.733229Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785520.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1682293/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-20T10:12:56.600141Z", "last_modified_time": "2026-03-20T10:12:56.868257Z", "date_published": null, "start_time": "2026-04-10T09:00:00Z", "end_time": "2026-04-10T14: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3EEA7C6D500A60F94E0AA97EB8BF5790/Kudontakioski", "sv": "http://www.vuotalo.fi/sv/evenemang/event/3EEA7C6D500A60F94E0AA97EB8BF5790/VavKiosk_", "en": "http://www.vuotalo.fi/en/events/event/3EEA7C6D500A60F94E0AA97EB8BF5790/Weaving_Kiosk" }, "provider": null, "short_description": { "fi": "Tule kokeilemaan kudontaa kangaspuilla – olipa sinulla aiempaa kokemusta tai ei!", "sv": "Kom och prova på vävning i vävstolarna – oavsett om du har tidigare erfarenhet eller inte!", "en": "Come and try weaving on the looms – whether you have prior experience or not!" }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Tule kokeilemaan kudontaa kangaspuilla – olipa sinulla aiempaa kokemusta tai ei!</p><p>Tervetuloa Kudontakioskiin!</p><p>Tule kokeilemaan kudontaa kangaspuilla – olipa sinulla aiempaa kokemusta tai ei!</p><p>Kudonta on käsityötaito, joka yhdistää kulttuureja ja ihmisiä ympäri maailmaa. Kudontakioski on kaikille avoin ja tilapäinen julkinen tila, jossa kudontatyökalut ja -materiaalit ovat helposti saatavilla.</p><p>Voit viihtyä niin pitkään kuin haluat ja nauttia käsillä tekemisen ilosta. Kangaspuut ovat kaikkien käytössä saapumisjärjestyksen mukaan.</p><p>Paikka: Vuotalon aula</p><p>Ajankohdat:<br>Pe 10.4. klo 12–17<br>La 11.4. klo 11–16</p><p>Lisätietoa: rosatolnovclausen.com/Weaving-Kiosk</p><p>Kudontakioski on Suomessa asuvan tanskalaisen tekstiilitaiteilijan, Rosa Tolnov Clausenin, eri puolilla maailmaa kiertänyt projekti, jonka avulla hän tutkii kudontatiloja ja kudonnan tulevaisuutta.</p><p>Lämpimästi tervetuloa!</p>", "sv": "<p>Kom och prova på vävning i vävstolarna – oavsett om du har tidigare erfarenhet eller inte!</p><p>Handvävning är ett hantverk som förenar kulturer och människor över hela världen. Vävkiosken är en öppen och tillfällig offentlig plats där vävredskap och material är lättillgängliga för alla.</p><p>Du kan stanna så länge du vill och njuta av glädjen i att arbeta med händerna. Vävstolarna används i turordning enligt principen först till kvarn.</p><p>Vävkiosken är ett projekt av den danska textilkonstnären Rosa Tolnov Clausen, bosatt i Finland. Den har rest runt i världen som ett sätt att utforska vävplatser och vävningens framtid.</p><p>Plats: Nordhusets aula</p>", "en": "<p>Come and try weaving on the looms – whether you have prior experience or not!</p><p>Welcome to the Weaving Kiosk!</p><p>Come and try weaving on the looms – whether you have prior experience or not!</p><p>Hand-weaving is a craft that connects cultures and people around the world. The Weaving Kiosk is an open and temporary public space where weaving tools and materials are easily available to everyone.</p><p>You can stay as long as you wish and enjoy the joy of working with your hands. The looms are available on a first-come, first-served basis.</p><p>Place: Vuotalo lobby</p><p>Dates: <br>Fri 10.4. 12–17 <br>Sat 11.4. 11–16</p><p>More information: rosatolnovclausen.com/Weaving-Kiosk</p><p>The Weaving Kiosk is a project by Danish textile artist Rosa Tolnov Clausen, based in Finland. It has travelled across the world as a way of exploring weaving spaces and the future of weaving.</p><p>We look forward to welcoming you!</p>" }, "name": { "fi": "Kudontakioski", "sv": "VävKiosk", "en": "Weaving Kiosk" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68275/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68118", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494887, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-17T13:13:40.748552Z", "last_modified_time": "2026-02-17T13:13:40.748570Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780771.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494887/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-17T13:13:40.625436Z", "last_modified_time": "2026-03-20T01:14:30.650399Z", "date_published": null, "start_time": "2026-06-13", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/83EFA0506392238403F7D5E7E49CA6F6/Stoa_Hip_Hop_Saturday_", "sv": "http://www.stoa.fi/sv/evenemang/event/83EFA0506392238403F7D5E7E49CA6F6/Stoa_Hip_Hop_Saturday_", "en": "http://www.stoa.fi/en/events/event/83EFA0506392238403F7D5E7E49CA6F6/Stoa_Hip_Hop_Saturday_" }, "provider": null, "short_description": { "fi": "Stoan sisätilat ja aukio täyttyvät katukulttuurilla lauantaina 13.6!", "sv": "Stoas lokaler och Stoaplatsen fylls av gatukultur lördagen den 13 juni!", "en": "Stoa's interior spaces and Stoa square will be filled with street culture on Saturday 13 June!" }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Stoan sisätilat ja aukio täyttyvät katukulttuurilla lauantaina 13.6!</p><p>Stoa Hip Hop Saturday on nuorille ja nuorille aikuisille suunnattu katukulttuuritapahtuma. Tapahtumassa voit sukeltaa Hip Hopin saloihin, oppia uutta, hikoilla, nauttia muiden tekemisestä, fiilistellä hyvää meininkiä tai tehdä katumuotilöytöjä.</p><p>Tapahtuma toteutetaan yhteistyössä useiden Hip Hop- ja katukulttuuritoimijoiden kanssa. Mukana mm. musiikkia, tanssia, graffitia ja muotia.</p><p>Ohjelma tarkentuu myöhemmin.</p><p>Toteutetaan yhteistyössä Stoan palveluiden kesken.</p>", "sv": "<p>Stoas lokaler och Stoaplatsen fylls av gatukultur lördagen den 13 juni!</p><p>Stoa Hip Hop Saturday är ett gatukulturevenemang för unga och unga vuxna. Under evenemanget kan du dyka ner i hiphopens hemligheter, lära dig nya saker, svettas, njuta av det som andra gör, ta del av den goda stämningen och göra gatumodefynd.</p><p>Evenemanget ordnas i samarbete med flera aktörer inom hiphop och gatukultur. Det blir bland annat musik, dans, graffiti och mode.</p><p>Programmet preciseras senare.</p><p>Genomförs som ett samarbete mellan Stoas tjänster.</p>", "en": "<p>Stoa's interior spaces and Stoa square will be filled with street culture on Saturday 13 June!</p><p>Stoa Hip Hop Saturday is a street culture event for young people and young adults. At the event, you can delve into the world of hip hop, learn something new, sweat, enjoy what others are doing, savour the atmosphere or discover street fashion pieces.</p><p>The event is organised in collaboration with several hip hop and street culture operators. The event will feature music, dance, graffiti and fashion.</p><p>The programme will be specified later.</p><p>Implemented in collaboration by Stoa services.</p>" }, "name": { "fi": "Stoa Hip Hop Saturday", "sv": "Stoa Hip Hop Saturday", "en": "Stoa Hip Hop Saturday" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68118/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68271", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1674197, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T15:14:02.902267Z", "last_modified_time": "2026-03-19T15:14:02.902283Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786140.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1674197/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T15:14:02.758211Z", "last_modified_time": "2026-03-20T01:14:30.535009Z", "date_published": null, "start_time": "2026-06-12T11:30:00Z", "end_time": "2026-06-12T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/01BA3D940BFC1583059744C211303906/Helsinki-paiva_Malmilla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/01BA3D940BFC1583059744C211303906/Helsinki-paiva", "en": "http://www.malmitalo.fi/en/events/event/01BA3D940BFC1583059744C211303906/Helsinki-paiva" }, "provider": null, "short_description": { "fi": "Rakkaan kaupunkimme syntymäpäivänä tapahtumakesä tarjoaa kävijöille taas runsaan ohjelmapäivän täynnä tekemistä. Luvassa myös kaksi keikkaa, joissa mukana palkittuja artisteja maan huipulta." }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Rakkaan kaupunkimme syntymäpäivänä tapahtumakesä tarjoaa kävijöille taas runsaan ohjelmapäivän täynnä tekemistä. Luvassa myös kaksi keikkaa, joissa mukana palkittuja artisteja maan huipulta.</p><p>Tarkempi aikataulu ja ohjelma julkaistaan toukokuussa.</p><p>Tapahtumiin on vapaa pääsy.</p>" }, "name": { "fi": "Helsinki-päivä Malmilla – Malmin tapahtumakesä 2026", "sv": "Helsinki-päivä – Malmin tapahtumakesä 2026", "en": "Helsinki-päivä – Malmin tapahtumakesä 2026" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68271/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68183", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1543043, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-06T12:13:13.817968Z", "last_modified_time": "2026-03-06T12:13:13.817981Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781901.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1543043/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-06T12:13:13.702077Z", "last_modified_time": "2026-03-20T01:14:30.432714Z", "date_published": null, "start_time": "2026-06-12", "end_time": "2026-08-09", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7266C7DE6D0537729934979626C5B164/Mila_Milax_Soul_of_Helsinki_-_Study_of_soul_from_a_city_perspective_", "sv": "http://www.stoa.fi/sv/evenemang/event/7266C7DE6D0537729934979626C5B164/Mila_Milax_Soul_of_Helsinki_-_Study_of_soul_from_a_city_perspective", "en": "http://www.stoa.fi/en/events/event/7266C7DE6D0537729934979626C5B164/Mila_Milax_Soul_of_Helsinki_Study_of_soul_from_a_city_perspective" }, "provider": null, "short_description": { "fi": "Soul of Helsinki on narratiivinen valokuvausmatka helsinkiläisyydestä, ihmisistä ja tiloista, kun ihmisiä ei niissä ole.", "sv": "Soul of Helsinki är en berättande fotografisk resa om det helsingforsiska, om människor och om rum när det inte finns människor i dem.", "en": "Soul of Helsinki is a narrative photographic journey through the identity and people of Helsinki and urban places with no people in them." }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Soul of Helsinki on narratiivinen valokuvausmatka helsinkiläisyydestä, ihmisistä ja tiloista, kun ihmisiä ei niissä ole.</p><p>Helsingin miljöössä on kaikille tuttu urbaani henki, mutta miten tuntee kuuluvansa näihin tiloihin ja yhteisöihin? Soul of Helsinki on sekä yksilöllinen että yhteisöllinen kokemus. Mediansa kautta Mila juhlistaa helsinkiläisten sielukkuutta: perspektiivejä siihen, miten löytää onnellisuuden omasta tekemisestään, jakaa tarkoitustaan muiden kanssa, ja todistaa, että Helsingissä kaikki on mahdollista. Voi olla kuka tahansa, ja silti olla helsinkiläinen. Kuulua.</p><p>Minkälainen kaupunki tämä on? Mitä nämä tilat pitävät sisällään? Miten elämme kaupungin kulttuuria ja luomme yhteyksiä toisiimme? Vastaus tähän on jo sinussa itsessäsi.</p><p>Sinä olet Helsingin sielu.</p><p>Vapaa pääsy</p>", "sv": "<p>Soul of Helsinki är en berättande fotografisk resa om det helsingforsiska, om människor och om rum när det inte finns människor i dem.</p><p>Miljöerna i Helsingfors har en urban anda som alla känner, men hur känner man att man tillhör dessa rum och gemenskaper. Soul of Helsinki är både en individuell och en gemensam upplevelse. Genom sina medier hyllar Mila helsingforsarnas själfullhet: perspektiv på hur man finner lycka i det man gör, delar sitt syfte med andra och bevisar att allt är möjligt i Helsingfors. Man kan vara vem som helst och ändå vara helsingforsare. Höra till.</p><p>Hurdan stad är det här? Vad finns i dessa rum? Hur lever vi ut stadskulturen och skapar kontakt med varandra? Svaret på detta finns redan inom dig.</p><p>Du är Helsingfors själ.</p><p>Fritt inträde</p>", "en": "<p>Soul of Helsinki is a narrative photographic journey through the identity and people of Helsinki and urban places with no people in them.</p><p>Everyone is familiar with the urban spirit of Helsinki, but how do you feel part of these spaces and communities? Soul of Helsinki is both an individual and a communal experience. Through her media, Mila celebrates the soulfulness of the residents of Helsinki: perspectives on how to find happiness in what they do, sharing their purpose with others and proving that anything is possible in Helsinki. You can be anyone and still be from Helsinki. To be heard.</p><p>What kind of city is this? What do these spaces contain? How do we live and breathe the culture of the city and connect with each other? The answer to this is already within you.</p><p>You are the soul of Helsinki.</p><p>Free entry</p>" }, "name": { "fi": "Mila Milax: Soul of Helsinki - Study of soul from a city perspective", "sv": "Mila Milax: Soul of Helsinki - Study of soul from a city perspective", "en": "Mila Milax: Soul of Helsinki – Study of soul from a city perspective" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68183/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68242", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1641034, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T08:13:48.022057Z", "last_modified_time": "2026-03-16T08:13:48.022072Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779134.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1641034/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T08:13:47.925164Z", "last_modified_time": "2026-03-20T01:14:29.318663Z", "date_published": null, "start_time": "2026-06-05", "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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/01E6C586CE590AE8CAC259ACB9316BFC/Taidefillari", "sv": "http://www.vuotalo.fi/sv/evenemang/event/01E6C586CE590AE8CAC259ACB9316BFC/Konstcykel", "en": "http://www.vuotalo.fi/en/events/event/01E6C586CE590AE8CAC259ACB9316BFC/Art_bike_Taidefillari" }, "provider": null, "short_description": { "fi": "Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!", "sv": "Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!", "en": "Come and spend summer holidays with us making art on playgrounds!" }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!</p><p>Seikkailutaidekoulu kruisailee taidetarvikkeilla lastatulla kuormapyörällä itähelsinkiläisiin leikkipuistoihin ja ulkotiloihin 1.-5.6.2026.<br> <br>Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita. Mukana on myös hengailuvilttejä, riippumattoja, piirustuspaperia, saippuakuplia ja muita mahdollisuuksia matalan kynnyksen osallistumiseen.</p><p>Taidefillarin reitti:<br>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ei ennakkoilmoittautumista!</p><p>Sopii lapsille ja perheille.</p><p>Kieli: suomi, englanti</p><p>Maksuton</p>", "sv": "<p>Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!</p><p>Äventyrskonstskolan åker omkring med en cykel lastad med konstmaterial till lekparkerna i östra Helsingfors 2–6.6.2025.</p><p>I workshopparna lär vi oss en mängd olika lekfulla och experimentella konsttekniker. Med finns också filtar för häng, hängmattor, ritpapper, såpbubblor och andra möjligheter till deltagande med låg tröskel.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ingen förhandsanmälan!</p><p>Lämpar sig för barn och familjer.</p>", "en": "<p>Come and spend summer holidays with us making art on playgrounds!</p><p>Seikkailutaidekoulu cruises on a cargo bike loaded with art supplies to playgrounds in East Helsinki from 2 to 6 June 2025.</p><p>In the workshops, we will learn different playful and experimental art techniques. There are also blankets for hanging out, hammocks, drawing paper, soap bubbles and other opportunities for low-threshold participation.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>No advance registration needed!</p><p>Suitable for children and families.</p>" }, "name": { "fi": "Taidefillari – Kesätoimintaviikko: Työpajat ma-pe klo 10–15", "sv": "Konstcykel – Sommaraktivitetsvecka: Verkstäder mån–fre kl. 10–15", "en": "Art bike Taidefillari – Summer activity week: Workshops Mon–Fri 10:00–15:00" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68242/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68241", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1641033, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T08:13:47.672122Z", "last_modified_time": "2026-03-16T08:13:47.672136Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779133.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1641033/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T08:13:47.576162Z", "last_modified_time": "2026-03-20T01:14:28.986673Z", "date_published": null, "start_time": "2026-06-04", "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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/026BF5D42CFA029513DC057F94601545/Taidefillari", "sv": "http://www.vuotalo.fi/sv/evenemang/event/026BF5D42CFA029513DC057F94601545/Konstcykel", "en": "http://www.vuotalo.fi/en/events/event/026BF5D42CFA029513DC057F94601545/Art_bike_Taidefillari" }, "provider": null, "short_description": { "fi": "Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!", "sv": "Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!", "en": "Come and spend summer holidays with us making art on playgrounds!" }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!</p><p>Seikkailutaidekoulu kruisailee taidetarvikkeilla lastatulla kuormapyörällä itähelsinkiläisiin leikkipuistoihin ja ulkotiloihin 1.-5.6.2026.<br> <br>Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita. Mukana on myös hengailuvilttejä, riippumattoja, piirustuspaperia, saippuakuplia ja muita mahdollisuuksia matalan kynnyksen osallistumiseen.</p><p>Taidefillarin reitti:<br>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Kieli: suomi, englanti</p><p>Maksuton</p>", "sv": "<p>Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!</p><p>Äventyrskonstskolan åker omkring med en cykel lastad med konstmaterial till lekparkerna i östra Helsingfors 2–6.6.2025.</p><p>I workshopparna lär vi oss en mängd olika lekfulla och experimentella konsttekniker. Med finns också filtar för häng, hängmattor, ritpapper, såpbubblor och andra möjligheter till deltagande med låg tröskel.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ingen förhandsanmälan!</p><p>Lämpar sig för barn och familjer.</p>", "en": "<p>Come and spend summer holidays with us making art on playgrounds!</p><p>Seikkailutaidekoulu cruises on a cargo bike loaded with art supplies to playgrounds in East Helsinki from 2 to 6 June 2025.</p><p>In the workshops, we will learn different playful and experimental art techniques. There are also blankets for hanging out, hammocks, drawing paper, soap bubbles and other opportunities for low-threshold participation.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>No advance registration needed!</p><p>Suitable for children and families.</p>" }, "name": { "fi": "Taidefillari – Kesätoimintaviikko: Työpajat ma-pe klo 10–15", "sv": "Konstcykel – Sommaraktivitetsvecka: Verkstäder mån–fre kl. 10–15", "en": "Art bike Taidefillari – Summer activity week: Workshops Mon–Fri 10:00–15:00" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68241/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68240", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1641032, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T08:13:47.323971Z", "last_modified_time": "2026-03-16T08:13:47.323986Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779132.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1641032/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T08:13:47.220554Z", "last_modified_time": "2026-03-20T01:14:28.799953Z", "date_published": null, "start_time": "2026-06-03", "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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E73D22E07154F312D0693ED5E36F0881/Taidefillari", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E73D22E07154F312D0693ED5E36F0881/Konstcykel", "en": "http://www.vuotalo.fi/en/events/event/E73D22E07154F312D0693ED5E36F0881/Art_bike_Taidefillari" }, "provider": null, "short_description": { "fi": "Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!", "sv": "Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!", "en": "Come and spend summer holidays with us making art on playgrounds!" }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!</p><p>Seikkailutaidekoulu kruisailee taidetarvikkeilla lastatulla kuormapyörällä itähelsinkiläisiin leikkipuistoihin ja ulkotiloihin 1.-5.6.2026.<br> <br>Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita. Mukana on myös hengailuvilttejä, riippumattoja, piirustuspaperia, saippuakuplia ja muita mahdollisuuksia matalan kynnyksen osallistumiseen.</p><p>Taidefillarin reitti:<br>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Kieli: suomi, englanti</p><p>Maksuton</p>", "sv": "<p>Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!</p><p>Äventyrskonstskolan åker omkring med en cykel lastad med konstmaterial till lekparkerna i östra Helsingfors 2–6.6.2025.</p><p>I workshopparna lär vi oss en mängd olika lekfulla och experimentella konsttekniker. Med finns också filtar för häng, hängmattor, ritpapper, såpbubblor och andra möjligheter till deltagande med låg tröskel.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ingen förhandsanmälan!</p><p>Lämpar sig för barn och familjer.</p>", "en": "<p>Come and spend summer holidays with us making art on playgrounds!</p><p>Seikkailutaidekoulu cruises on a cargo bike loaded with art supplies to playgrounds in East Helsinki from 2 to 6 June 2025.</p><p>In the workshops, we will learn different playful and experimental art techniques. There are also blankets for hanging out, hammocks, drawing paper, soap bubbles and other opportunities for low-threshold participation.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>No advance registration needed!</p><p>Suitable for children and families.</p>" }, "name": { "fi": "Taidefillari – Kesätoimintaviikko: Työpajat ma-pe klo 10–15", "sv": "Konstcykel – Sommaraktivitetsvecka: Verkstäder mån–fre kl. 10–15", "en": "Art bike Taidefillari – Summer activity week: Workshops Mon–Fri 10:00–15:00" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68240/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68239", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1641031, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T08:13:46.907372Z", "last_modified_time": "2026-03-16T08:13:46.907392Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779131.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1641031/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T08:13:46.790059Z", "last_modified_time": "2026-03-20T01:14:28.380129Z", "date_published": null, "start_time": "2026-06-02", "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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AA05C5C30A139D88BFCF1543C74135E0/Taidefillari", "sv": "http://www.vuotalo.fi/sv/evenemang/event/AA05C5C30A139D88BFCF1543C74135E0/Konstcykel", "en": "http://www.vuotalo.fi/en/events/event/AA05C5C30A139D88BFCF1543C74135E0/Art_bike_Taidefillari" }, "provider": null, "short_description": { "fi": "Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!", "sv": "Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!", "en": "Come and spend summer holidays with us making art on playgrounds!" }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!</p><p>Seikkailutaidekoulu kruisailee taidetarvikkeilla lastatulla kuormapyörällä itähelsinkiläisiin leikkipuistoihin ja ulkotiloihin 1.-5.6.2026.<br> <br>Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita. Mukana on myös hengailuvilttejä, riippumattoja, piirustuspaperia, saippuakuplia ja muita mahdollisuuksia matalan kynnyksen osallistumiseen.</p><p>Taidefillarin reitti:<br>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ei ennakkoilmoittautumista!</p><p>Sopii lapsille ja perheille.</p><p>KIELI: suomi, englanti</p><p>Maksuton</p>", "sv": "<p>Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!</p><p>Äventyrskonstskolan åker omkring med en cykel lastad med konstmaterial till lekparkerna i östra Helsingfors 2–6.6.2025.</p><p>I workshopparna lär vi oss en mängd olika lekfulla och experimentella konsttekniker. Med finns också filtar för häng, hängmattor, ritpapper, såpbubblor och andra möjligheter till deltagande med låg tröskel.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ingen förhandsanmälan!</p><p>Lämpar sig för barn och familjer.</p>", "en": "<p>Come and spend summer holidays with us making art on playgrounds!</p><p>Seikkailutaidekoulu cruises on a cargo bike loaded with art supplies to playgrounds in East Helsinki from 2 to 6 June 2025.</p><p>In the workshops, we will learn different playful and experimental art techniques. There are also blankets for hanging out, hammocks, drawing paper, soap bubbles and other opportunities for low-threshold participation.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ingen förhandsanmälan!</p><p>Lämpar sig för barn och familjer.</p>" }, "name": { "fi": "Taidefillari – Kesätoimintaviikko: Työpajat ma-pe klo 10–15", "sv": "Konstcykel – Sommaraktivitetsvecka: Verkstäder mån–fre kl. 10–15", "en": "Art bike Taidefillari – Summer activity week: Workshops Mon–Fri 10:00–15:00" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68239/?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": [], "price": null, "description": null, "info_url": 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, "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" }, "provider": 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." }, "location_extra_info": null, "provider_contact_info": null, "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)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68050/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68238", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1640596, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T07:13:25.980799Z", "last_modified_time": "2026-03-16T07:13:25.980814Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779130.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1640596/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T07:13:25.829223Z", "last_modified_time": "2026-03-20T01:14:27.988025Z", "date_published": null, "start_time": "2026-06-01", "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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EE209D0708305585B5393F76D8843632/Taidefillari", "sv": "http://www.vuotalo.fi/sv/evenemang/event/EE209D0708305585B5393F76D8843632/Konstcykel", "en": "http://www.vuotalo.fi/en/events/event/EE209D0708305585B5393F76D8843632/Art_bike_Taidefillari_" }, "provider": null, "short_description": { "fi": "Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!", "sv": "Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!", "en": "Come and spend summer holidays with us making art on playgrounds!" }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!</p><p>Seikkailutaidekoulu kruisailee taidetarvikkeilla lastatulla kuormapyörällä itähelsinkiläisiin leikkipuistoihin ja ulkotiloihin 1.-5.6.2026.<br> <br>Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita. Mukana on myös hengailuvilttejä, riippumattoja, piirustuspaperia, saippuakuplia ja muita mahdollisuuksia matalan kynnyksen osallistumiseen.</p><p>Taidefillarin reitti:<br>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Kieli: suomi, englanti</p><p>Ei ennakkoilmoittautumista!</p><p>Sopii lapsille ja perheille.</p><p>Maksuton</p>", "sv": "<p>Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!</p><p>Äventyrskonstskolan åker omkring med en cykel lastad med konstmaterial till lekparkerna i östra Helsingfors 2–6.6.2025.</p><p>I workshopparna lär vi oss en mängd olika lekfulla och experimentella konsttekniker. Med finns också filtar för häng, hängmattor, ritpapper, såpbubblor och andra möjligheter till deltagande med låg tröskel.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ingen förhandsanmälan!</p><p>Lämpar sig för barn och familjer.</p>", "en": "<p>Come and spend summer holidays with us making art on playgrounds!</p><p>Seikkailutaidekoulu cruises on a cargo bike loaded with art supplies to playgrounds in East Helsinki from 2 to 6 June 2025.</p><p>In the workshops, we will learn different playful and experimental art techniques. There are also blankets for hanging out, hammocks, drawing paper, soap bubbles and other opportunities for low-threshold participation.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12 ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>No advance registration needed!</p><p>Suitable for children and families.</p>" }, "name": { "fi": "Taidefillari – Kesätoimintaviikko: Työpajat ma-pe klo 10–15", "sv": "Konstcykel – Sommaraktivitetsvecka: Verkstäder mån–fre kl. 10–15", "en": "Art bike Taidefillari – Summer activity week: Workshops Mon–Fri 10:00–15:00" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68238/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68100", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494840, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-10T12:12:46.421221Z", "last_modified_time": "2026-02-10T12:12:46.421235Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777736.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494840/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-10T12:12:46.269514Z", "last_modified_time": "2026-03-20T01:14:27.197048Z", "date_published": null, "start_time": "2026-05-29", "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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2BE8011B9819C0AD6A4BE6B41EE573D5/Sadut_ja_mielikuvitus", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2BE8011B9819C0AD6A4BE6B41EE573D5/Sagor_och_fantasi", "en": "http://www.vuotalo.fi/en/events/event/2BE8011B9819C0AD6A4BE6B41EE573D5/Fairytales_and_imagination" }, "provider": null, "short_description": { "fi": "Helsingin kuvataidekoulun laajassa kesänäyttelyssä on esillä 6–20-vuotiaiden helsinkiläisten lasten ja nuorten taidetta lukuvuodelta 2025–26.", "sv": "I Helsingin kuvataidekoulus stora sommarutställning visas konst av helsingforsare i åldern 6–20 år från läsåret 2025–26.", "en": "Fairytales and imagination Children’s and young people’s art in the Vuotalo gallery" }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kuvataidekoulun laajassa kesänäyttelyssä on esillä 6–20-vuotiaiden helsinkiläisten lasten ja nuorten taidetta lukuvuodelta 2025–26.</p><p>Lukuvuoden teema -Sadut ja mielikuvitus- on inspiroinut Helsingin kuvataidekoulun oppilaita luomaan kuvia, animaatioita ja veistoksia, jotka tuovat lapsen ja nuoren ajattelun ja mielikuvituksen näkyväksi. Satujen ja tarinoiden maailmat kertovat mielen salaisuuksista, luovuudesta ja leikistä. Satujen ja fantasian maailma tarjoaa seikkailuja kaikenikäisille.</p><p>Esillä näyttelyssä ovat myös kuvataidekoulussa useita vuosia opiskelleiden, lähes kolmenkymmenen nuoren toteuttamat itsenäiset lopputyöt. Teosten aiheet ovat nuoria kiinnostaneista, itse valitsemista teemoista. Esillä on mm. piirroksia, maalauksia ja keramiikkaa sekä lopputyötyöprosessista kertovat, aihetta syventävät portfoliot.</p>", "sv": "<p>I Helsingin kuvataidekoulus stora sommarutställning visas konst av helsingforsare i åldern 6–20 år från läsåret 2025–26.</p><p>Läsårets tema – sagor och fantasi – har inspirerat bildkonstskolans elever att skapa bilder, animationer och skulpturer, som synliggör barnens och ungdomarnas tänkande och fantasi. Sagornas och berättelsernas världar berättar om sinnets hemligheter, kreativitet och lek. Sagornas och fantasins värld bjuder på äventyr för alla åldrar.</p><p>I utställningen ingår också självständiga slutarbeten av nästan trettio ungdomar som har studerat vid bildkonstskolan i flera år. Temana för verken är sådana som ungdomarna själva valt och som intresserar dem. I utställningen visas bland annat teckningar, målningar och keramik samt fördjupande portfolior som berättar om slutarbetsprocessen.</p>", "en": "<p>Fairytales and imagination Children’s and young people’s art in the Vuotalo gallery</p><p>The theme of the academic year – fairytales and imagination – has inspired the students of Helsinki Upper Secondary School of Visual Arts to create images, animations and sculptures that bring to life the thinking and imagination of children and young people. The worlds of fairytales and stories focus on the secrets of the mind, creativity and play. The world of fairytales and fantasy provides adventures for all ages.</p><p>The exhibition also features independent final works by nearly thirty young people who have been studying at the School of Visual Arts for several years. The works focus on themes that interested and were selected by the young people themselves. The exhibition will feature works such as drawings, paintings and ceramics, as well as portfolios that document the final work process and provide more in-depth information on the subject.</p>" }, "name": { "fi": "Sadut ja mielikuvitus – Lasten ja nuorten taidetta Vuotalon galleriassa", "sv": "Sagor och fantasi – Konst av barn och unga i Nordhusets galleri", "en": "Fairytales and imagination – Children’s and young people’s art in the Vuotalo gallery" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68100/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68071", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494736, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T11:13:12.556403Z", "last_modified_time": "2026-02-05T11:13:12.556417Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778350.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494736/?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" } ], "created_time": "2026-02-05T11:13:12.404416Z", "last_modified_time": "2026-03-20T01:14:27.052660Z", "date_published": null, "start_time": "2026-05-28T14: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F6EF1B1D0DBA36609BDF24E6BE3872C5/NUMI_Nuorten_Uuden_Musiikin_Ilta_", "sv": "http://www.stoa.fi/sv/evenemang/event/F6EF1B1D0DBA36609BDF24E6BE3872C5/NUMI_Nuorten_Uuden_Musiikin_Ilta_", "en": "http://www.stoa.fi/en/events/event/F6EF1B1D0DBA36609BDF24E6BE3872C5/NUMI_Nuorten_Uuden_Musiikin_Ilta_" }, "provider": null, "short_description": { "fi": "Nuorten Uuden Musiikin Ilta (NUMI) on maksuton musiikkitapahtuma, jossa 13–29-vuotiaat artistit pääsevät esiintymään matalalla kynnyksellä.", "sv": "Nuorten Uuden Musiikin Ilta (NUMI) är ett avgiftsfritt musikevenemang där artister i åldern 13–29 år får uppträda med låg tröskel.", "en": "Nuorten Uuden Musiikin Ilta (NUMI) is a free-of-charge music event where artists aged 13–29 have a chance to perform at a low threshold." }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Nuorten Uuden Musiikin Ilta (NUMI) on maksuton musiikkitapahtuma, jossa 13–29-vuotiaat artistit pääsevät esiintymään matalalla kynnyksellä.</p><p>Lavalle nousee kahdeksan avoimen haun kautta valittua esiintyjää, jotka esittävät 1–2 kappaletta ja saavat palautetta kokeneilta mentoreilta. NUMI tukee nuoria musiikintekijöitä kehittymään ja verkostoitumaan.</p><p>Seuraa @numi.hel Instagramissa ja laita DM, jos haluat mukaan järjestämään – tehdään yhdessä tilaa uudelle musiikille! <br>Tapahtuma on ilmainen ja päihteetön.</p><p>Kesto: 2 tuntia<br>Kieli: monikielinen</p>", "sv": "<p>Nuorten Uuden Musiikin Ilta (NUMI) är ett avgiftsfritt musikevenemang där artister i åldern 13–29 år får uppträda med låg tröskel.</p><p>Åtta artister som valts ut i en öppen ansökan stiger upp på scenen för att framföra 1–2 låtar, och får respons från erfarna mentorer. NUMI hjälper unga musiker att utvecklas och skapa nätverk.</p><p>Följ @numi.hel på Instagram och skicka ett DM och du vill vara med och arrangera – tillsammans skapar vi plats för ny musik!</p><p>Evenemanget är gratis och rusmedelsfritt.</p><p>Längd: 2 timmar<br>Språk: flerspråkig</p>", "en": "<p>Nuorten Uuden Musiikin Ilta (NUMI) is a free-of-charge music event where artists aged 13–29 have a chance to perform at a low threshold.</p><p>Eight performers, selected through an open call, will take to the stage to perform one or two songs and receive feedback from experienced mentors. NUMI supports young musicians in developing their craft and networking.</p><p>Follow @numi.hel on Instagram and DM us if you want to get involved – let's make room for new music together!</p><p>Admission is free and the event is drug and alcohol free.</p><p>Duration: 2 hours<br>Language: multilingual</p>" }, "name": { "fi": "NUMI – Nuorten Uuden Musiikin Ilta", "sv": "NUMI – Nuorten Uuden Musiikin Ilta", "en": "NUMI – Nuorten Uuden Musiikin Ilta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68071/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68108", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494853, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-12T12:14:16.057371Z", "last_modified_time": "2026-02-12T12:14:16.057387Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782653.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494853/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-12T12:14:15.952191Z", "last_modified_time": "2026-03-20T01:14:26.937721Z", "date_published": null, "start_time": "2026-05-28T13: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/116E5BCEC29922A3AA434A81FB27B51F/Tapaa_tekija_Stoan_aulassa", "sv": "http://www.stoa.fi/sv/evenemang/event/116E5BCEC29922A3AA434A81FB27B51F/Traffa_skaparna_i_Stoas_lobby", "en": "http://www.stoa.fi/en/events/event/116E5BCEC29922A3AA434A81FB27B51F/Meet_the_Maker_at_Stoa_s_lobby" }, "provider": null, "short_description": { "fi": "Tapaa tekijä Stoan aulassa kutsuu yleisön kohtaamaan taiteilijoita ja muita tekijöitä, joiden teoksia nähdään Stoassa tulevan kuukauden aikana.", "sv": "Träffa skaparna i Stoas lobby bjuder in publiken att möta konstnärer och andra kreatörer vars verk visas på Stoa under kommande månad.", "en": "Meet the Maker at Stoa’s lobby invites the audience to encounter artists and other creators whose works will be presented at Stoa in the coming month." }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Tapaa tekijä Stoan aulassa kutsuu yleisön kohtaamaan taiteilijoita ja muita tekijöitä, joiden teoksia nähdään Stoassa tulevan kuukauden aikana.</p><p>Stoa on teatterin, tapahtumien ja kuvataiteen kohtaamispaikka, jossa taide syntyy, näkyy ja herättää keskustelua. Tilaisuus on rento ja vuorovaikutteinen keskustelu, jossa tekijät esittelevät itsensä ja tulevat projektinsa Stoassa. Keskustelua moderoivat Stoan tuottajat Sara Hirn ja Ahmed Al-Nawas.</p><p>Yleisö on lämpimästi tervetullut esittämään kysymyksiä ja osallistumaan keskusteluun. Tapaa tekijä Stoan aulassa järjestetään kuun viimeisenä torstaina (huhtikuussa poikkeuksellisesti toiseksi viimeisenä torstaina) ja se on avoin kaikille taiteesta kiinnostuneille – myös ensikertalaisille.</p><p>Tilaisuus on maksuton ja kaksikielinen (suomi–englanti). Kysymyksiä voi esittää myös tekijöiden äidinkielellä.</p>", "sv": "<p>Träffa skaparna i Stoas lobby bjuder in publiken att möta konstnärer och andra kreatörer vars verk visas på Stoa under kommande månad.</p><p>Stoa är en mötesplats för teater, evenemang och bildkonst, där konst skapas, visas och väcker diskussion. Evenemanget är en avslappnad och interaktiv diskussion där konstnärerna presenterar sig själva och sina kommande projekt på Stoa. Producenterna Sara Hirn och Ahmed Al-Nawas modererar samtalet. Vi gör vårt bästa för att svara även på svenska vid behov.</p><p>Publiken är varmt välkommen att ställa frågor och delta i diskussionen. Träffa skaparna i Stoas lobby hålls den sista torsdagen i månaden (förutom i april, då det hålls den näst sista torsdagen) och är öppet för alla som är intresserade av konst – även för förstabesökare.</p><p>Evenemanget är kostnadsfritt och tvåspråkigt (finska–engelska). Frågor kan även ställas på konstnärernas modersmål.</p>", "en": "<p>Meet the Maker at Stoa’s lobby invites the audience to encounter artists and other creators whose works will be presented at Stoa in the coming month.</p><p>Stoa is a meeting place for theatre, events, and visual arts, where art is created, displayed, and sparks conversation. The event is a relaxed, interactive discussion in which the artists introduce themselves and their upcoming projects at Stoa. The conversation is moderated by Sara Hirn and Ahmed Al-Nawas.</p><p>The audience is warmly invited to ask questions and join the conversation. Meet the Maker at Stoa’s lobby takes place on the last Thursday of each month (except in April, when it is held on the second-to-last Thursday) and is open to everyone interested in art – including first-time visitors.</p><p>The event is free and bilingual (Finnish–English). Questions can be asked in the artists’ mother tongue as well.</p>" }, "name": { "fi": "Tapaa tekijä Stoan aulassa", "sv": "Träffa skaparna i Stoas lobby", "en": "Meet the Maker at Stoa’s lobby" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68108/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67811", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494919, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-20T12:13:11.877111Z", "last_modified_time": "2026-02-20T12:13:11.877124Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782922.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494919/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-20T12:13:11.737790Z", "last_modified_time": "2026-03-20T01:14:26.790038Z", "date_published": null, "start_time": "2026-05-27T09:00:00Z", "end_time": "2026-05-27T09: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/46D43ED031C13E74972177024C04C742/Metsaan_laskeutumiset_Karhukalliolla_paivakodeille_", "sv": "http://www.stoa.fi/sv/evenemang/event/46D43ED031C13E74972177024C04C742/Metsaan_laskeutuminen_Landa_i_skogen_", "en": "http://www.stoa.fi/en/events/event/46D43ED031C13E74972177024C04C742/Metsaan_laskeutuminen_Descending_into_the_forest_" }, "provider": null, "short_description": { "fi": "Esityksellinen rentoutumishetki päiväkoti- ja koululaisryhmille Karhukallion metsässä", "sv": "En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog.", "en": "Performance and relaxation moment for day-care and school groups in the Karhukallio forest." }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Esityksellinen rentoutumishetki päiväkoti- ja koululaisryhmille Karhukallion metsässä</p><p>Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitettu satu metsässä asuvasta oravasta. Sen avulla laskeudutaan metsän rauhaan kaikkia aisteja hyödyntäen. Köllöttelemme riippumatoissa kuunnellen elävää musiikkia ja metsän ääniä. Mitä kaikkea metsä supattaa, jos pysähdymme kuuntelemaan?</p><p>Jokaiselle lapselle varataan oma riippumatto, ja siksi ryhmän maksimikoko on 19.</p><p>Työpaja soveltuu 4–8-vuotiaille. Myrskyn sattuessa tapahtumalle pyritään löytämään uusi ajankohta.</p><p>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu</p><p>Paikka: Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br>Kesto: n. 45 min</p><p>Ikäsuositus: 4–8-vuotiaat</p><p>Kieli: suomi</p><p>Vapaa pääsy. Pakolliset ennakkoilmoittautumiset: kultus.hel.fi, 9.1. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog.</p><p>Visste du att man också kan vila i skogen? I början av skogsstunden får vi se och höra en liveillustrerad saga om en ekorre som bor i skogen. Med hjälp av den landar vi i skogens frid och utnyttjar alla sinnen. Vi slappnar av i hängmattor och lyssnar på levande musik och skogens ljud. Vad viskar skogen om då vi stannar upp och lyssnar?</p><p>Det finns en egen hängmatta för varje barn, och därför är den maximala gruppstorleken 19.</p><p>Workshoppen är lämplig för 4–8-åringar. I händelse av stormigt väder försöker vi hitta ett nytt datum för evenemanget.</p><p>Handledare: Verna Kuntsi och Satu Sipilä, Seikkailutaidekoulu</p><p>Plats: Björnklippans skog i Kasåkern. Mötesplats vid korsningen mellan Viilarvägen och Hylsnyckelvägen. Spårjokerns hållplats (linje 15): Kauppamyllyntie.<br>Åldersrekommendation: 4–8-åringar <br>Längd: ca 45 min. <br>Språk: finska</p><p>Fritt inträde. Obligatorisk förhandsanmälan: kultus.hel.fi,</p><p>Mer information: hanna.westerholm@hel.fi</p>", "en": "<p>Performance and relaxation moment for day-care and school groups in the Karhukallio forest.</p><p>Did you know that you are also allowed to rest in the forest? At the beginning of the forest moment, you will see and hear a live fairy tale about a squirrel living in the forest. It allows you to descend into the peace of the forest using all your senses. You get to relax in a hammock, listen to live music and the sounds of the forest. What does the forest tell us, if we stop to listen?</p><p>Hammocks are provided for each child, which is why the maximum group size is 19.</p><p>The workshop is suitable for 4–8-year-olds. In the event of a storm, we will try to reschedule the event.</p><p>Instructors: Verna Kuntsi and Satu Sipilä, Seikkailutaidekoulu</p><p>Location: Karhukallio Forest in Roihupelto<br>Age recommendation: Ages 4–8 <br>Duration: approx. 45 min <br>Language: Finnish</p><p>Admission is free. Pre-registration required at kultus.hel.fi, from 9 January at 10 am</p><p>Additional information: hanna.westerholm@hel.fi</p>" }, "name": { "fi": "Metsään laskeutumiset Karhukalliolla (päiväkodeille)", "sv": "Metsään laskeutuminen (Landa i skogen)", "en": "Metsään laskeutuminen (Descending into the forest)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67811/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67810", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494918, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-20T12:13:11.468070Z", "last_modified_time": "2026-02-20T12:13:11.468081Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782921.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494918/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-20T12:13:11.351074Z", "last_modified_time": "2026-03-20T01:14:26.655761Z", "date_published": null, "start_time": "2026-05-27T07:00:00Z", "end_time": "2026-05-27T07: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E2CBF66AB682237E5868264BCF1C284E/Metsaan_laskeutumiset_Karhukalliolla_paivakodeille_", "sv": "http://www.stoa.fi/sv/evenemang/event/E2CBF66AB682237E5868264BCF1C284E/Metsaan_laskeutuminen_Landa_i_skogen_", "en": "http://www.stoa.fi/en/events/event/E2CBF66AB682237E5868264BCF1C284E/Metsaan_laskeutuminen_Descending_into_the_forest_" }, "provider": null, "short_description": { "fi": "Esityksellinen rentoutumishetki päiväkoti- ja koululaisryhmille Karhukallion metsässä", "sv": "En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog.", "en": "Performance and relaxation moment for day-care and school groups in the Karhukallio forest." }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Esityksellinen rentoutumishetki päiväkoti- ja koululaisryhmille Karhukallion metsässä</p><p>Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitettu satu metsässä asuvasta oravasta. Sen avulla laskeudutaan metsän rauhaan kaikkia aisteja hyödyntäen. Köllöttelemme riippumatoissa kuunnellen elävää musiikkia ja metsän ääniä. Mitä kaikkea metsä supattaa, jos pysähdymme kuuntelemaan?</p><p>Jokaiselle lapselle varataan oma riippumatto, ja siksi ryhmän maksimikoko on 19.</p><p>Työpaja soveltuu 4–8-vuotiaille. Myrskyn sattuessa tapahtumalle pyritään löytämään uusi ajankohta.</p><p>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu</p><p>Paikka: Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br>Kesto: n. 45 min</p><p>Ikäsuositus: 4–8-vuotiaat</p><p>Kieli: suomi</p><p>Vapaa pääsy. Pakolliset ennakkoilmoittautumiset: kultus.hel.fi, 9.1. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog.</p><p>Visste du att man också kan vila i skogen? I början av skogsstunden får vi se och höra en liveillustrerad saga om en ekorre som bor i skogen. Med hjälp av den landar vi i skogens frid och utnyttjar alla sinnen. Vi slappnar av i hängmattor och lyssnar på levande musik och skogens ljud. Vad viskar skogen om då vi stannar upp och lyssnar?</p><p>Det finns en egen hängmatta för varje barn, och därför är den maximala gruppstorleken 19.</p><p>Workshoppen är lämplig för 4–8-åringar. I händelse av stormigt väder försöker vi hitta ett nytt datum för evenemanget.</p><p>Handledare: Verna Kuntsi och Satu Sipilä, Seikkailutaidekoulu</p><p>Plats: Björnklippans skog i Kasåkern. Mötesplats vid korsningen mellan Viilarvägen och Hylsnyckelvägen. Spårjokerns hållplats (linje 15): Kauppamyllyntie.</p><p>Åldersrekommendation: 4–8-åringar <br>Längd: ca 45 min. <br>Språk: finska</p><p>Fritt inträde. Obligatorisk förhandsanmälan: kultus.hel.fi,</p><p>Mer information: hanna.westerholm@hel.fi</p>", "en": "<p>Performance and relaxation moment for day-care and school groups in the Karhukallio forest.</p><p>Did you know that you are also allowed to rest in the forest? At the beginning of the forest moment, you will see and hear a live fairy tale about a squirrel living in the forest. It allows you to descend into the peace of the forest using all your senses. You get to relax in a hammock, listen to live music and the sounds of the forest. What does the forest tell us, if we stop to listen?</p><p>Hammocks are provided for each child, which is why the maximum group size is 19.</p><p>The workshop is suitable for 4–8-year-olds. In the event of a storm, we will try to reschedule the event.</p><p>Instructors: Verna Kuntsi and Satu Sipilä, Seikkailutaidekoulu<br>Location: Karhukallio Forest in Roihupelto<br>Age recommendation: Ages 4–8 <br>Duration: approx. 45 min <br>Language: Finnish</p><p>Admission is free. Pre-registration required at kultus.hel.fi, from 9 January at 10 am</p><p>Additional information: hanna.westerholm@hel.fi</p>" }, "name": { "fi": "Metsään laskeutumiset Karhukalliolla (päiväkodeille)", "sv": "Metsään laskeutuminen (Landa i skogen)", "en": "Metsään laskeutuminen (Descending into the forest)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67810/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67919", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494366, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-05T09:13:36.560571Z", "last_modified_time": "2026-01-05T09:13:36.560586Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783143.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494366/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-05T09:13:36.489806Z", "last_modified_time": "2026-03-20T01:14:25.966336Z", "date_published": null, "start_time": "2026-05-26T11: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A551DA296794C6B8D0BBBFAAF39D3108/Paivatanssit_", "sv": "http://www.stoa.fi/sv/evenemang/event/A551DA296794C6B8D0BBBFAAF39D3108/Paivatanssit_", "en": "http://www.stoa.fi/en/events/event/A551DA296794C6B8D0BBBFAAF39D3108/Paivatanssit_" }, "provider": null, "short_description": { "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.", "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.", "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa." }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi<br>Vapaa pääsy.</p>", "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde</p>", "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>" }, "name": { "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "sv": "Päivätanssit", "en": "Päivätanssit" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67919/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67572", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494365, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-05T09:13:36.093623Z", "last_modified_time": "2026-01-05T09:13:36.093639Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781753.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494365/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-05T09:13:35.893671Z", "last_modified_time": "2026-03-20T01:14:25.779672Z", "date_published": null, "start_time": "2026-05-26T08:45: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/8F0F7483BB3B6CC302EBF8A949F5DF36/Opi_suomea_laulaen_TAYNNA", "sv": "http://www.stoa.fi/sv/evenemang/event/8F0F7483BB3B6CC302EBF8A949F5DF36/Lar_dig_finska_genom_att_sjunga", "en": "http://www.stoa.fi/en/events/event/8F0F7483BB3B6CC302EBF8A949F5DF36/Learn_Finnish_by_Singing" }, "provider": null, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.", "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning." }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min</p><p>Ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi <br> <br><b>Kevään laulupajakerrat:</b> <br>To 29.1. klo 10 ja 11.45 <br>To 19.3. klo 10 ja 11.45 <br>Ti 26.5. klo 10 ja 11.45</p><p>Vapaa pääsy</p>", "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand. <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p><b>Sångverkstäder: </b><br>To 29.1. kl 10 och 11.45 <br>To 19.3. kl 10 och 11.45 <br>Ti 26.5. kl 10 och 11.45</p>", "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group. <br> Ask for more information and register: sanna.nuutinen@hel.fi <br> <br><b>Spring singing workshops: </b><br>Thu 29.1. klo 10 and 11.45 <br>Thu 19.3. klo 10 and 11.45 <br>Tue 26.5. klo 10 and 11.45</p>" }, "name": { "fi": "Opi suomea laulaen TÄYNNÄ – Laulupajat maahanmuuttaneille", "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare", "en": "Learn Finnish by Singing – Song workshops for immigrants" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67572/?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": [], "price": null, "description": null, "info_url": 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, "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" }, "provider": 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." }, "location_extra_info": null, "provider_contact_info": null, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68086/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67571", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494364, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-05T09:13:35.488418Z", "last_modified_time": "2026-01-05T09:13:35.488435Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781752.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494364/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-05T09:13:35.304769Z", "last_modified_time": "2026-03-20T01:14:25.475896Z", "date_published": null, "start_time": "2026-05-26T07: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/87B3C5768E2CE1F9E973039547EEE635/Opi_suomea_laulaen_TAYNNA", "sv": "http://www.stoa.fi/sv/evenemang/event/87B3C5768E2CE1F9E973039547EEE635/Lar_dig_finska_genom_att_sjunga", "en": "http://www.stoa.fi/en/events/event/87B3C5768E2CE1F9E973039547EEE635/Learn_Finnish_by_Singing" }, "provider": null, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.", "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning." }, "location_extra_info": null, "provider_contact_info": null, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min</p><p>Ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi <br> <br><b>Kevään laulupajakerrat:</b> <br>To 29.1. klo 10 ja 11.45 <br>To 19.3. klo 10 ja 11.45 <br>Ti 26.5. klo 10 ja 11.45</p><p>Vapaa pääsy</p>", "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand. <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p><b>Sångverkstäder: </b><br>To 29.1. kl 10 ja 11.45 <br>To 19.3. kl 10 ja 11.45 <br>Ti 26.5. kl 10 ja 11.45</p>", "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group. <br> Ask for more information and register: sanna.nuutinen@hel.fi <br> <br><b>Spring singing workshops: </b><br>Thu 29.1. klo 10 ja 11.45 <br>Thu 19.3. klo 10 ja 11.45 <br>Tue 26.5. klo 10 ja 11.45</p>" }, "name": { "fi": "Opi suomea laulaen TÄYNNÄ – Laulupajat maahanmuuttaneille", "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare", "en": "Learn Finnish by Singing – Song workshops for immigrants" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67571/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }