Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&keyword=yso%3Ap4354&page=29
{ "meta": { "count": 7509, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=30", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=28" }, "data": [ { "id": "kulke:68331", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1722883, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-24T15:13:23.284161Z", "last_modified_time": "2026-03-24T15:13:23.284178Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785214.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1722883/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-03-24T15:13:23.113039Z", "last_modified_time": "2026-04-24T10:13:14.684482Z", "date_published": null, "start_time": "2026-06-08T07:00:00Z", "end_time": "2026-06-12T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "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)" }, "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." }, "description": { "fi": "<p>Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.</p><p>Mitä medialukutaito tarkoittaa? Mistä tietää onko jokin asian totta? Miltä voi tuntua, kun jokin paljastuu valheeksi? Millä tavoilla meidän käsityksiämme todellisuudesta rakennetaan?</p><p>Kurssin aikana suunnitellaan ja toteutetaan leikin kautta esitys, jossa kesäkurssilaiset pohtivat medialukutaitoa ja omaa suhdettaan esitettyyn todellisuuteen. Esitys suunnitellaan ja käsikirjoitetaan yhdessä. Harjoiteltu esitys kuvataan ja editoidaan valmiiksi videoteokseksi.</p><p>Tutustumme esityksen valmistamisen päävaiheisiin, joihin kuuluu lavastus, puvustus, kuvaaminen ja videoeditointi helpoilla editointiohjelmilla. Tutustumme näyttelemiseen ja esiintymiseen kehollisten harjoitteiden ja leikin avulla.</p><p>Kurssi on tarkoitettu 7–12-vuotiaille. Kurssi ei edellytä ennakko-osaamista. Valmiit videoteokset jaetaan osallistujille kurssin päätteeksi. Kuvattuja materiaaleja ei käytetä tai säilytetä kurssin jälkeen. Osallistuminen edellyttää kuvauslupaa edellä mainittuun tarkoitukseen.</p><p>Kurssiin ei sisälly ruokailua, joten lapsilla tulee olla mukana omat eväät ja juomapullo.</p><p>Ohjaajina toimivat taidekasvattajat Andra Sarenius ja Saban Ramadani.</p><p>Kielet: suomi ja englanti tarvittaessa.</p><p><b>Ilmoittautuminen</b><br>Ilmoittaudu mukaan hauskalle ja leikkisälle Caisan kesäkurssille! Ilmoittautuminen on sitova. Mahdolliset peruutukset mahdollisimman ajoissa. Vahvistamme ilmoittautumisen sähköpostitse.</p><p>Kurssikokonaisuus vk 24 8.6–12.6. ma–pe klo 10–14. <br>Ilmoittaudu tästä viikon 24 kesäkurssille (aukeaa pian)</p><p>Kysymykset ja tiedustelut: teemu.savikurki@hel.fi</p>", "sv": "<p>På kursen används mediekonst och scenkonst för att reflektera över medieläskunnighet och planera en föreställning som videofilmas.</p><p>Vad är medieläskunnighet? Hur vet man om något är sant? Hur kan det kännas när något avslöjas som en lögn? På vilket sätt är våra verklighetsuppfattningar konstruerade?</p><p>Under kursen planeras och genomförs en lekfull föreställning där kursdeltagarna reflekterar över medieläskunnighet och sin egen relation till den verklighet som presenteras. Föreställningen är planerad och skriven tillsammans. Den inövade föreställningen filmas och redigeras till ett färdigt videoverk.</p><p>Vi bekantar oss med de viktigaste skeden i att göra en föreställning, inklusive scenografi, kostymdesign, filmning och videoredigering med lättanvänd programvara före redigering. Vi lär oss om skådespeleri och uppträdande genom fysiska övningar och lek.</p><p>Kursen är avsedd för 7–12-åringar. Inga förkunskaper krävs för att delta i kursen. De färdiga videoverken kommer att delas ut till deltagarna i slutet av kursen. Det filmade materialet kommer inte att användas eller förvaras efter kursen. Deltagande kräver ett filmningstillstånd för ovanstående ändamål.</p><p>I kursen ingår inga måltider, så barnen bör ta med sig egen matsäck och en vattenflaska.</p><p>Projektet leds av konstpedagogerna Andra Sarenius och Saban Ramadani.</p><p>Språk: finska och engelska</p><p>Anmälan<br>Anmäl dig till Caisas roliga och lekfulla sommarkurs! Anmälan är bindande. Eventuella avbokningar ska göras så tidigt som möjligt.</p><p>Kurspaket v 24, 8.6–12.6. må–fre 10–14</p><p>Anmälan här: (Öppnas snart)</p>", "en": "<p>During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie.</p><p>What does media literacy mean? How do you know if something is true? How does it feel when something turns out to be a lie? In what ways are our perceptions of reality constructed?</p><p>During the course, a performance is planned and implemented through play. The summer course participants reflect on media literacy and their own relationship with represented reality. The performance is planned and scripted together. The rehearsed performance is filmed and edited into a finished video work.</p><p>We will get to know the main stages of making a show, which include staging, costuming, filming and video editing with easy editing programs. We get to know acting and performing through physical exercises and play.</p><p>The course is intended for 7–12-year-olds. The course does not require prior knowledge. The finished video works will be distributed to the participants at the end of the course. The described materials are not used or stored after the course. Participation requires a photography permit for the aforementioned purpose.</p><p>The course does not include meals, so children must bring their own snacks and a drinking bottle.</p><p>The instructors are art educators Andra Sarenius and Saban Ramadani.</p><p>Language: Finnish & English</p><p>Registration<br>Sign up for the fun and playful Caisa summer course! Registration is binding. Possible cancellations as early as possible. Two options to choose from:</p><p>Course 1, week 23, 1.6.–5.6. mon–fri 10 am–2 pm<br>REGISTER VIA THIS LINK: (link opens soon)</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/ED4DCD9E32DEC64648CC445411E403AC/Lavastettu_juttu", "sv": "http://www.caisa.fi/sv/evenemang/event/ED4DCD9E32DEC64648CC445411E403AC/En_iscensatt_affar", "en": "http://www.caisa.fi/en/events/event/ED4DCD9E32DEC64648CC445411E403AC/A_Staged_Affair" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68331/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3vaxwsi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824232, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-23T12:31:20.153927Z", "last_modified_time": "2026-04-23T12:31:20.153943Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b45d2b1a-7e1a-4bf1-8072-db6020243d98.png", "name": "", "cropping": "0,135,1080,1215", "photographer_name": "", "alt_text": "Valkoinen pörröinen koira haukkaa lastenkirjaa. otsikko: Lukineuvontaa Ison Omenan kirjastossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824232/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-23T12:31:49.467293Z", "last_modified_time": "2026-04-23T12:31:49.467309Z", "date_published": null, "start_time": "2026-05-05T14:00:00Z", "end_time": "2026-05-18T15: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, "name": { "fi": "Lukineuvontaa ", "sv": "Läsrådgivning ", "en": "Reading support" }, "short_description": { "fi": "📚💚 Vinkkejä ja tukea oppimiseen", "sv": "📚💚 Tips och stöd för lärande", "en": "📚💚 Tips and support for learning" }, "description": { "fi": "<p>LUKINEUVONTA KIRJASTOISSA</p><p>📚💚 Vinkkejä ja tukea oppimiseen</p><p>Menevätkö sanat solmuun tai numerot sekaisin?</p><p>Hyppiikö teksti riviltä toiselle, tuntuuko lukeminen raskaalta tai onko vaikea hahmottaa kokonaisuuksia ja löytää olennaista?</p><p>Tule Helsingin seudun erilaisten oppijoiden ry:n (HERO) lukineuvontaan!</p><p>Saat rauhallisessa ja kannustavassa ympäristössä käytännön apua oppimisen arkeen.</p><p>Lukineuvonnassa saat:</p><p>✨ tietoa lukivaikeuksista ja muista oppimisen haasteista</p><p>✨ konkreettisia vinkkejä ja helppoja harjoituksia lukemisen ja kirjoittamisen tueksi</p><p>✨ ohjausta hyödyllisiin sovelluksiin ja apuvälineisiin</p><p>(esim. äänikirjat, puheentunnistus, tekstin jäsentämisen työkalut)</p><p>✨ keskusteluapua ja tukea arjen oppimistilanteisiin</p><p>Palvelu on maksutonta, ja neuvontaa antavat HEROn erityisopetuksen ammattilaiset.</p><p>Toisinaan mukana on myös ihastuttava Lukukoira Halla, joka tuo lukutilanteisiin rauhaa, rohkaisua ja hyvää mieltä 🐾</p>", "sv": "<p><br></p><p>📚💚 Tips och stöd för lärande</p><p>Knyter sig orden eller blandas siffrorna ihop?</p><p>Hoppar texten från rad till rad, känns läsningen tung eller är det svårt att se helheter och hitta det väsentliga?</p><p>Kom till läsrådgivningen som ordnas av Helsingforsregionens förening för inlärningssvårigheter (HERO)!</p><p>Du får praktisk hjälp för vardagens lärandesituationer i en lugn och uppmuntrande miljö.</p><p>I läsrådgivningen får du:</p><p>✨ information om lässvårigheter och andra inlärningsutmaningar</p><p>✨ konkreta tips och enkla övningar som stöd för läsning och skrivning</p><p>✨ handledning i användbara appar och hjälpmedel</p><p>(t.ex. ljudböcker, taligenkänning, verktyg för textstrukturering)</p><p>✨ samtalsstöd och hjälp i vardagliga lärandesituationer</p><p>Tjänsten är kostnadsfri, och rådgivningen ges av HEROs specialpedagogiska yrkespersoner.</p><p>Ibland deltar också den underbara läshunden Halla, som sprider lugn, mod och glädje i lässtunderna 🐾</p>", "en": "<p><br></p><p>📚💚 Tips and support for learning</p><p>Do words get tangled or numbers mixed up?</p><p>Does the text jump from line to line, does reading feel heavy, or is it hard to grasp the whole and find the essential?</p><p>Come to the reading support sessions provided by the Helsinki Region Association for Learning Disabilities (HERO)!</p><p>You will receive practical help for everyday learning in a calm and encouraging environment.</p><p>In the reading support sessions, you will get:</p><p>✨ information about reading difficulties and other learning challenges</p><p>✨ concrete tips and simple exercises to support reading and writing</p><p>✨ guidance on useful apps and assistive tools</p><p>(e.g. audiobooks, speech-to-text, text‑structuring tools)</p><p>✨ someone to talk to and support for everyday learning situations</p><p>The service is free of charge, and the guidance is provided by HERO’s special education professionals.</p><p>Sometimes the lovely Reading Dog Halla is also present, bringing calm, courage and good vibes to reading moments 🐾</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": { "fi": "Lukihero", "sv": "Lukihero", "en": "Lukihero" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3vaxwsi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67503", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1824210, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-21T08:13:57.746579Z", "last_modified_time": "2026-04-21T08:13:57.746601Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781611.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824210/?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-04-21T08:13:57.583563Z", "last_modified_time": "2026-04-23T11:13:46.243199Z", "date_published": null, "start_time": "2026-04-25T08:00:00Z", "end_time": "2026-04-25T11: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, "name": { "fi": "Annantalon taidelauantai: Oodi keväälle", "sv": "Annegårdens konstlördag: Ode till våren", "en": "Annantalo Art Saturday: Ode to spring" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Oodi keväälle</b></p><p>Luodaan tauluja kevään paljastamista aarteista. <br>Kierrätystyöpajan ohjaa Noora Puranen</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Ode till våren</b><br>Vi ska skapa tavlor av de skatter som våren avslöjar.<br>Återbruksmaterialworkshopen leds av Noora Puranen.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Ode to spring</b><br>Let's make pictures from treasures revealed by spring.<br>The recycled materials workshop is led by Noora Puranen.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>A warm welcome to Annantalo on Saturdays!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7B7B4313AC5E9336E6D7AB86A34C3B7F/Annantalon_taidelauantai_Oodi_kevaalle", "sv": "http://www.annantalo.fi/sv/evenemang/event/7B7B4313AC5E9336E6D7AB86A34C3B7F/Annegardens_konstlordag_Ode_till_varen", "en": "http://www.annantalo.fi/en/events/event/7B7B4313AC5E9336E6D7AB86A34C3B7F/Annantalo_Art_Saturday_Ode_to_spring" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67503/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67801", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1824205, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-20T13:14:19.193873Z", "last_modified_time": "2026-04-20T13:14:19.193888Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782900.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824205/?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-04-20T13:14:19.042295Z", "last_modified_time": "2026-04-22T14:13:56.505802Z", "date_published": null, "start_time": "2026-06-08", "end_time": "2026-06-12", "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, "name": { "fi": "Kesätaidefillari itähelsinkiläisissä leikkipuistoissa", "sv": "Stoas sommarkonstcykel i lekparkerna", "en": "Stoa’s summer art bicycle at playgrounds" }, "short_description": { "fi": "Tule viettämään kanssamme kesälomaa leikkipuistoissa taiteillen!", "sv": "Kom och fira sommarlovet tillsammans med oss i lekparkerna med konst!", "en": "Come and spend your summer vacation by making art with us at playgrounds!" }, "description": { "fi": "<p>Tule viettämään kanssamme kesälomaa leikkipuistoissa taiteillen!</p><p>Seikkailutaidekoulu kruisailee taidetarvikkeilla lastatulla kuormapyörällä itähelsinkiläisiin leikkipuistoihin 8.–12.6.2026 ja tuo taideterveiset Stoasta!</p><p>Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita. Mukana on myös hengailuvilttejä, riippumattoja, piirustuspaperia, saippuakuplia ja muita mahdollisuuksia matalan kynnyksen osallistumiseen.</p><p>Helsinki-päivänä 12.6. Taidefillari parkkeeraa Stoan aukiolle.<br>Kohderyhmä: lapset ja lapsiperheet <br>Vapaa pääsy, tervetuloa!</p><p>REITTI:</p><p>ma 8.6. <br>klo 10-15 Leikkipuisto Rusthollari</p><p>ti 9.6. <br>klo 10-12 Leikkipuisto Mellunmäki <br>klo 13-15 Leikkipuisto Kiikku <br> <br>ke 10.6. <br>klo 10-11.45 Leikkipuisto Orava <br> <br>to 11.6. <br>klo 10-15 Leikkipuisto Tuorinniemi <br> <br>pe 12.6.</p><p>klo 13-15 Leikkipuisto Iso-Antti</p><p>klo 17-19 Stoan aukio, Helsinki-päivän tapahtuma</p>", "sv": "<p>Kom och fira sommarlovet tillsammans med oss i lekparkerna med konst!</p><p>Äventyrskonstskolans och Stoas gemensamma lådcykel som lastats med konstredskap cruisar runt bland lekparkerna i Östra Helsingfors under den andra veckan i juni.<br> <br>På workshopparna lär vi oss olika lekfulla och experimentella konsttekniker. Cykeln innehåller även filtar att chilla på, hängmattor, ritpapper, såpbubblor och andra möjligheter att delta med låg tröskel. Följ vår färgglada cykel under veckans lopp eller delta i din favoritlekpark.<br> <br>Den exakta rutten publiceras under april.</p><p>På Helsingforsdagen torsdagen 12.6 är konstcykeln parkerad på Stoaplatsen.<br> <br>Målgrupp: barn och barnfamiljer<br>Fritt inträde</p><p>RUTT:</p><p>mon 8.6. <br>10-15 Leikkipuisto Rusthollari</p><p>ti 9.6. <br> 10-12 Leikkipuisto Mellunmäki <br> 13-15 Leikkipuisto Kiikku <br> <br>ons 10.6. <br> 10-11.45 Leikkipuisto Orava <br> <br>tors 11.6. <br> 10-15 Leikkipuisto Tuorinniemi <br> <br>fre 12.6.</p><p>13-15 Leikkipuisto Iso-Antti</p><p>17-19 Stoa , Helsingforsdagen Circus evenemang</p>", "en": "<p>Come and spend your summer vacation by making art with us at playgrounds!</p><p>The shared cargo bike of Seikkailutaidekoulu adventure art school and Stoa loaded with art supplies will be riding on down to playgrounds in East Helsinki in the second week of June.<br> <br>Participants can learn playful and experimental art techniques in the workshops. The cargo bike also carries blankets and hammocks for lounging, paper for drawing, bubbles and many fun things to use for participation at a low threshold. Follow our colourful bike all week or join us at your favourite playground.<br> <br>The details of the route will be published in May. On Helsinki Day, Thursday 12 June, the art bike will be parked in the Stoa square.<br> <br>Target group: children and families with children<br>Free entry</p><p>ROUTE: <br>ma 8.6. <br>klo 10-15 Leikkipuisto Rusthollari</p><p>ti 9.6. <br>klo 10-12 Leikkipuisto Mellunmäki <br>klo 13-15 Leikkipuisto Kiikku <br> <br>ke 10.6. <br>klo 10-11.45 Leikkipuisto Orava <br> <br>to 11.6. <br>klo 10-15 Leikkipuisto Tuorinniemi <br> <br>pe 12.6.</p><p>klo 13-15 Leikkipuisto Iso-Antti</p><p>klo 17-19 Stoa Square, Helsinki Day Circus event</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6EAA0D7324E3366DC97DAEC285EFE57B/Kesataidefillari_itahelsinkilaisissa_leikkipuistoissa", "sv": "http://www.stoa.fi/sv/evenemang/event/6EAA0D7324E3366DC97DAEC285EFE57B/Stoas_sommarkonstcykel_i_lekparkerna", "en": "http://www.stoa.fi/en/events/event/6EAA0D7324E3366DC97DAEC285EFE57B/Stoa_s_summer_art_bicycle_at_playgrounds" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67801/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3kxluu4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824226, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-22T12:38:01.348524Z", "last_modified_time": "2026-04-22T12:38:01.348540Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c2848b1d-760a-4181-8d3d-458fa473897b.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirroskuva MillaMallesta ja valokuba Sipa Pääkkösestä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824226/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-04-22T12:38:53.276331Z", "last_modified_time": "2026-04-22T12:38:53.276354Z", "date_published": null, "start_time": "2026-05-28T15:00:00Z", "end_time": "2026-05-28T15: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, "name": { "fi": "Milla-Malle ja taikamatto – musiikkipitoinen satutuokio lapsille", "sv": "Milla-Malle och den magiska mattan – ett musikfyllt sagostund för barn på finska", "en": "Milla-Malle and the magic carpet – a music-filled storytime for children in Finnish" }, "short_description": { "fi": "Milla-Malle ja taikamatto – musiikkipitoinen satutuokio lapsille.", "sv": "Milla-Malle och den magiska mattan – ett musikfyllt sagostund för barn på finska.", "en": "Milla-Malle and the magic carpet – a music-filled storytime for children in Finnish." }, "description": { "fi": "<p>Sellon kirjaston Jaminurkka 28. toukokuuta klo 18.</p><p>Milla-Mallen lelunallet Nökö ja Nössö virkkaavat yhtenä yönä taikamaton, jolla kolmikko lähtee seikkailemaan. Retki vie Afrikkaan saakka, jossa kohdataan kirahvi, norsu ja leijona. Afrikassa on myös pieni poika nimeltä Bobo, johon Milla-Malle tutustuu pienessä kylässä. Siellä lauletaan, tanssitaan ja syödään maukasta kasviskeittoa.</p><p>Tietokirjailija ja toimittaja Sirpa Pääkkösen kirjoittama satu Milla-Malle ja taikamatto ruokkii lasten mielikuvitusta, sillä sadussa kaikki on mahdollista. Matto lentää ja nallet ja eläimet osaavat puhua. Milla-Malle ja nallet kokevat erilaisia tunteita matkan aikana: rohkeutta, uteliaisuutta, läheisyyttä ja koti-ikävää. </p><p>Sadun kerrontaa elävöittää musiikki. Satuhetkessä on mukana laulajia Käpylän musiikkiopistossa toimivasta Mataleena-lauluryhmästä. </p><p>Satutuokio on samalla Milla-Malle ja taikamatto -äänikirjan julkaisutilaisuus. Satu ilmestyy äänikirjana, jonka julkaisee äänikirjakustantamo BookGarden.</p><p>Ikäsuositus yli 3-vuotialle. Vapaa pääsy.</p>", "sv": "<p>Milla-Malle och den magiska mattan – ett musikfyllt sagostund för barn på finska.</p>", "en": "<p>Milla-Malle and the magic carpet – a music-filled storytime for children in Finnish.</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3kxluu4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68485", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821525, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T13:13:11.427520Z", "last_modified_time": "2026-04-16T13:13:11.427536Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786032.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821525/?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-04-16T13:13:11.218671Z", "last_modified_time": "2026-04-22T11:14:05.692121Z", "date_published": null, "start_time": "2026-06-16T07: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, "name": { "fi": "Annantalon Kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo’s summertime music playschools" }, "short_description": { "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>", "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>", "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BC9D504186D8B631D8F39E7E4748646F/Annantalon_Kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/BC9D504186D8B631D8F39E7E4748646F/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/BC9D504186D8B631D8F39E7E4748646F/Annantalo_s_summertime_music_playschools" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68485/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68484", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821524, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T13:13:10.721163Z", "last_modified_time": "2026-04-16T13:13:10.721179Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786031.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821524/?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-04-16T13:13:10.504689Z", "last_modified_time": "2026-04-22T11:14:05.378102Z", "date_published": null, "start_time": "2026-06-16T06: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, "name": { "fi": "Annantalon Kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo’s summertime music playschools" }, "short_description": { "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>", "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>", "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2E4F078CB7D8BADCAB4AE61AE4AE1338/Annantalon_Kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/2E4F078CB7D8BADCAB4AE61AE4AE1338/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/2E4F078CB7D8BADCAB4AE61AE4AE1338/Annantalo_s_summertime_music_playschools" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68484/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68483", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821523, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T13:13:09.064115Z", "last_modified_time": "2026-04-16T13:13:09.064130Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786029.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821523/?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-04-16T13:13:08.826942Z", "last_modified_time": "2026-04-22T11:14:03.877176Z", "date_published": null, "start_time": "2026-06-09T07: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, "name": { "fi": "Annantalon Kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo’s summertime music playschools" }, "short_description": { "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>", "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>", "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/27AF1F9BBC1F58DCED930BCEA36AC50F/Annantalon_Kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/27AF1F9BBC1F58DCED930BCEA36AC50F/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/27AF1F9BBC1F58DCED930BCEA36AC50F/Annantalo_s_summertime_music_playschools" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68483/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68482", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821522, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T13:13:08.154349Z", "last_modified_time": "2026-04-16T13:13:08.154370Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786028.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821522/?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-04-16T13:13:07.899025Z", "last_modified_time": "2026-04-22T11:14:03.583533Z", "date_published": null, "start_time": "2026-06-09T06: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, "name": { "fi": "Annantalon Kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo’s summertime music playschools" }, "short_description": { "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>", "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>", "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/AAA722D2DB8DF40F96B4C6E1F4A80035/Annantalon_Kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/AAA722D2DB8DF40F96B4C6E1F4A80035/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/AAA722D2DB8DF40F96B4C6E1F4A80035/Annantalo_s_summertime_music_playschools" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68482/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68481", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821521, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T13:13:06.931394Z", "last_modified_time": "2026-04-16T13:13:06.931409Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786024.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821521/?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-04-16T13:13:06.729849Z", "last_modified_time": "2026-04-22T11:14:02.275760Z", "date_published": null, "start_time": "2026-06-02T07: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, "name": { "fi": "Annantalon Kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo’s summertime music playschools" }, "short_description": { "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>", "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>", "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8923CF1215AE5E8BE7BF0815A4F7733A/Annantalon_Kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/8923CF1215AE5E8BE7BF0815A4F7733A/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/8923CF1215AE5E8BE7BF0815A4F7733A/Annantalo_s_summertime_music_playschools" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68481/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68480", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821520, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T13:13:06.156812Z", "last_modified_time": "2026-04-16T13:13:06.156827Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786023.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821520/?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-04-16T13:13:05.907660Z", "last_modified_time": "2026-04-22T11:14:01.843572Z", "date_published": null, "start_time": "2026-06-02T06: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, "name": { "fi": "Annantalon Kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo’s summertime music playschools" }, "short_description": { "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>", "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>", "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2CC386A38644A1CEB7434516AC9592FE/Annantalon_Kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/2CC386A38644A1CEB7434516AC9592FE/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/2CC386A38644A1CEB7434516AC9592FE/Annantalo_s_summertime_music_playschools" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68480/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3isyvua", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824223, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-22T07:46:42.686218Z", "last_modified_time": "2026-04-22T07:46:57.996074Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e89abe4-6887-4c1c-a350-eabd4e4d6451.png", "name": "", "cropping": "295,0,1705,1410", "photographer_name": "", "alt_text": "Vaaleansinisellä pohjalla värikkäitä viirejä, kirja, sekä tekstit: \"Satuhetki\" ja \"Lastenkulttuurin juhlaviikko\"", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824223/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-04-22T07:56:06.355656Z", "last_modified_time": "2026-04-22T07:56:06.355672Z", "date_published": null, "start_time": "2026-05-20T15:00:00Z", "end_time": "2026-05-20T21: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, "name": { "fi": "Satumainen satuhetki" }, "short_description": { "fi": "Satuhetki Stagella" }, "description": { "fi": "<p>Yhtenä päivänä viidakkoon ilmestyy herkullisen näköinen eksoottinen hedelmä, jota kaikki norsut haluavat maistaa. Mutta miten hedelmän saisi alas puusta? </p><p>Tule kuulemaan satua yhteistyön riemukkaasta voimasta Ison Omenan kirjaston Stagelle 20.5. klo 18. Satuhetki sopii kaikenikäisille, satu luetaan suomeksi. </p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Stage" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3isyvua/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67500", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494175, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T12:13:31.213517Z", "last_modified_time": "2025-12-10T12:13:31.213538Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781607.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494175/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-10T12:13:31.123089Z", "last_modified_time": "2026-04-21T05:14:02.007034Z", "date_published": null, "start_time": "2026-05-16T08:00:00Z", "end_time": "2026-05-16T11: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, "name": { "fi": "Annantalon taidelauantai: Fragmentit framille", "sv": "Annegårdens konstlördagar: Fram med fragmenten", "en": "Annantalo Art Saturdays: Fragments to the front" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Fragmentit framille</b></p><p>Annantalon kakkoskerrokseen on ilmestynyt kuvia vanhoista taideteoksista. Millaisia yksityiskohtia taideteoksissa on piilossa? Millaisia kuvia syntyisi, jos yhdistelisimmekin eri teosten palasia?</p><p>Työpajassa katsotaan taideteoksia tarkasti ja leikitään sommittelulla.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Fram med fragmenten</b><br>På Annegårdens andra våning har det dykt upp bilder på gamla konstverk. Vilken typ av detaljer döljer sig i konstverken? Hurdana bilder uppstår om vi kombinerar delar av olika verk?<br>Under verkstaden undersöker vi konstverken noga och leker med kompositionerna.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Fragments to the front</b><br>Pictures of old works of art have appeared on the second floor of Annantalo. What kind of details are hidden in the artworks? What kind of images would we get if we were to combine pieces of different works?<br>This workshop involves examining artworks and playing with image composition.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B4E81D44F4ED4BDACF091196616D6C87/Annantalon_taidelauantai_Fragmentit_framille", "sv": "http://www.annantalo.fi/sv/evenemang/event/B4E81D44F4ED4BDACF091196616D6C87/Annegardens_konstlordagar_Fram_med_fragmenten", "en": "http://www.annantalo.fi/en/events/event/B4E81D44F4ED4BDACF091196616D6C87/Annantalo_Art_Saturdays_Fragments_to_the_front" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67500/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67505", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494649, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-27T11:13:08.471193Z", "last_modified_time": "2026-01-27T11:13:08.471215Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781613.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494649/?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-27T11:13:08.353468Z", "last_modified_time": "2026-04-21T05:13:57.861462Z", "date_published": null, "start_time": "2026-05-02T08:00:00Z", "end_time": "2026-05-02T11: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, "name": { "fi": "Annantalon taidelauantai: Kämpillä", "sv": "Annegårdens konstlördagar: Kämpillä – I folks lyor", "en": "Annantalo Art Saturdays: In the apartment" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Kämpillä</b></p><p>Kenen koira on karannut naapuriin? Mitä piileskelee ullakolla? Keneltä on unohtunut puurokattila liedelle?</p><p>Annantalon taidelauantain avoimessa työpajassa pääset piirtämään oman huoneen yhteiseen kerrostaloon, jonka ikkunoiden takaa avautuu mitä kummallisempia tapahtumia. Mitä kummaa sinun kämpässäsi tapahtuu? Yhteinen teos jää osaksi Annantalon 2krs käytävän näyttelyä.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Kämpillä – I folks lyor</b><br>Vems hund har sprungit till grannen? Vad är det som gömmer sig på vinden? Vem har glömt grötkastrullen på spisen?</p><p>I den öppna verkstaden under Annegårdens konstlördag kan du rita ditt eget rum i ett gemensamt höghus, där de märkligaste saker händer bakom fönstren. Vad för konstigt händer i din lya? Det gemensamma verket blir en del av utställningen i korridoren på andra våningen i Annegården.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.<br>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>In the apartment</b><br>Whose dog has run away and gone next door? What is hiding in the attic? Who forgot their porridge pot on the stove? <br>At this Annantalo Art Monday open workshop, you will get to draw your own room in a shared apartment building, where the strangest things can be seen happening outside through the windows. What strange things are going on in your apartment? The resulting joint work will be featured in an exhibition in the second-floor corridor of Annantalo.</p><p>Annantalo Art Saturday <br>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.<br>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E40831796619500107B59BE84D983F17/Annantalon_taidelauantai_Kampilla", "sv": "http://www.annantalo.fi/sv/evenemang/event/E40831796619500107B59BE84D983F17/Annegardens_konstlordagar_Kampilla_I_folks_lyor_", "en": "http://www.annantalo.fi/en/events/event/E40831796619500107B59BE84D983F17/Annantalo_Art_Saturdays_In_the_apartment_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67502", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494282, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T09:14:28.478001Z", "last_modified_time": "2025-12-22T09:14:28.478017Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781609.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494282/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-22T09:14:28.365338Z", "last_modified_time": "2026-04-21T05:13:52.993225Z", "date_published": null, "start_time": "2026-04-18T08:00:00Z", "end_time": "2026-04-18T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Annantalon taidelauantai: Hyvän unen apurit", "sv": "Annegårdens konstlördagar: Medhjälpare för god sömn", "en": "Annantalo Art Saturdays: Good sleep helpers" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Hyvän unen apurit</b></p><p>Mikä avuksi, kun uni ei meinaa tulla ja mielessä pyörii askarruttavia ajatuksia? Tule Annantalon taidelauantaihin rakentamaan pieni tyynyn alle yöksi laitettava nukkekaveri. Guatemalan vuoristossa asuneiden Maya -intiaanien tarinan mukaan nuket murehtivat huolet yön aikana piiloon taaten unennäkijälle rauhalliset yöunet. Nuket tehdään puutikuista ja rautalangasta, eri värisistä langoista ja kangastilkuista. Tule tekemään oma huolinukkesi ja nuku hyvin!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Medhjälpare för god sömn</b><br>Vad kan hjälpa när du inte kan somna och tankarna snurrar i huvudet? Kom till Annegårdens konstlördagar och bygg en liten dockvän som du kan lägga under kudden till natten. Enligt en berättelse från mayaindianerna i bergen i Guatemala tar dockor hand om alla bekymmer under natten och garanterar en fridfull natts sömn för sovaren. Dockorna tillverkas av träpinnar, järntråd, olikfärgade garner och tygbitar. Kom och gör din egen orosdocka och sov gott!</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b> Good sleep helpers</b><br>What can you do if you are unable to fall asleep and have things weighing on your mind? Come to Annantalo’s Art Monday to build a little doll friend that you can put under your pillow for the night. According to a Mayan legend from the mountains of Guatemala, such dolls would hide the sleeper’s worries for the night, ensuring a peaceful night’s sleep. The dolls are made from wooden sticks and wire, different coloured yarns and fabric patches. Come make your own worry doll and sleep well!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/43E96A2C24D12BBA79ECA7FA80313A29/Annantalon_taidelauantai_Hyvan_unen_apurit", "sv": "http://www.annantalo.fi/sv/evenemang/event/43E96A2C24D12BBA79ECA7FA80313A29/Annegardens_konstlordagar_Medhjalpare_for_god_somn", "en": "http://www.annantalo.fi/en/events/event/43E96A2C24D12BBA79ECA7FA80313A29/Annantalo_Art_Saturdays_Good_sleep_helpers" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67502/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67501", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1644063, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T15:13:30.779982Z", "last_modified_time": "2026-03-16T15:13:30.780001Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781608.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1644063/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-03-16T15:13:30.681865Z", "last_modified_time": "2026-04-21T05:13:46.752352Z", "date_published": null, "start_time": "2026-03-28T09:00:00Z", "end_time": "2026-03-28T12: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, "name": { "fi": "Annantalon taidelauantai: Tunneduunarin kunniamerkki", "sv": "Annantalon taidelauantai: Tunneduunarin kunniamerkki", "en": "Annantalon taidelauantai: Tunneduunarin kunniamerkki" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Tunneduunarin kunniamerkki</b><br>Työpajassa valmistetaan väripapereista, metallikartongeista ja nauhoista askarrellen upea tunneduunarin arvomerkki. Onko se sinulle, vai haluatko antaa sen jollekulle toiselle, joka myös on ansioitunut tunnetaitotreenissä? Missä merkin saaja on onnistunut?</p><p>Työpaja liittyy Annantalon kahvilan Tunnemuskelit-kuvitusnäyttelyyn ja sen ohjaajana toimii kuvittaja Satu Kettunen.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/690B72008A53B2F51E3992CB21CB1053/Annantalon_taidelauantai_Tunneduunarin_kunniamerkki", "sv": "http://www.annantalo.fi/sv/evenemang/event/690B72008A53B2F51E3992CB21CB1053/Annantalon_taidelauantai_Tunneduunarin_kunniamerkki_", "en": "http://www.annantalo.fi/en/events/event/690B72008A53B2F51E3992CB21CB1053/Annantalon_taidelauantai_Tunneduunarin_kunniamerkki_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67501/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67499", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494174, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T12:13:27.641592Z", "last_modified_time": "2025-12-10T12:13:27.641607Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781606.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494174/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-10T12:13:27.550583Z", "last_modified_time": "2026-04-21T05:13:43.804796Z", "date_published": null, "start_time": "2026-03-21T09:00:00Z", "end_time": "2026-03-21T12: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, "name": { "fi": "Annantalon taidelauantai: Fragmentit framille", "sv": "Annegårdens konstlördagar: Fram med fragmenten", "en": "Annantalo Art Saturdays: Fragments to the front" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Fragmentit framille</b><br>Annantalon kakkoskerrokseen on ilmestynyt kuvia vanhoista taideteoksista. Millaisia yksityiskohtia taideteoksissa on piilossa? Millaisia kuvia syntyisi, jos yhdistelisimmekin eri teosten palasia?<br>Työpajassa katsotaan taideteoksia tarkasti ja leikitään sommittelulla.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Fram med fragmenten</b><br>På Annegårdens andra våning har det dykt upp bilder på gamla konstverk. Vilken typ av detaljer döljer sig i konstverken? Hurdana bilder uppstår om vi kombinerar delar av olika verk?<br>Under verkstaden undersöker vi konstverken noga och leker med kompositionerna.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Fragments to the front</b><br>Pictures of old works of art have appeared on the second floor of Annantalo. What kind of details are hidden in the artworks? What kind of images would we get if we were to combine pieces of different works?<br>This workshop involves examining artworks and playing with image composition.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0A69CF3E4C62E3C642C84F140B53111B/Annantalon_taidelauantai_Fragmentit_framille", "sv": "http://www.annantalo.fi/sv/evenemang/event/0A69CF3E4C62E3C642C84F140B53111B/Annegardens_konstlordagar_Fram_med_fragmenten", "en": "http://www.annantalo.fi/en/events/event/0A69CF3E4C62E3C642C84F140B53111B/Annantalo_Art_Saturdays_Fragments_to_the_front" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67499/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67506", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494294, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T14:13:41.702341Z", "last_modified_time": "2025-12-22T14:13:41.702356Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781614.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494294/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-22T14:13:41.590534Z", "last_modified_time": "2026-04-21T05:13:40.641268Z", "date_published": null, "start_time": "2026-03-14T09:00:00Z", "end_time": "2026-03-14T12: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, "name": { "fi": "Annantalon taidelauantai: Pöytäteatterin taikaa", "sv": "Annegårdens konstlördag: Bordsteaterns magi", "en": "Annantalo Art Saturday: Magic of tabletop theatre!" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Pöytäteatterin taikaa!</b></p><p>Mitä ihmettä? Linnan puutarha ja piha ovat tyhjillään. Missä kaikki asukkaat ovat? Tule piirtämään ja suunnittelemaan oma hahmosi. Lentääkö linnan puutarhassa perhoset ja linnut? Asuuko linnassa mörkö ja kana, vai joku muu?</p><p>Työpajan ohjaa Anne Lihavainen ja se on osa Bravo! -Festivaalin ohjelmaa Annantalossa.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Bordsteaterns magi!</b><br>Men vad nu? Slottets gård och trädgård är helt tomma. Var är alla som brukar bo där? Kom med och rita och designa en egen figur. Flyger det fjärilar och fåglar i slottets trädgård? Bor det ett monster och en höna i slottet, eller kanske någon annan?</p><p>Välkommen att delta i workshoppar och skapa konst!</p><p>Ledare Anne Lihavainen<br>Workshoppen ingår i Bravo! -festivalens program.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Magic of tabletop theatre</b><br>What on earth? The castle garden and courtyard are all empty. Where are all the residents? Come along to design and draw your own character. Do birds and butterflies fly around the castle garden? Is the castle a home to a bogeyman and a chicken or to something else?</p><p>Join the workshop and make some art!</p><p>Hosted by Anne Lihavainen<br>The workshop is part of the programme of Sampo Festival.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/32CD792B81F72AF0C4D3C2365500487E/Annantalon_taidelauantai_Poytateatterin_taikaa", "sv": "http://www.annantalo.fi/sv/evenemang/event/32CD792B81F72AF0C4D3C2365500487E/Annegardens_konstlordag_Bordsteaterns_magi", "en": "http://www.annantalo.fi/en/events/event/32CD792B81F72AF0C4D3C2365500487E/Annantalo_Art_Saturday_Magic_of_tabletop_theatre_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67506/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67498", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494291, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T14:13:39.043729Z", "last_modified_time": "2025-12-22T14:13:39.043751Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781605.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494291/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-22T14:13:38.942892Z", "last_modified_time": "2026-04-21T05:13:37.917782Z", "date_published": null, "start_time": "2026-03-07T09:00:00Z", "end_time": "2026-03-07T12: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, "name": { "fi": "Annantalon taidelauantai: Kämpillä", "sv": "Annegårdens konstlördagar: Kämpillä – I folks lyor", "en": "Annantalo Art Saturdays: In the apartment" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Kämpillä</b></p><p>Kenen koira on karannut naapuriin? Mitä piileskelee ullakolla? Keneltä on unohtunut puurokattila liedelle?</p><p>Annantalon taidelauantain avoimessa työpajassa pääset piirtämään oman huoneen yhteiseen kerrostaloon, jonka ikkunoiden takaa avautuu mitä kummallisempia tapahtumia. Mitä kummaa sinun kämpässäsi tapahtuu? Yhteinen teos jää osaksi Annantalon 2krs käytävän näyttelyä.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Kämpillä – I folks lyor</b><br>Vems hund har sprungit till grannen? Vad är det som gömmer sig på vinden? Vem har glömt grötkastrullen på spisen?</p><p>I den öppna verkstaden under Annegårdens konstlördag kan du rita ditt eget rum i ett gemensamt höghus, där de märkligaste saker händer bakom fönstren. Vad för konstigt händer i din lya? Det gemensamma verket blir en del av utställningen i korridoren på andra våningen i Annegården.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.<br>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>In the apartment</b><br>Whose dog has run away and gone next door? What is hiding in the attic? Who forgot their porridge pot on the stove? <br>At this Annantalo Art Monday open workshop, you will get to draw your own room in a shared apartment building, where the strangest things can be seen happening outside through the windows. What strange things are going on in your apartment? The resulting joint work will be featured in an exhibition in the second-floor corridor of Annantalo.</p><p>Annantalo Art Saturday <br>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.<br>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/42996AFC72CDB97F4160456779FFA7A6/Annantalon_taidelauantai_Kampilla", "sv": "http://www.annantalo.fi/sv/evenemang/event/42996AFC72CDB97F4160456779FFA7A6/Annegardens_konstlordagar_Kampilla_I_folks_lyor_", "en": "http://www.annantalo.fi/en/events/event/42996AFC72CDB97F4160456779FFA7A6/Annantalo_Art_Saturdays_In_the_apartment_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67498/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67497", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494645, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-27T08:13:00.233390Z", "last_modified_time": "2026-01-27T08:13:00.233410Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781604.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494645/?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-27T08:13:00.144327Z", "last_modified_time": "2026-04-21T05:13:35.275711Z", "date_published": null, "start_time": "2026-02-28T09:00:00Z", "end_time": "2026-02-28T12: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, "name": { "fi": "Annantalon taidelauantai: Nastat kortit", "sv": "Annegårdens konstlördag", "en": "Annantalo Art Saturday: Pin Me a Picture" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Nastat kortit</b></p><p>Pistele reikiä paperikorttiin luodaksesi kauniita pitsimäisiä kuvioita. Rauhallista ja piikikästä puuhaa!<br> <br>Alle kouluikäisille aikuisen kanssa.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaa Chloé Mahy.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p>Gör hål i ett papperskort för att skapa vackra spetsliknande mönster. En rogivande och lite stickig aktivitet!<br> <br>För barn under 7 år i sällskap av en vuxen.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen led av Chloé Mahy.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Pin Me a Picture</b></p><p>Punch holes on a paper card to create beautiful lacey patterns. Soothing and prickly business!</p><p>For kids under 7 with an adult.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by Chloé Mahy.</p><p>A warm welcome to Annantalo on Saturdays!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/230927E0E7D4B562A3BD87B0143473B8/Annantalon_taidelauantai_Nastat_kortit", "sv": "http://www.annantalo.fi/sv/evenemang/event/230927E0E7D4B562A3BD87B0143473B8/Annegardens_konstlordag", "en": "http://www.annantalo.fi/en/events/event/230927E0E7D4B562A3BD87B0143473B8/Annantalo_Art_Saturday_Pin_Me_a_Picture" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67497/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }