Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_super_event=true&page=127
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=128", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=126" }, "data": [ { "id": "espoo_le:agp5bucld4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385695, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T06:19:32.399789Z", "last_modified_time": "2026-08-05T06:19:32.399810Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/7d09cf02-fc2c-4583-baad-e1833ea10ae0.jpg", "name": "", "cropping": "340,0,643,302", "photographer_name": "", "alt_text": "Kuvassa on naisia ja yksi lapsi ja siinä lukee mothers in business", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385695/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-05T06:46:55.609325Z", "last_modified_time": "2026-08-05T06:46:55.609341Z", "date_published": null, "start_time": "2026-08-26T11:45:00Z", "end_time": "2026-08-26T14:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": { "fi": "Mothers in Business ja FYP Marketing", "sv": "Mothers in Business och FYP Marketing", "en": "Mothers in Business and FYP Marketing" }, "name": { "fi": "Mothers in Business Career: Markkinoinnin Tehopäivä: MiB x FYP Marketing – Espoo & Zoom", "sv": "Mothers in Business Career: Markkinoinnin Tehopäivä: MiB x FYP Marketing – Esbo & Zoom (Evenemanget hålls på finska)", "en": "Mothers in Business Career: Markkinoinnin Tehopäivä: MiB x FYP Marketing – Espoo & Zoom (The event is in finnish)" }, "description": { "fi": "<p>Asiantuntijoiden vinkit, keskustelua markkinoinnista ja verkostoitumista. </p><p>Elokuussa sukelletaan markkinoinnin maailmaan. MiB (Mothers in Business) ja FYP Marketing järjestävät Markkinoinnin Tehopäivän 26.8.2026 klo 14:45 - 17:15,, jossa saat selkeitä ja käytännönläheisiä vinkkejä markkinoinnin kehittämiseen. Voit osallistua paikan päällä Lippulaivan kirjaston Salongissa tai Zoomin kautta. Tilaisuus tallennetaan. Mukaan mahtuu 50 äitiä lapsineen, sekä 50 äitiä jotka saapuvat yksin. Etäosallistujille on varattu 200 paikkaa. Huomaathan, ettei osallistumistyyppiä voi vaihtaa ilmoittautumisen jälkeen.</p><p> Ilmoittaudu mukaan täällä: <a href=\"https://www.lyyti.fi/reg/MiB_Career_Markkinoinnin_Tehopaiva_MiB_x_FYP_Marketing__Espoo__Zoom_9040\">https://www.lyyti.fi/reg/MiB_Career_Markkinoinnin_Tehopaiva_MiB_x_FYP_Marketing__Espoo__Zoom_9040</a></p><p>Tilaisuus sopii kaikille, jotka haluavat oppia lisää nykyaikaisesta markkinoinnista, saada uusia ideoita ja tavata muita markkinoinnista kiinnostuneita. Voit osallistua paikan päällä tai Zoomin kautta. Paikan päälle tulevat saavat mukaansa FYP Marketingin Edullista brändäämistä -materiaalipaketin, joka sisältää käytännön esimerkkejä ja valmiita malleja oman markkinoinnin tueksi.</p><p> </p><p>Ohjelma</p><p>14.45 Ovet aukeaa</p><p>15.00 Asiantuntijoiden vinkit ja keskustelua markkinoinnista</p><p>16.00 Verkostoitumista</p><p>17.00 Tilaisuus päättyy</p><p>17.15 Ovet sulkeutuvat</p><p> </p><p>Tilaisuus järjestetään Lippulaivan kirjaston monitoimitila Salongissa sekä Zoomissa.</p><p> </p><p>FYP Marketing on luova markkinointitoimisto, joka tarjoaa helposti lähestyttäviä ja käytännöllisiä markkinoinnin palveluja.</p><p>Lisätietoja: www.fypmarketing.fi</p><p> </p><p>Tämä tapahtuman on avoin kaikille kiinnostuneille.</p><p>Kasva ammatillisesti ja osallistu tapahtumiimme lapsi kainalossa! Lapset ovat aina lämpimästi tervetulleita mukaan MiBin tapahtumiin. Joissakin tapahtumissamme saattaa olla osallistujarajoituksia tapahtumatilojen koon vuoksi. Sylivauvan kanssa voit aina osallistua, vaikka et mahtuisi ilmoittautumaan äiti-lapsi-paikalle. Varauduthan silloin siihen, että vaunut eivät välttämättä mahdu tapahtumatilaan sisään.</p>", "sv": "<p>MiB (Mothers in Business) och FYP Marketing anordnar evenemanget ”Markkinoinnin Tehopäivä” den 26 augusti 2026, kl. 14.45–17.15 på Salonki. Välkomna!</p><p>Anmälan via denna länk: <a href=\"https://www.lyyti.fi/reg/MiB_Career_Markkinoinnin_Tehopaiva_MiB_x_FYP_Marketing__Espoo__Zoom_9040\">https://www.lyyti.fi/reg/MiB_Career_Markkinoinnin_Tehopaiva_MiB_x_FYP_Marketing__Espoo__Zoom_9040</a></p><p>Evenemanget hålls på finska.</p>", "en": "<p>MiB (Mothers in Business) and FYP Marketing are hosting Markkinoinnin Tehopäivä-event on August 26, 2026, from 2:45 p.m. to 5:15 p.m. at Salonki. Welcome!</p><p>Registration through this link: <a href=\"https://www.lyyti.fi/reg/MiB_Career_Markkinoinnin_Tehopaiva_MiB_x_FYP_Marketing__Espoo__Zoom_9040\">https://www.lyyti.fi/reg/MiB_Career_Markkinoinnin_Tehopaiva_MiB_x_FYP_Marketing__Espoo__Zoom_9040</a></p><p>The event is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "MiB (Mothers in Business) ja FYP Marketing järjestävät Markkinoinnin Tehopäivän 26.8.2026 klo 14:45 - 17:15 Salongissa. Tervetuloa!", "sv": "MiB (Mothers in Business) och FYP Marketing anordnar evenemanget ”Markkinoinnin Tehopäivä” den 26 augusti 2026, kl. 14.45–17.15 på Salonki. Välkomna!", "en": "MiB (Mothers in Business) and FYP Marketing are hosting Markkinoinnin Tehopäivä-event on August 26, 2026, from 2:45 p.m. to 5:15 p.m. at Salonki. Welcome!" }, "info_url": { "fi": "https://www.lyyti.fi/reg/MiB_Career_Markkinoinnin_Tehopaiva_MiB_x_FYP_Marketing__Espoo__Zoom_9040", "sv": "https://www.lyyti.fi/reg/MiB_Career_Markkinoinnin_Tehopaiva_MiB_x_FYP_Marketing__Espoo__Zoom_9040", "en": "https://www.lyyti.fi/reg/MiB_Career_Markkinoinnin_Tehopaiva_MiB_x_FYP_Marketing__Espoo__Zoom_9040" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5bucld4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69312", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385693, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T06:14:18.161555Z", "last_modified_time": "2026-08-05T06:14:18.161575Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793735.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385693/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-05T06:14:18.038483Z", "last_modified_time": "2026-08-05T06:14:18.342148Z", "date_published": null, "start_time": "2026-11-25T08:15:00Z", "end_time": "2026-11-25T08:50: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, "location_extra_info": null, "provider": null, "name": { "fi": "Skidikino: Antonia Ringbom – Keltaisen kirahvin eläintarinoita 1" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii varhaiskasvatuksen ryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Tänä syksynä katsellaan suosittuja Keltainen kirahvi -animaatioita. Rakastettavat ja sisintä lämmittävät runolliset tarinat kiehtovat taianomaisuudellaan. Yhdessä animaation hehkuvien värien ja upeiden yksityiskohtien sekä huumorin kanssa näistä tarinoista välittyy lämpöä, joka valloittaa ja koskettaa ikään katsomatta. Sarjan kertoja, Keltainen kirahvi, seikkailee tarinoissa eri puolilla maailmaa ja tapaa retkillään eläinystäviään. Jokaiseen tarinaan sisältyy eläimestä kertova tunnettu runo. <br> <br>Palkittu kuvittaja ja animaattori <b>Antonia Ringbom</b> (s.1946) Korppoosta on työskennellyt Yleisradiossa ja toiminut itsenäisenä ohjaaja/tuottajana. sekä perustanut Senegaliin tytöille animaatiokoulun.</p><p>Elokuva koostuu 7 min lyhytelokuvista, jotka näytetään kahdessa erässä: <br>• kl. 9.15 | Vanha vesirotta, Varpusherra, Kohtaaminen, Kissa ja kuu, Veli Aurinko sisar Kuu, Karhun rukous. 42 min. <br>• kl. 10.15 | Mammutti, Sataman koira, Keväinen vuono, Pantteri, Kuu, Merkillinen tapiiri. 42 min.<br> <br>Skidikinoihin liittyy <u><a href=\"https://www.stoa.fi/fi/paivakodeille\">Pikkukroko-oppimateriaali</u></a>, jonka voi ladata Stoan nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Ikäsuositus: 3–6 v.<br>Kesto: noin 45 min<br>Kieli: suomi<br>Paikka: teatterisali <br>Vapaa pääsy, <u><a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\">ryhmille pakolliset ilmoittautumiset osoitteessa kultus.hel.fi</u></a> 18.8. klo 10 alkaen.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii varhaiskasvatuksen ryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/55A0D8E150B0FB0E0240A35066816C45/Skidikino_Antonia_Ringbom_Keltaisen_kirahvin_elaintarinoita_1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69312/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69311", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385692, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T06:14:17.581668Z", "last_modified_time": "2026-08-05T06:14:17.581683Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793734.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385692/?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-08-05T06:14:17.439786Z", "last_modified_time": "2026-08-05T06:14:17.845807Z", "date_published": null, "start_time": "2026-11-25T07:30:00Z", "end_time": "2026-11-25T08:10: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, "location_extra_info": null, "provider": null, "name": { "fi": "Skidikino: Antonia Ringbom – Keltaisen kirahvin eläintarinoita 1" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii varhaiskasvatuksen ryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Tänä syksynä katsellaan suosittuja Keltainen kirahvi -animaatioita. Rakastettavat ja sisintä lämmittävät runolliset tarinat kiehtovat taianomaisuudellaan. Yhdessä animaation hehkuvien värien ja upeiden yksityiskohtien sekä huumorin kanssa näistä tarinoista välittyy lämpöä, joka valloittaa ja koskettaa ikään katsomatta. Sarjan kertoja, Keltainen kirahvi, seikkailee tarinoissa eri puolilla maailmaa ja tapaa retkillään eläinystäviään. Jokaiseen tarinaan sisältyy eläimestä kertova tunnettu runo. <br> <br>Palkittu kuvittaja ja animaattori <b>Antonia Ringbom</b> (s.1946) Korppoosta on työskennellyt Yleisradiossa ja toiminut itsenäisenä ohjaaja/tuottajana. sekä perustanut Senegaliin tytöille animaatiokoulun.</p><p>Elokuva koostuu 7 min lyhytelokuvista, jotka näytetään kahdessa erässä: <br>• kl. 9.15 | Vanha vesirotta, Varpusherra, Kohtaaminen, Kissa ja kuu, Veli Aurinko sisar Kuu, Karhun rukous. 42 min. <br>• kl. 10.15 | Mammutti, Sataman koira, Keväinen vuono, Pantteri, Kuu, Merkillinen tapiiri. 42 min.<br> <br>Skidikinoihin liittyy <u><a href=\"https://www.stoa.fi/fi/paivakodeille\">Pikkukroko-oppimateriaali</u></a>, jonka voi ladata Stoan nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Ikäsuositus: 3–6 v.<br>Kesto: noin 45 min<br>Kieli: suomi<br>Paikka: teatterisali <br>Vapaa pääsy, <u><a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\">ryhmille pakolliset ilmoittautumiset osoitteessa kultus.hel.fi</u></a> 18.8. klo 10 alkaen.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii varhaiskasvatuksen ryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/37E005A07FF34900457F9B4923156AF1/Skidikino_Antonia_Ringbom_Keltaisen_kirahvin_elaintarinoita_1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69311/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69539", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385391, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-26T13:14:10.107272Z", "last_modified_time": "2026-06-26T13:14:10.107289Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783812.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385391/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-06-26T13:14:09.930479Z", "last_modified_time": "2026-08-05T06:13:53.720369Z", "date_published": null, "start_time": "2026-08-29T14:00:00Z", "end_time": "2026-08-29T17: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, "location_extra_info": null, "provider": null, "name": { "fi": "VuoRock – Nuorten bänditapahtuma", "sv": "VuoRock", "en": "VuoRock" }, "description": { "fi": "<p>Vuosaaren nuorten tuottamassa bänditapahtumassa kuullaan loppukesän tarttuvimmat riffit ja rosoisimmat säröt, kun neljä bändiä päästetään irti ja rokki soi!</p><p>VuoRock tuo lavalle neljä huikeaa nuorten bändiä, joiden musiikissa kuullaan metalli-, punk- ja heavy rock –soundeja.</p><p>Tapahtuma on tuotettu Vuosaaren nuorten omasta toimeliaisuudesta ja toiveista käsin. Tässä tapahtumassa pääsee moshaamaan ja fiilistelemään täysillä!</p><p>Tapahtuman alustava aikataulu:<br>17.00 Ovet auki ja illan aloittavaa ohjelmaa Vuotalon aulassa<br>18.00 Neurosect<br>18.40 Pill of Happiness<br>19.20 Radelmare<br>20.00 RapidFire</p><p>Bändien esittelyt:</p><p>Neurosect <br>Neurosect on vantaalainen alotteleva metallibändi jolla on syksyn aikana tulossa omaa musiikkia.</p><p>Pill of Happiness<br>Pill Of happiness on suoraan Kontulasta puskeva metallimöykky, jonka ainut tehtävä on jakaa metallin ilosanomaa kaikille. Musiikki on maustettu erityisesti masentavilla teemoilla, joiden pyrkimyksenä on tavoittaa kaikki joita on joskus kohdeltu elämässä väärin.</p><p>Toisin kun normaali masennuslääke, Pill Of Happiness haluaa tuoda surun esiin. Bändi syntyi kahden vatipään Ossin ja Joelin yhteen lyömisestä, vaikka toki muut jäsenet liittyivät vasta, kun nämä kaksi nuorukaista sai selvittyä päänsärystään.</p><p>Bändin keula on hottis Matti, joka on saanut tehtäväkseen huutaa ja rämpyttää kitaraa niin kuin hullu. Lead-kitaran hoitaa Ossi mahdollisimman taidokkaasti. Rumpuja paukuttaa Joel niin lujaa, että korvat kiljuu vielä huomennakin. Viimeisenä muttei todellakaan vähäisimpänä on Tomi, joka hiplaa bassoa jykevästi. Koska yksi kieli ei riitä, musiikkia tehdään englanniksi ja suomeksi.</p><p>Radelmare<br>Radelmare raapii punkkia ja louhii metallia. Radelmaren musiikissa yhdistyy 80-luvun räyhäkät kitarariffit moderniin metalliin. Laulu taipuu screameista puhtaaseen lauluun ja bändin livemeininki on tiukkaa toimitusta saaden yleisönkin liikkeelle.</p><p>Jos yhtyeen musiikkia yrittää kuvata muiden yhtyeiden kautta niin se on sekoitus Motörheadia, Mötley Crüeta, Panteraa, Slipknotia ja Bring Me The Horizonia. Bändin kotipaikka on Kouvolassa ja bändi on perustettu vuonna 2023. Genre: punk/rock/metalcore.</p><p>RapidFire</p><p>RapidFire on Vuosaarelainen bändi, joka soittaa rokkia ja heviä old school tyyliin. Inspiraationa bändille ovat vanhat pierut kuten Judas Priest ja Iron Maiden lukuisien muiden joukossa. Esikuvilta on omaksuttu energinen show ja kitaraharmoniat. Yhtyeessä kitaroita soittaa Pyry ja Jeremi, basson varressa on Helga, kannuja paukuttaa Joonatan ja vokaalit hoitaa Jeremi veljensä Joonatanin kanssa.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Vuosaaren nuorten tuottamassa bänditapahtumassa kuullaan loppukesän tarttuvimmat riffit ja rosoisimmat säröt, kun neljä bändiä päästetään irti ja rokki soi!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D2127B3C335B029084610A08CFDAE1BE/VuoRock", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D2127B3C335B029084610A08CFDAE1BE/VuoRock", "en": "http://www.vuotalo.fi/en/events/event/D2127B3C335B029084610A08CFDAE1BE/VuoRock" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69539/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68463", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816477, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T11:25:38.950309Z", "last_modified_time": "2026-04-14T11:25:38.950324Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786177.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816477/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-14T11:25:38.715015Z", "last_modified_time": "2026-08-05T06:13:47.950315Z", "date_published": null, "start_time": "2026-08-20T13:00:00Z", "end_time": "2026-08-20T17: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, "location_extra_info": null, "provider": null, "name": { "fi": "Taiteiden yö: Lala Salama, Juhlat ja työpajoja – Malmin tapahtumakesä 2026", "sv": "Konstens natt: Lala Salama, Juhlat och verkstäder – Malms evenemangssommar 2026", "en": "The Night of the Arts: Lala Salama, Juhlat and workshops – Malmi Summer of Events 2026" }, "description": { "fi": "<p>Taiteiden yössä painetaan kangaskasseja, juhlitaan indiepopin tahdissa ja koetaan illan huipentava rock jyräys Lala Salaman kanssa!</p><p><b>Aikataulu</b><br>16.00–18.00 Yksin-hanke: Kangaskassien painatusta <br>16.00-17.00 Työväenopisto: Kesän muistoja -yhteislaulut<br>16.00-19.00 Työväenopisto: Maalauksia kahvilla ja mustikalla <br>16.00-19.00 Työväenopisto: Heijastintyöpaja<br>17.00–18.00 Juhlat<br>19.00–20.00 Lala Salama</p><p><b>Päivän ohjelma<br>klo 16.00–18.00 Yksin hanke: Kangaskassien painatusta</b><br>Taiteiden yössä pääsee painamaan omia kangaskasseja rennossa ja luovassa työpajassa. Tule tekemään ja viihtymään!<br> <br><b>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</b></p><p><b>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla</b><br> <br><b>Klo 16-19 Työväenopisto: Heijastintyöpaja</b></p><p><b>klo 17.00–18.00 Juhlat</b><br>Suomen kiinnostavimpiin indieyhtyeisiin lukeutuva Juhlat ammentaa melodiseen kitarapopiinsa 2000 luvun alun radiohiteistä, skandinaavisesta melankoliasta ja amerikkalaisesta aikuisrockista.<br>Vuonna 2025 julkaistu toinen albumi Yöllä taivas kaatuu keräsi ylistäviä arvioita ja toi yhtyeelle Indie Awards ehdokkuuksia. Yhtye on nähty muun muassa Provinssissa, Ruisrockissa ja Tavastialla.</p><p><b>klo 19.00–20.00 Lala Salama</b><br>Lala Salama on dynaaminen rock trio, jonka ilmaisussa yhdistyvät anteeksipyytelemätön herkkyys ja jyrähtelevä särö. Kansainvälistä kulttimainetta kerännyt yhtye tunnetaan intensiivisistä keikoistaan ja vahvasta yhteydestä yleisöön.</p><p>Kokoonpano:<br>Rosa Jules – kitara, laulu<br>Aliisa Keränen – rummut, taustalaulut<br>Elli Holmström – basso, taustalaulut</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>Under Konstens natt trycker man tygkassar, firar i takt till indiepop och upplever kvällens kulminering med rockdundret Lala Salama!</p><p><b>Tidtabell</b><br>16.00–18.00 Yksin-projekt: Tryck på tygkasse <br>16.00–17.00 Työväenopisto: Sommarminnen – allsång<br>16.00–19.00 Työväenopisto: Målningar med kaffe och blåbär<br>16.00–19.00 Työväenopisto: Reflexverkstad<br>17.00-18.00 Juhlat<br>19.00–20.00 Lala Salama</p><p><b>Dagens program<br>klo 16.00–18.00 Yksin-projektet: Tryck på tygkasse</b><br>Under Konstens natt kan man trycka egna tygkassar i en lättsam och kreativ verkstad. Kom med och tillverka och trivas!</p><p><b>kl. 16.00–17.00 Arbis: Sommarminnen – allsång</p><p>kl. 16.00–19.00 Arbis: Målningar med kaffe och blåbär</p><p>kl. 16.00–19.00 Arbis: Reflexverkstad</b></p><p><b>kl. 17.00–18.00 Juhlat</b><br>Juhlat, som är en av Finlands intressantaste indiegrupper, inhämtar inspiration från 2000-talets radiohits, skandinavisk melankoni och amerikansk vuxenrock till sin melodiska gitarrpop.<br>Deras andra album, Yöllä taivas kaatuu, som släpptes 2025, fick strålande recensioner och gav bandet Indie Awards-nomineringar. Bandet har bland annat setts på Provinssirock, Ruisrock och Tavastia.</p><p><b>kl. 19.00–20.00 Lala Salama</b><br>Lala Salama är en dynamisk rocktrio vars uttryck kombinerar en oförställd känslighet med en dundrande skärpa. Bandet med internationellt kultrykte är känt för sina intensiva spelningar och för sin starka kontakt med publiken.</p><p>Sammansättning:<br>Rosa Jules – gitarr, sång<br>Aliisa Keränen – trummor, bakgrundssång<br>Elli Holmström - bas, körsång</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>The Night of the Arts will be a night of printing tote bags, partying to indie pop and a rockin' good time with Lala Salama!</p><p><b>Schedule</b><br>16.00–18.00 Yksin (‘Alone’) project: Printing tote bags <br>16.00–17.00 Finnish Adult Education Centre: Summer memories singalong<br>16.00–19.00 Finnish Adult Education Centre: Painting with coffee and blueberries<br>16.00–19.00 Finnish Adult Education Centre: Reflector workshop<br>17.00–18.00 Juhlat<br>19.00–20.00 Lala Salama<br>-<br><b>Programme of the day<br>16.00–18.00 Yksin project: Printing tote bags</b><br>The Night of the Arts lets you print your own tote bags in a relaxed and creative workshop. Get creative and have fun!</p><p><b>16.00–17.00 Finnish Adult Education Centre: Summer memories singalong</b></p><p><b>16.00–19.00 Finnish Adult Education Centre: Paintings with coffee and blueberries</b></p><p><b>16.00–19.00 Finnish Adult Education Centre: Reflector workshop</b></p><p><b>17.00–18.00 Juhlat</b><br>Juhlat, one of Finland's most interesting indie bands, draws inspiration for its melodic guitar pop from early 21st century radio hits, Scandinavian melancholy and American grown-up rock.<br>Their second album, Yöllä taivas kaatuu, was released in 2025, garnering rave reviews and even earning the band Indie Awards nominations. The band has performed in festivals such as Provinssi and Ruisrock and at Tavastia.</p><p><b>19.00–20.00 Lala Salama</b><br>Lala Salama is a dynamic rock trio whose expression combines unapologetic vulnerability with harsher edges. The band, which has built up an international cult following, is known for its intense live performances and strong connection with the audience.</p><p>Line-up:<br>Rosa Jules – guitar, vocals<br>Aliisa Keränen – drums, backing vocals<br>Elli Holmström – bass, backing vocals</p><p>Entry to the events is free of charge!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Taiteiden yössä painetaan kangaskasseja, juhlitaan indiepopin tahdissa ja koetaan illan huipentava rock jyräys Lala Salaman kanssa!", "sv": "Under Konstens natt trycker man tygkassar, firar i takt till indiepop och upplever kvällens kulminering med rockdundret Lala Salama!", "en": "The Night of the Arts will be a night of printing tote bags, partying to indie pop and a rockin' good time with Lala Salama!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/Taiteiden_yo_Lala_Salama_Juhlat_ja_tyopajoja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/Konstens_natt_Lala_Salama_Juhlat_och_verkstader", "en": "http://www.malmitalo.fi/en/events/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/The_Night_of_the_Arts_Lala_Salama_Juhlat_and_workshops" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68463/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69308", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385691, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T05:13:43.580335Z", "last_modified_time": "2026-08-05T05:13:43.580349Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793731.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385691/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-05T05:13:43.449262Z", "last_modified_time": "2026-08-05T05:13:43.736121Z", "date_published": null, "start_time": "2026-11-19T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Julkalas, Alfons Åberg – Barnens Estrad", "sv": "Julkalas, Alfons Åberg – Barnens Estrad", "en": "Julkalas, Alfons Åberg – Barnens Estrad" }, "description": { "fi": "<p>Lasten ruotsinkielinen esitys perustuu kirjaan Hyvää joulua, Mikko Mallikas ja muihin Gunilla Bergströmin Mikko-kirjoihin.</p><p>Bergströmin viimeiseksi jäänyt Julkalas, Alfons Åberg julkaistiin Ruotsissa lokakuussa 2025 (suom. Hyvää joulua, Mikko Mallikas, 2026). Lämminhenkinen ja hauska kolmen näyttelijän kiertue-esitys on täynnä kaikkea sitä, mikä tekee Mikosta ja Bergströmin rakastetuista kirjoista niin suosittuja monissa maissa.</p><p>Barnens Estradin Mikon kanssa tehdyt aiemmat, yhteensä yli 400 esitystä kattaneet Alfons och Mållgan -kiertueet ovat osoittaneet, että myös tämän päivän lapset arvostavat rauhallisesti kerrottua nokkelaa tarinaa.</p><p>Esitys on suunnattu 2–8-vuotiaille lapsille perheineen.<br>Esityksen kesto n. 35 minuuttia.<br>Ilmoittautuminen osoitteessa kultus.hel.fi 18.8. alkaen.</p><p>Käsikirjoitus: Matilda Anttila & Jesper Fransson Gunilla Bergströmin lastenkirjojen pohjalta<br>Ohjaus: Matilda Anttila<br>Puvustus: Sonja Dragon<br>Lavastus, valokuvaus ja graafinen suunnittelu: Lasse Andersson<br>Tarpeisto: Pia Lindén-Lamoureux<br>Musiikki: Georg Riedel, Stefan “Kilju” Lindblom ja Anders Grönroos<br>Musiikin sovitus, äänitehosteet ja äänitys: Stefan “Kilju” Lindblom<br>Rooleissa: Petra Rauhala, Matilda Lindström ja Kalle Halmén<br>Tuottaja: Anders Grönroos<br>Esitysoikeuksia valvoo: Bok-Makaren AB</p>", "sv": "<p>En föreställning baserad på Julkalas, Alfons Åberg och Gunilla Bergströms andra Alfons-böcker</p><p>Gunilla Bergströms sista bok Julkalas, Alfons Åberg gavs ut i Sverige i oktober 2025 (finsk översättning: Hyvää joulua, Mikko Mallikas, 2026). Den roliga, stämningsfulla och varma turnépjäsen med tre skådespelare är fylld av den speciella Alfons-stämning som har gjort honom så populär i många länder.<br> <br>Genom våra många turnéer med Alfons och Mållgan (över 400 föreställningar) har det visat sig att också dagens barn uppskattar en finurlig historia berättad i ett lugnt tempo.<br> <br>Publik: 2–8-åringar med familjer<br> Längd: c. 35 minuter<br>Anmälning i kultus.hel.fi 18.8. kl 10<br> <br>Dramatisering: Jesper Fransson och Matilda Anttila efter Gunilla Bergströms barnböcker<br> Regi: Jesper Fransson<br> Musik: Georg Riedel och Anders Grönroos<br> Musikarrangemang och inspelning: Stefan ”Kilju” Lindblom<br> Dräkter: Sonja Dragon<br> Dekor, foto & grafik: Lasse Andersson<br> Rekvisitör: Pia Lindén-Lamoureux<br> I rollerna: Petra Rauhala, Matilda Lindström och Kalle Halmén<br> Producent: Anders Grönroos<br> Förlag: Bok-Makaren AB<br> Produktion: Barnens Estrad</p>", "en": "<p>A performance based on Julkalas, Alfons Åberg and Gunilla Bergström's other Alfie Atkins books.</p><p>Bergrstöm's last book Julkalas, Alfons Åberg was published in Sweden in October 2025 (Finnish translation: Hyvää joulua, Mikko Mallikas, 2026). This warm and funny touring play featuring three actors is full of everything that has made Alfie and Bergström's beloved books so popular in many countries.</p><p>Barnens Estrad's previous Alfons och Mållgan tours with Alfie, totalling over 400 performances, have proven that today's children, too, appreciate a clever story told in a calm fashion.</p><p>The performance is targeted at 2–8-year-olds alongside their families<br>Performance duration: approximately 35 minutes<br>Register your group at kultus.hel.fi, starting 18 August.</p><p>Dramaturgy: Matilda Anttila & Jesper Fransson based on Gunilla Bergström's children's books<br>Direction: Matilda Anttila & Jesper Fransson<br>Costumes: Sonja Dragon<br>Scenography, photos and graphic design: Lasse Andersson<br>Set dressing: Pia Lindén-Lamoureux<br>Music: Georg Riedel, Stefan \"Kilju\" Lindblom & Anders Grönroos<br>Music arrangement, sound effects and recording: Stefan \"Kilju\" Lindblom<br>Performers: Petra Rauhala, Matilda Lindström & Kalle Halmén<br>Producer: Anders Grönroos<br>Performance rights: Bok-Makaren AB</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lasten ruotsinkielinen esitys perustuu kirjaan Hyvää joulua, Mikko Mallikas ja muihin Gunilla Bergströmin Mikko-kirjoihin.", "sv": "En föreställning baserad på Julkalas, Alfons Åberg och Gunilla Bergströms andra Alfons-böcker", "en": "A performance based on Julkalas, Alfons Åberg and Gunilla Bergström's other Alfie Atkins books." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B54DC2869E9307B90D49E0D1901B7EA8/Julkalas_Alfons_Aberg", "sv": "http://www.stoa.fi/sv/evenemang/event/B54DC2869E9307B90D49E0D1901B7EA8/Julkalas_Alfons_Aberg", "en": "http://www.stoa.fi/en/events/event/B54DC2869E9307B90D49E0D1901B7EA8/Julkalas_Alfons_Aberg" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69308/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69307", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385690, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T05:13:43.045418Z", "last_modified_time": "2026-08-05T05:13:43.045433Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793730.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385690/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-05T05:13:42.870368Z", "last_modified_time": "2026-08-05T05:13:43.295037Z", "date_published": null, "start_time": "2026-11-19T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Julkalas, Alfons Åberg – Barnens Estrad", "sv": "Julkalas, Alfons Åberg – Barnens Estrad", "en": "Julkalas, Alfons Åberg – Barnens Estrad" }, "description": { "fi": "<p>Lasten ruotsinkielinen esitys perustuu kirjaan Hyvää joulua, Mikko Mallikas ja muihin Gunilla Bergströmin Mikko-kirjoihin.</p><p>Bergströmin viimeiseksi jäänyt Julkalas, Alfons Åberg julkaistiin Ruotsissa lokakuussa 2025 (suom. Hyvää joulua, Mikko Mallikas, 2026). Lämminhenkinen ja hauska kolmen näyttelijän kiertue-esitys on täynnä kaikkea sitä, mikä tekee Mikosta ja Bergströmin rakastetuista kirjoista niin suosittuja monissa maissa.</p><p>Barnens Estradin Mikon kanssa tehdyt aiemmat, yhteensä yli 400 esitystä kattaneet Alfons och Mållgan -kiertueet ovat osoittaneet, että myös tämän päivän lapset arvostavat rauhallisesti kerrottua nokkelaa tarinaa.</p><p>Esitys on suunnattu 2–8-vuotiaille lapsille perheineen.<br>Esityksen kesto n. 35 minuuttia.<br>Ilmoittautuminen osoitteessa kultus.hel.fi 18.8. alkaen.</p><p>Käsikirjoitus: Matilda Anttila & Jesper Fransson Gunilla Bergströmin lastenkirjojen pohjalta<br>Ohjaus: Matilda Anttila<br>Puvustus: Sonja Dragon<br>Lavastus, valokuvaus ja graafinen suunnittelu: Lasse Andersson<br>Tarpeisto: Pia Lindén-Lamoureux<br>Musiikki: Georg Riedel, Stefan “Kilju” Lindblom ja Anders Grönroos<br>Musiikin sovitus, äänitehosteet ja äänitys: Stefan “Kilju” Lindblom<br>Rooleissa: Petra Rauhala, Matilda Lindström ja Kalle Halmén<br>Tuottaja: Anders Grönroos<br>Esitysoikeuksia valvoo: Bok-Makaren AB</p>", "sv": "<p>En föreställning baserad på Julkalas, Alfons Åberg och Gunilla Bergströms andra Alfons-böcker</p><p>Gunilla Bergströms sista bok Julkalas, Alfons Åberg gavs ut i Sverige i oktober 2025 (finsk översättning: Hyvää joulua, Mikko Mallikas, 2026). Den roliga, stämningsfulla och varma turnépjäsen med tre skådespelare är fylld av den speciella Alfons-stämning som har gjort honom så populär i många länder.<br> <br>Genom våra många turnéer med Alfons och Mållgan (över 400 föreställningar) har det visat sig att också dagens barn uppskattar en finurlig historia berättad i ett lugnt tempo.<br> <br>Publik: 2–8-åringar med familjer<br> Längd: c. 35 minuter<br>Anmälning i kultus.hel.fi 18.8. kl 10<br> <br>Dramatisering: Jesper Fransson och Matilda Anttila efter Gunilla Bergströms barnböcker<br> Regi: Jesper Fransson<br> Musik: Georg Riedel och Anders Grönroos<br> Musikarrangemang och inspelning: Stefan ”Kilju” Lindblom<br> Dräkter: Sonja Dragon<br> Dekor, foto & grafik: Lasse Andersson<br> Rekvisitör: Pia Lindén-Lamoureux<br> I rollerna: Petra Rauhala, Matilda Lindström och Kalle Halmén<br> Producent: Anders Grönroos<br> Förlag: Bok-Makaren AB<br> Produktion: Barnens Estrad</p>", "en": "<p>A performance based on Julkalas, Alfons Åberg and Gunilla Bergström's other Alfie Atkins books.</p><p>Bergrstöm's last book Julkalas, Alfons Åberg was published in Sweden in October 2025 (Finnish translation: Hyvää joulua, Mikko Mallikas, 2026). This warm and funny touring play featuring three actors is full of everything that has made Alfie and Bergström's beloved books so popular in many countries.</p><p>Barnens Estrad's previous Alfons och Mållgan tours with Alfie, totalling over 400 performances, have proven that today's children, too, appreciate a clever story told in a calm fashion.</p><p>The performance is targeted at 2–8-year-olds alongside their families<br>Performance duration: approximately 35 minutes<br>Register your group at kultus.hel.fi, starting 18 August.</p><p>Dramaturgy: Matilda Anttila & Jesper Fransson based on Gunilla Bergström's children's books<br>Direction: Matilda Anttila & Jesper Fransson<br>Costumes: Sonja Dragon<br>Scenography, photos and graphic design: Lasse Andersson<br>Set dressing: Pia Lindén-Lamoureux<br>Music: Georg Riedel, Stefan \"Kilju\" Lindblom & Anders Grönroos<br>Music arrangement, sound effects and recording: Stefan \"Kilju\" Lindblom<br>Performers: Petra Rauhala, Matilda Lindström & Kalle Halmén<br>Producer: Anders Grönroos<br>Performance rights: Bok-Makaren AB</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lasten ruotsinkielinen esitys perustuu kirjaan Hyvää joulua, Mikko Mallikas ja muihin Gunilla Bergströmin Mikko-kirjoihin.", "sv": "En föreställning baserad på Julkalas, Alfons Åberg och Gunilla Bergströms andra Alfons-böcker", "en": "A performance based on Julkalas, Alfons Åberg and Gunilla Bergström's other Alfie Atkins books." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/035074236C76D67EA2DFB91272DB88B7/Julkalas_Alfons_Aberg", "sv": "http://www.stoa.fi/sv/evenemang/event/035074236C76D67EA2DFB91272DB88B7/Julkalas_Alfons_Aberg", "en": "http://www.stoa.fi/en/events/event/035074236C76D67EA2DFB91272DB88B7/Julkalas_Alfons_Aberg" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69307/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69261", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "10-35 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/itsenaeisyyspaeivaen-rauhanmatinea-aeiti-maa-isaenmaa-4173793/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385689, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-04T14:13:50.541628Z", "last_modified_time": "2026-08-04T14:13:50.541646Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793668.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385689/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-04T14:13:50.426075Z", "last_modified_time": "2026-08-04T14:13:50.715306Z", "date_published": null, "start_time": "2026-12-06T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": { "fi": "Suomen Rauhanliitto - Finlands Fredsförbund ry" }, "name": { "fi": "Itsenäisyyspäivän rauhanmatinea - Sana vs. sota" }, "description": { "fi": "<p>Tilaisuus tarjoaa ikimuistoisen hetken hyvän musiikin, tanssin sekä painavan sanan äärellä.</p><p>Tule kuulemaan ajan tärkeimmät puheenvuorot ja musiikin sanomat. Voit jäädä tilaisuuden jälkeen hetkeksi yhteisen kokemuksen äärelle.</p><p>Tarkempi ohjelma julkaistaan myöhemmin.</p><p>Liput myynnissä 3.8. alkaen</p><p>Ikäraja: S</p><p>Kesto n. 3 h, sisältää väliajan</p>" }, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/67E4C2A8B6811B303A489A8B01889B85/Itsenaisyyspaivan_rauhanmatinea_-_Sana_vs_sota" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69261/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68489", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821631, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T14:13:12.507638Z", "last_modified_time": "2026-04-16T14:13:12.507653Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786046.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821631/?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-16T14:13:12.377705Z", "last_modified_time": "2026-08-04T14:13:31.980467Z", "date_published": null, "start_time": "2026-08-25T07: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, "location_extra_info": null, "provider": null, "name": { "fi": "Annantalo kesämuskarit", "sv": "Annegården sommarmusiklekis", "en": "Annantalo summertime music playschools" }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Muskarit toteutetaan suomeksi mutta osallistumiseen ei tarvita suomenkielentaitoa.<br>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.<br>Lämpimästi tervetuloa!</p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</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 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><p>Språket: Finska</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 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><p>Language: Finnish</p>" }, "provider_contact_info": null, "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." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A04EB2D1D6B35139DBA7E357BDCEEBD9/Annantalo_kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/A04EB2D1D6B35139DBA7E357BDCEEBD9/Annegarden_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/A04EB2D1D6B35139DBA7E357BDCEEBD9/Annantalo_summertime_music_playschools" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68489/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68488", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821630, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T14:13:12.028028Z", "last_modified_time": "2026-04-16T14:13:12.028048Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786045.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821630/?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-16T14:13:11.696584Z", "last_modified_time": "2026-08-04T14:13:31.810648Z", "date_published": null, "start_time": "2026-08-25T06: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, "location_extra_info": null, "provider": null, "name": { "fi": "Annantalon kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo summertime music playschools" }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Muskarit toteutetaan suomeksi mutta osallistumiseen ei tarvita suomenkielentaitoa. <br>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.<br>Lämpimästi tervetuloa!</p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</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 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><p>Språket: Finska</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 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><p>Language: Finnish</p>" }, "provider_contact_info": null, "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." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C838D7D9D8B26093EA8EC4423598E46B/Annantalon_kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/C838D7D9D8B26093EA8EC4423598E46B/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/C838D7D9D8B26093EA8EC4423598E46B/Annantalo_summertime_music_playschools" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68488/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68487", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821629, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T14:13:10.968442Z", "last_modified_time": "2026-04-16T14:13:10.968456Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786044.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821629/?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-16T14:13:10.830970Z", "last_modified_time": "2026-08-04T14:13:29.447025Z", "date_published": null, "start_time": "2026-08-18T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Annantalon kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo summertime music playschools" }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Muskarit toteutetaan suomeksi mutta osallistumiseen ei tarvita suomenkielentaitoa.<br>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.<br>Lämpimästi tervetuloa!</p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</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 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><p>Språket: Finska</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 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><p>Language: Finnish</p>" }, "provider_contact_info": null, "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." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/44BAE71D45CDB992422FB7ADE7BC4F8F/Annantalon_kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/44BAE71D45CDB992422FB7ADE7BC4F8F/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/44BAE71D45CDB992422FB7ADE7BC4F8F/Annantalo_summertime_music_playschools" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68487/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68486", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821628, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T14:13:10.213532Z", "last_modified_time": "2026-04-16T14:13:10.213548Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786043.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821628/?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-16T14:13:10.039615Z", "last_modified_time": "2026-08-04T14:13:28.397962Z", "date_published": null, "start_time": "2026-08-11T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Annantalon kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo summertime music playschools" }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Muskarit toteutetaan suomeksi mutta osallistumiseen ei tarvita suomenkielentaitoa. <br>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.<br>Lämpimästi tervetuloa!</p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy.</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 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><p>Språket: Finska</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 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><p>Language: Finnish</p>" }, "provider_contact_info": null, "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." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3B81B5217C44326BAFEA0D374D5C5008/Annantalon_kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/3B81B5217C44326BAFEA0D374D5C5008/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/3B81B5217C44326BAFEA0D374D5C5008/Annantalo_summertime_music_playschools" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68486/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68261", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1823577, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-17T09:13:36.186298Z", "last_modified_time": "2026-04-17T09:13:36.186320Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786540.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1823577/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-17T09:13:36.063417Z", "last_modified_time": "2026-08-04T13:14:28.636186Z", "date_published": null, "start_time": "2026-06-19", "end_time": "2026-09-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, "location_extra_info": null, "provider": null, "name": { "fi": "Rosamai Kirjokangas: Lähellä ja kätkössä – Taidenäyttely kahvila Naperossa", "sv": "Rosamai Kirjokangas: Lähellä ja kätkössä (nära och dolt) – Konstutställning på kafé Napero", "en": "Rosamai Kirjokangas: Near and Hidden – Art exhibition at Café Napero" }, "description": { "fi": "<p>Hiljaiset arjen hetket, pienet suojapaikat ja eläinolennot kohtaavat Rosamai Kirjokankaan näyttelyssä.</p><p>Esillä on vesiväri-, öljypastelli-, tussi- ja akryylitöitä.</p><p>Näyttelyn avajaiset järjestetään Kahvila Naperossa 26.6. klo 15–17 - Tervetuloa!</p><p>Vapaa pääsy</p>", "sv": "<p>Lugna vardagsögonblick, små skyddade platser och djurgestalter möts i Rosamai Kirjokangas utställning.</p><p>I utställningen ingår verk i akvarell, oljepastell, tusch och akryl.</p><p>Vernissage ordnas på kafé Napero 26.6 kl. 15–17 – Välkommen!</p><p>Fritt inträde</p>", "en": "<p>Quiet everyday moments, small shelters and animal creatures come together in this exhibition by Rosamai Kirjokangas.</p><p>The exhibition will feature watercolour, oil pastel, marker and acrylic works.</p><p>The opening of the exhibition will be held at Café Napero on 26 June at 15.00–17.00 – hope to see you there!</p><p>Free entry</p>" }, "provider_contact_info": null, "short_description": { "fi": "Hiljaiset arjen hetket, pienet suojapaikat ja eläinolennot kohtaavat Rosamai Kirjokankaan näyttelyssä.", "sv": "Lugna vardagsögonblick, små skyddade platser och djurgestalter möts i Rosamai Kirjokangas utställning.", "en": "Quiet everyday moments, small shelters and animal creatures come together in this exhibition by Rosamai Kirjokangas." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D25BFDF5A577C1762C20817A5AFC30D7/Rosamai_Kirjokangas_Lahella_ja_katkossa", "sv": "http://www.annantalo.fi/sv/evenemang/event/D25BFDF5A577C1762C20817A5AFC30D7/Rosamai_Kirjokangas_Lahella_ja_katkossa_nara_och_dolt_", "en": "http://www.annantalo.fi/en/events/event/D25BFDF5A577C1762C20817A5AFC30D7/Rosamai_Kirjokangas_Near_and_Hidden" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68261/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp4z5czcy", "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: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:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385688, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-04T12:08:27.268499Z", "last_modified_time": "2026-08-04T12:08:27.268513Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2f8e7b8e-8efd-44aa-b310-ff6f1050fc8a.png", "name": "", "cropping": "131,0,769,638", "photographer_name": "", "alt_text": "Milana Sagadeeva: Quiet Moments", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385688/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-04T12:28:20.140700Z", "last_modified_time": "2026-08-04T12:28:20.140716Z", "date_published": "2026-08-04T11:00:00Z", "start_time": "2026-08-09T07:00:00Z", "end_time": "2026-08-28T15: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, "location_extra_info": { "fi": "Galleria Anna", "sv": "Galleri Anna", "en": "Gallery Anna" }, "provider": null, "name": { "fi": "Milana Sagadeeva: Quiet Moments (taidenäyttely)", "sv": "Milana Sagadeeva: Quiet Moments (konstutställning)", "en": "Milana Sagadeeva: Quiet Moments (art exhibition)" }, "description": { "fi": "<p><em>Quiet Moments</em> on kokoelma pieniä maalauksia, jotka heijastavat tapaa, jolla taiteilija kokee ja tulkitsee ympäröivää maailmaa.</p><p>\"Väri, sommittelu ja tunnelma ovat töitteni ytimessä. En noudata kiinteitä sääntöjä, vaan luotan intuitioon. Jokainen maalaus kehittyy luonnollisesti henkilökohtaisena reaktiona väriin, valoon ja sommittelun tasapainoon.</p><p>Nautin työskentelystä eri tekniikoilla, kuten vesivärillä, öljyväreillä ja pehmeillä pastelleilla. Näistä öljyväri ja pehmeät pastellit ovat tekniikoita, joihin tunnen suurimman yhteyden, sillä niiden avulla voin ilmaista tunnelmaa, väriä ja tunteita luonnollisimmalla mahdollisella tavalla.</p><p>Nautin erityisesti pienikokoisten maalauksien luomisesta. Minulle jokainen niistä on oma pieni maailmansa – täydellinen, intiimi ja kykenevä tallentamaan yhden hetken tunteen. Tämä formaatti antaa minulle mahdollisuuden ilmaista sitä, mikä on minulle tärkeintä: tunnelmaa, väriä ja tunteita.</p><p>Suurin osa tämän näyttelyn teoksista on maalattu suoraan luonnosta, kun taas toiset ovat saaneet inspiraationsa havainnoiduista hetkistä. Jokaisessa maalauksessa tarkoitukseni ei ole pelkästään kuvata aihetta, vaan ilmaista omaa tapaani nähdä se.</p><p>Minulle tunnelman ja elämän tunteen välittäminen on tärkeämpää kuin täydellisen tarkkuuden tavoittelu. Toivon, että nämä teokset kutsuvat katsojaa hidastamaan vauhtia, katsomaan tarkemmin ja löytämään arjen hetkien hiljaisen kauneuden.\"</p>\nMilana Sagadeeva <p><strong>Milana Sagadeeva</strong> on Espoossa asuva taiteilija.</p><p>Hän työskentelee vesivärien, öljyvärien ja pehmeiden pastellivärien parissa, keskittyen erityisesti öljymaalaukseen ja pehmeisiin pastelliväreihin. Pienikokoisten maalauksien kautta hän tutkii värejä, tunnelmaa ja intuitiivista sommittelua pyrkien ilmaisemaan henkilökohtaista tapaansa nähdä maailmaa.</p><p><br></p><p>Näyttely on avoinna kirjaston aukioloaikoina. Tervetuloa!</p>", "sv": "<p>Utställningen <em>Quiet Moments</em> visar en samling små målningar som återspeglar hur konstnären upplever och tolkar omvärlden.</p>\nMilana Sagadeeva<p><strong>Milana Sagadeeva</strong> är en konstnär bosatt i Espoo.</p><p>Hon arbetar med akvarell, olja och mjuka pastellfärger, med särskilt fokus på oljemålning och mjuka pastellfärger. Genom sina små målningar utforskar hon färger, stämningar och intuitiv komposition i ett försök att uttrycka sitt personliga sätt att se på världen.</p><p><br></p><p>Utställningen är öppen under bibliotekets öppettider. Välkommen!</p>", "en": "Artist statement <p><em>Quiet Moments</em> is a collection of small-format paintings that reflects the way I experience and interpret the world around me.</p><p>Colour, composition and atmosphere are at the heart of my work. Rather than following fixed rules, I trust intuition. Each painting develops naturally through my personal response to colour, light and the balance within a composition.</p><p>I enjoy working with different media, including watercolour, oil and soft pastel. Among them, oil painting and soft pastel are the media I feel most connected to, allowing me to express atmosphere, colour and emotion in the most natural way.</p><p>I especially enjoy creating small-format paintings. To me, each one is a small world of its own—complete, intimate and capable of holding the feeling of a single moment. This format allows me to express what matters most to me: atmosphere, colour and emotion.</p><p>Most of the works in this exhibition were painted directly from life, while others were inspired by observed moments. In every painting, my intention is not simply to depict a subject, but to express my own way of seeing it.</p><p>For me, conveying atmosphere and a sense of life is more important than pursuing perfect precision. I hope these works invite the viewer to slow down, look more carefully and discover the quiet beauty of everyday moments.</p>\nAbout the Artist<p><strong>Milana Sagadeeva</strong> is an artist based in Espoo, Finland.</p><p>She works with watercolour, oil and soft pastel, with a particular focus on oil painting and soft pastel. Through small-format paintings, she explores colour, atmosphere and intuitive composition, seeking to express a personal way of seeing the world. </p><p><br></p><p>The exhibition can be seen during the library opening hours. Welcome!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kokoelma pienikokoisia maalauksia, joiden inspiraationa on toiminut elämä.", "sv": "En samling målningar i litet format, inspirerade av livet.", "en": "A collection of small-format paintings inspired by life." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp4z5czcy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69646", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385686, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-04T11:13:40.025516Z", "last_modified_time": "2026-08-04T11:13:40.025531Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796196.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385686/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-04T11:13:39.852622Z", "last_modified_time": "2026-08-04T11:13:40.269683Z", "date_published": null, "start_time": "2026-09-12T10:00:00Z", "end_time": "2026-09-12T12: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, "location_extra_info": null, "provider": null, "name": { "fi": "Toisissa tiloissa -kollektiivi: Rauhanliikekannallepano", "sv": "Toisissa tiloissa -kollektiivi: Rauhanliikekannallepano", "en": "Toisissa tiloissa -kollektiivi: Rauhanliikekannallepano" }, "description": { "fi": "<p>Rauhanliikekannallepano on yhteisöllinen ja leikkisä esitystaidetapahtumien sarja, joka kysyy: Miltä rauha näyttää ja tuntuu?</p><p>Tapahtumissa osallistujat tekevät yhdessä Toisissa tiloissa -kollektiivin taiteilijoiden kanssa kollektiivisia ruumiillisia tekoja eli “rauhanliikkeitä”. Liikkeitä säestää ja tunnelmaa nostattaa elävä puhallinmusiikki.</p><p><b>La 12.9. klo 13-15.30 Kanneltalossa</b><br><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLScwM49Omx_4Es3uUan5EiwKVEeqj8KlpsHjg7-guTXZeTvFVQ/viewform\">Ilmoittaudu mukaan Kanneltalon tapahtumaan tällä lomakkeella viimeistään 9.9.</u></a></p><p><b>Su 6.9. klo 13-15.30 Itäkeskuksessa</b><br><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSckO54-iv8NS0gkEqqQjQtPH5dVEpsujTG0R52wB5ayDA-RwQ/viewform\"> Ilmoittaudu mukaan Stoan tapahtumaan tällä lomakkeella viimeistään 3.9.</u></a></p><p>Rauhanliikkeet ovat yhdessä ja samaan aikaan tehtäviä yksinkertaisia toimintoja ja tehtäviä, jotka avartavat havaintojamme ympäristöstä sekä ihmisten välisestä rauhanomaisesta yhdessäolosta, sen muodoista ja mahdollisuuksista. Rauha ei synny vain olemalla rauhallinen tai tekemättä mitään. Rauhantila pitää keksiä yhä uudestaan, yksin ja yhdessä.</p><p>Kaikki yli 14-vuotiaat ovat tervetulleita työpajaan ja yli 10-vuotiaat voivat osallistua vanhemman seurassa.</p><p>Työpajat pidetään ulkona Kulttuuritalon läheisyydessä. Kulttuurikeskuksessa on varattuna myös sisätila käyttöömme. Varaudu työpajaan pukeutumalla sään mukaisesti liikkumisen ja maassa oleskelun salliviin vaatteisiin ja jalkineisiin. Ota mukaan myös oma vesipullo ja tarvittaessa pientä syötävää.</p><p>Kokoonnumme Kanneltalolla la 12.9. klo 13, Klaneettitie 5, Kannelmäen asema/Sitratori<br>00420 Helsinki. Kokoonnumme Stoalla su 6.9. klo 13, Turunlinnantie 1, Itäkeskus, 00900 Helsinki.</p><p>Esitystaidetapahtumien sarja huipentuu Kansalaistorilla 19.9. Kaikkia työpajoihin osallistuneita toivotaan mukaan toteuttamaan Kansalaistorin esitystaidetapahtumaa. Ilmoittautuminen Kansalaistorin tapahtumaan avataan myöhemmin.</p><p>Tule mukaan valmistautumaan rauhaan kanssamme!</p><p><b>Toisissa tiloissa</b> on helsinkiläinen kotimaassa ja kansainvälisesti toimiva esitystaiteen kollektiivi. Ryhmän toiminnan ytimenä ovat ruumiilliset harjoitteet, joiden avulla päästään kosketuksiin erilaisten elämänmuotojen ja ilmiöiden kanssa eli vierailemaan \"toisissa tiloissa\".</p><p><u><a href=\"https://toisissatiloissa.net/rauhanliikekannallepano/\">Lue lisää tapahtumasta ja Toisissa tiloissa -kollektiivista</u></a>.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Rauhanliikekannallepano on yhteisöllinen ja leikkisä esitystaidetapahtumien sarja, joka kysyy: Miltä rauha näyttää ja tuntuu?" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CE18A6020D9E361D31932342B3F77061/Toisissa_tiloissa_-kollektiivi_Rauhanliikekannallepano", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CE18A6020D9E361D31932342B3F77061/Toisissa_tiloissa_-kollektiivi_Rauhanliikekannallepano", "en": "http://www.kanneltalo.fi/en/events/event/CE18A6020D9E361D31932342B3F77061/Toisissa_tiloissa_-kollektiivi_Rauhanliikekannallepano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69646/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68466", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816475, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T11:25:37.121476Z", "last_modified_time": "2026-04-14T11:25:37.121504Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786151.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816475/?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-14T11:25:36.894687Z", "last_modified_time": "2026-08-04T10:13:26.657939Z", "date_published": null, "start_time": "2026-08-15T08:00:00Z", "end_time": "2026-08-15T11: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, "location_extra_info": null, "provider": null, "name": { "fi": "Lasten lauantai: Aarne Alligaattori & Viidakkorumpu, Riemukas perhemuskari ja muuta puuhaa – Malmin tapahtumakesä 2026", "sv": "Barnens lördag: Arne Alligator, Den Glada familjmusiklekisen och annan sysselsättning – Malms evenemangssommar 2026", "en": "Children’s Saturday: Arnie Alligator, Joyful family music playschool and other activities – Malmi Summer of Events 2026" }, "description": { "fi": "<p>Lasten lauantai kutsuu perheet puuhastelemaan! Luvassa luontoaiheista tekemistä, kirjoja, muskaria, työpajoja ja lasten lemppari: Aarne Alligaattori & Viidakkorumpu!</p><p><b>Aikataulu</b><br>11.00–14.00 Malmin Varustamo: Luontopiste pikkuväelle<br>11.00-15.00 Lasten uimataidon edistäminen<br>Klo 11–14.45 Hyvän arjen rakentajat: Mitä kivaa syksyn perhearkeen?<br>klo 12.30–12.45 Just Dance -katutanssishow <br>12.00–14.00 Yksin hanke: Minikirjoja ja matariki-tähtien punontaa <br>13.00–13.30 Riemukas perhemuskari<br>14.00–14.45 Aarne Alligaattori & Viidakkorumpu</p><p><b>Päivän ohjelma</p><p>klo 11.00–14.00 Malmin Varustamo: Luontopiste pikkuväelle</b><br>Luontopiste kutsuu perheen pienimmät tutkimaan ja ihmettelemään luontoa monipuolisten tehtävien ja materiaalien parissa.</p><p><b> klo 11.00–15.00 Lasten uimataidon edistäminen</b><br>Lasten uimataidon edistäminen<br>Tule keskustelemaan lasten uimataidosta samalla kun samalla kun perheen pienimmät voivat käydä pulahtamassa pallomereen.<br>Mukana KASKO, Fimu ry ja Monaliiku ry.</p><p><b> klo 11–14.45 Hyvän arjen rakentajat: Mitä kivaa syksyn perhearkeen?</b><br>Kuka on teidän perheen maalikuningas tai tuleva taiteilija? Tutustu Hyvän arjen rakentajien toimintaan ja löydä uusia ideoita syksyn arkeen ja harrastuksiin!<br>Luvassa liikunnan iloa, luovaa tekemistä sekä hattaraa isoille ja pienille arjen sankareille.</p><p><b>klo 12.30–12.45 Just Dance -katutanssishow</b><br>Tule mukaan ja anna rytmin viedä!</p><p><b>klo 12.00–14.00 Yksin-hanke: Minikirjoja ja matariki tähtien punontaa</b><br>Työpajassa askarrellaan omia minikirjoja ja punotaan matariki tähtiä yhdessä luovan tekemisen hengessä.</p><p><b>klo 13.00–13.30 Riemukas perhemuskari</b><br>”Pyöri kuin pyörre veden pinnalla!<br>Leiju kuin pilvi taivaan kannella!”</p><p>Riemukkaassa perhemuskarissa lauletaan, leikitään ja musisoidaan yhdessä kesäisissä tunnelmissa. Muskarin ohjaa musiikin maisteri ja lastenmuusikko Henna-Maija Kuki, tuttu Henna ja Supersankarit yhtyeestä.</p><p><b>klo 14.00–14.45 Aarne Alligaattori & Viidakkorumpu</b><br>Ihastuttava ja halattava Aarne Alligaattori saapuu lavalle yhdessä safariasuisten ystäviensä Tobben ja Jocken kanssa. Aarne hassuttelee, keksii kepposia ja soittaa viidakkorumpuja ratkiriemukkaassa esityksessä koko perheelle.</p><p>Aarne Alligaattoria on katsottu YouTubessa yli 400 miljoonaa kertaa, ja hänen musiikkinsa on myynyt useita platina ja kultalevyjä eri maissa.</p><p>Kaikkiin tapahtumiin on vapaa pääsy, tervetuloa koko perhe!</p>", "sv": "<p>Barnens lördag bjuder in familjerna till sysselsättning! Sysselsättning med naturtema, böcker, musiklekis, verkstäder och barnens favorit: Arne Alligator & Viidakkorumpu!</p><p><b>Tidtabell</b><br>11.00–14.00 Varustamo-livsrummet i Malm: En naturpunkt för de minsta<br>11.00–15.00 Främjande av barns simkunskaper<br>12.00–14.00 Yksin-projektet: Miniböcker och flätning av matariki-stjärnor <br>13.00–13.30 Glatt familjemusiklekis<br>14.00–14.45 Arne Alligator & Viidakkorumpu</p><p><b>Dagens program</p><p>kl. 11.00–14.00 Varustamo-livsrummet i Malm: En naturpunkt för de minsta</b><br>Naturpunkten bjuder in familjens minsta att undersöka och beundra naturen med hjälp av mångsidiga uppgifter och material.</p><p><b> kl. 11.00–15.00 Främjande av barns simkunskaper</b><br>Kom och diskutera barns simkunskaper medan de minsta i familjen får hoppa i bollhavet.<br>Medverkar gör Helsingfors stads fostrans- och utbildningssektorn, Fimu ry och Monaliiku ry.</p><p><b>klo 12.00–14.00 Yksin-projektet: Miniböcker och flätning av matariki-stjärnor</b><br>I verkstaden pysslar vi egna miniböcker och flätar matariki-stjärnor tillsammans i en kreativ anda.</p><p><b>klo 13.00–13.30 Glatt musiklekis</b><br>”Snurra som en virvel på vattenytan!<br>Sväva som ett moln på himlen!”</p><p>I det glada familjemusiklekiset får vi sjunga, leka och musicera i somrig stämning. Musiklekiset leds av Henna-Maija Kuki, barnmusiker med magisterexamen i musik, som är känd från bandet Henna ja Supersankarit.</p><p><b>klo 14.00–14.45 Arne Alligator & Djungeltrumman</b><br>Bedårande och kramgoa Arne Arne Alligator intar scenen tillsammans med sina safariklädda vänner Tobbe och Jocke. Aarne skämtar, busar och spelar djungeltrummor i en hysteriskt rolig show för hela familjen.</p><p>Arne Alligator har setts på YouTube mer än 400 miljoner gånger och hans musik har sålt flera platina- och guldskivor i olika länder.</p><p>Alla evenemang har fritt inträde, vi önskar hela familjen välkommen!</p>", "en": "<p>Children's Saturday invites families to have fun! The programme of the day offers nature-themed activities, books, music playschool, workshops and the children's absolute favourite: Arnie Alligator & Viidakkorumpu!</p><p><b>Schedule</b><br>11.00–14.00 Malmin Varustamo parish: Nature activity point for young ones<br>11.00–15.00 Promoting children's swimming skills<br>12.00–14.00: The Yksin (‘Alone’) project: Miniature books and weaving matariki stars <br>13.00–13.30 Joyful family music playschool<br>14.00–14.45 Arnie Alligator & Viidakkorumpu</p><p><b>Programme of the day</p><p>11.00–14.00 Malmin Varustamo: Nature activity point for young ones</b><br>The nature activity point invites the youngest in the family to explore and wonder at nature through a range of activities and materials.</p><p><b>11.00–15.00 Promoting children's swimming skills</b><br>Come discuss children’s swimming skills while the little ones take a dip in the ball pit.<br>Together with the Education Division of the City of Helsinki, Fimu ry, and Monaliiku ry.</p><p><b>12.00–14.00: Yksin (‘Alone’) project: Miniature books and weaving matariki stars</b><br>In this workshop you get to craft your own miniature books and weave matariki stars, letting your creativity fly together.</p><p><b>13.00–13.30: Joyful family music playschool</b><br>“Spin like a whirlpool – on the surface of the water!<br>Float like a cloud – up in the sky!\"</p><p>This joyful family music playschool will involve singing, play and making music together in a summery atmosphere. The music playschool will be led byChildren’s Musician Henna-Maija Kuki, who has a master’s degree in music and is best known from her Henna ja Supersankarit band.</p><p><b>14.00–14.45 Arnie Alligator & Friends</b><br>The adorable and huggable Arnie Alligator will be taking to the stage with his friends Tobbe and Jocke, who are always dressed for a safari. Arnie will play jokes, pranks and jungle drums in this hilarious performance for the whole family.</p><p>Arnie Alligator has received over 400 million views on YouTube and his music has sold platinum and gold records in several countries.</p><p>Free entry to all events, the whole family is welcome!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lasten lauantai kutsuu perheet puuhastelemaan! Luvassa luontoaiheista tekemistä, kirjoja, muskaria, työpajoja ja lasten lemppari: Aarne Alligaattori & Viidakkorumpu!", "sv": "Barnens lördag bjuder in familjerna till sysselsättning! Sysselsättning med naturtema, böcker, musiklekis, verkstäder och barnens favorit: Arne Alligator & Viidakkorumpu!", "en": "Children's Saturday invites families to have fun! The programme of the day offers nature-themed activities, books, music playschool, workshops and the children's absolute favourite: Arnie Alligator & Viidakkorumpu!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/09855A8A174C6429C6717B077141CD98/Lasten_lauantai_Aarne_Alligaattori_Viidakkorumpu_Riemukas_perhemuskari_ja_muuta_puuhaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/09855A8A174C6429C6717B077141CD98/Barnens_lordag_Arne_Alligator_Den_Glada_familjmusiklekisen_och_annan_sysselsattning", "en": "http://www.malmitalo.fi/en/events/event/09855A8A174C6429C6717B077141CD98/Children_s_Saturday_Arnie_Alligator_Joyful_family_music_playschool_and_other_activities" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68466/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp2rmgk44", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385685, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-04T09:15:26.670837Z", "last_modified_time": "2026-08-04T09:15:26.670851Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/9849eb0c-3507-465e-bf28-e603a3d517b3.jpg", "name": "", "cropping": "176,0,1024,849", "photographer_name": "", "alt_text": "Oona Tilch: Valon viipyillessä - As light lingers", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385685/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-28T11:31:14.424841Z", "last_modified_time": "2026-08-04T09:15:49.247733Z", "date_published": "2026-07-28T11:00:00Z", "start_time": "2026-08-09T07:00:00Z", "end_time": "2026-08-28T15: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, "location_extra_info": { "fi": "Valatori-seinä", "sv": "Valatori-väggen", "en": "Valatori Wall" }, "provider": null, "name": { "fi": "Oona Tilch: Valon viipyillessä (valokuvanäyttely)", "sv": "Oona Tilch: Valon viipyillessä - As light lingers (fotoutställning)", "en": "Oona Tilch: As Light Lingers (photo exhibition)" }, "description": { "fi": "<p>Näyttely kutsuu katsojan hiljaisiin hetkiin, joissa valo, sää ja maisema kohtaavat. Valokuvat kulkevat muuttuvien vuodenaikojen läpi: sateen pehmentämän pinnan, lumen peittämien teiden, huurtuneen hiljaisuuden, kevään heräämisen sekä meren levottoman liikkeen. Yhdessä ne muodostavat visuaalisen matkan pohjoisen luonnon ja arjen paikkojen läpi, joita muovaa tunnelma ja aika.</p><p>Näyttelyn teokset heijastavat herkkyyttä siirtymiin: lumen ja varjon, valkoisen ja harmaan, taivaan ja maan, huurteen ja sulamisen välillä. Jokainen kuva vangitsee pienen aukon hiljaisuuteen, liikkeeseen ja luonnon maailman hauraaseen kauneuteen.</p><p>Pehmeiden värien, hillityn valon ja runollisten sommitelmien kautta näyttely kannustaa meitä pysähtymään ja tarkkailemaan sitä, mikä usein jää huomaamatta: talvitien hehku, hiljaisuus katuvalojen alla, linnut seuraamassa etelän kutsua, ja pilvet heittämässä varjoja kaukaisille rinteille. </p><p>Nämä valokuvat ovat kutsu katsella hitaasti, aistia vuodenaikojen rytmi ja löytää merkitystä maiseman hiljaisista yksityiskohdista.</p><p>Näyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>", "sv": "<p>Utställningen bjuder in betraktaren till stilla stunder där ljus, väder och landskap möts. Fotografierna tar oss med genom årstidernas växlingar: regnblöta ytor, snötäckta vägar, frostig tystnad, våren som tittar fram bakom björkarna och havets rastlösa rörelse. Tillsammans bildar de en visuell resa genom den nordliga naturen och vardagliga ögonblick som formas av stämning och tid.</p><p>Verken i utställningen speglar en känslig uppmärksamhet på övergångar: mellan snö och skugga, vitt och grått, himmel och jord, frost och tö. Varje bild fångar en liten glipa in i stillheten, rörelsen och naturens sköra skönhet.</p><p>Genom mjuka färger, dämpat ljus och poetiska kompositioner uppmuntrar utställningen oss att stanna upp och observera det som ofta passerar obemärkt förbi: skenet från en vinterväg, tystnaden under gatlyktorna, fåglar som följer söderns kall och moln som kastar skuggor över avlägsna sluttningar.</p><p>Dessa fotografier är en inbjudan att betrakta i lugn och ro, att känna av årstidernas rytm och att finna mening i landskapets tysta detaljer.</p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>", "en": "<p>This exhibition invites the viewer into quiet moments where light, weather, and landscape meet. The photographs move through changing seasons: rain-softened surfaces, snow-covered roads, frosted silence, spring emerging behind birch trees, and the restless movement of the sea. Together, they form a visual journey through northern nature and everyday passages shaped by atmosphere and time.</p><p>The works in the exhibition reflect a sensitive attention to transitions: between snow and shadow, white and grey, sky and earth, frost and thaw. Each image captures a small opening into stillness, movement, and the fragile beauty of the natural world.</p><p>Through soft colors, muted light, and poetic compositions, the exhibition encourages us to pause and observe what often passes unnoticed: the glow of a winter road, the silence beneath streetlights, birds following the call of the south, and clouds casting shadows over distant slopes. </p><p>These photographs are an invitation to look slowly, to sense the rhythm of the seasons, and to find meaning in the quiet details of the landscape.</p><p>The exhibition is open during the library’s opening hours. Welcome!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Valokuvanäyttely kutsuu katsomaan maisemaa hitaasti muistuttaen, että kauneus voi löytyä siirtymäkohdista: varjon ja valon, maan ja taivaan väliltä.", "sv": "Fotoutställningen påminner oss om att skönhet kan finnas i övergångarna: mellan skugga och ljus, mellan jord och himmel.", "en": "The photography exhibition reminds us that beauty can be found in the spaces in between: between shadow and light, between earth and sky." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2rmgk44/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69640", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385680, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-03T13:14:39.890888Z", "last_modified_time": "2026-08-03T13:14:39.890904Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793885.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385680/?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-08-03T13:14:39.630101Z", "last_modified_time": "2026-08-04T09:14:42.155699Z", "date_published": null, "start_time": "2026-11-11T08:30:00Z", "end_time": "2026-11-11T09:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Sirkuskurssi vauvaperheille – Seikkailu alkaa!", "sv": "Cirkuskurs för spädbarnsfamiljer", "en": "Baby Circus – The Adventure begins" }, "description": { "fi": "<p>Vauvaperheiden sirkuskurssi on tarkoitettu 6–12kk:n ikäisille sirkustähdille, joilla riittää energiaa oppia voimaa, koordinaatiota, näppäryyttä ja paljon muuta.</p><p>Tarjoamme sirkustunteja 6-12kk:n ikäisille lapsille, jotka siirtyvät sen jälkeen Sirkuksen aistiluokkiin, joissa on mukana akrobatian ja psykomotoriikan elementtejä. Ohjelmamme vahvistaa itseluottamusta ja sitkeyttä paitsi lapsissa myös vanhemmissa tai ohjaajissa, jotka osallistuvat aktiivisesti toimintaan ja ovat olennainen osa kurssin tavoitteiden saavuttamista. <br> Huom! Vanhempien tai ohjaajien on osallistuttava fyysisiin harjoituksiin lastensa kanssa, ja harjoitusten ja temppujen säännöllinen kotiharjoittelu on ratkaisevan tärkeää parhaiden tulosten saavuttamiseksi. Ohjaaja: sirkusohjaaja Enrique Salas.</p><p>Kurssi kokoontuu kahdessa jaksossa: <b>keskiviikkoisin 7.10.–11.11., mutta ei syyslomaviikolla 14.10.</b></p><p>Ikäsuositus: 6kk -1-vuotiaat, ei vielä kävelevät lapset yhdessä aikuisen kanssa <br>Paikka: Stoan musiikkisali <br>Kesto: 5x 45 min <br>Kieli: englanti, espanja, suomi <br>Maksuton</p><p>Ennakkoilmoittautuminen ti 4.8. klo 10 alkaen: stoa.fi/fi/tapahtumat. Ilmoittautumaan pääset Stoan verkkosivujen tapahtumakalenterin kautta: klikkaa tapahtuman kohdalla olevaa Ilmoittaudu-painiketta. HUOM! VARAA VAIN YKSI YHTEINEN PAIKKA SINULLE JA LAPSELLESI, KIITOS.</p><p>Lisätiedot: hanna.westerholm@hel.fi<br>HUOM! Jos et mahtunut kurssille mukaan, mutta haluat päästä tutustumaan perhesirkustoimintaan, voit tulla paikan päälle ennen kurssin alkua. Otamme jokaisella kurssikerralla mukaan max kaksi lapsi-aikuinen-paria kokeilemaan harrastusta kertaluonteisesti.</p>", "sv": "<p>Cirkuskursen för spädbarnsfamiljer är avsedd för cirkusstjärnor i 6–12 månaders ålder, som har tillräckligt med energi för att lära sig styrka, koordination, händighet och mycket annat.</p><p>Vi erbjuder cirkustimmar för barn i åldern 6–12 månader, som därefter övergår till Cirkusens sinnesklasser med element av akrobatik och psykomotorik. Vårt program stärker självförtroendet och uthålligheten inte bara hos barn utan också hos föräldrar eller instruktörer som aktivt deltar i verksamheten och som spelar en väsentlig roll för att uppnå kursmålen.</p><p>Föräldrarna eller instruktörerna ska delta i de fysiska övningarna tillsammans med sina barn, och regelbunden träning hemma av övningarna och tricken är avgörande för att uppnå bästa möjliga resultat.</p><p>Ledare: cirkusinstruktören Enrique Salas<br>Åldersrekommendation: barn i åldern 6 mån–1 år som ännu inte går, tillsammans med en vuxen<br>Plats: Stoas musiksal <br>Längd: 5 x 45 min <br>Språk: engelska, spanska, finska</p><p>Kursen är avgiftsfri.</p><p>Förhandsanmälan från och med tisdagen den 4.8. kl. 12: stoa.fi/sv/evenemangen, under evenemanget, via knappen Anmäl dig till höger på rutan. OBS! Vänligen reservera endast en delad plats för dig och ditt barn.</p><p>Mer information: hanna.westerholm@hel.fi</p>", "en": "<p>Our baby classes are for mini circus superstars who have lots of energy and want to gain strength, coordination, dexterity, and more.</p><p>We teach classes for children aged 6 months - to 1 years where they then join our Circus Sensory Classes with elements of acrobatics, and phycomotricity, among others. Our program builds confidence and resilience not only in the kids but also in the parents/tutors who are involved in the activities and performing a big part of the course objectives. <br> <br>Note: Parents or tutors are required to perform physical movements with their kids and is imperative to practice at home the exercises and tricks for the optimal result. <br> <br>Instructor: circus instructor and performer Enrique Salas</p><p>Age recommendation: kids 6-12 months with an adult</p><p>Duration: 5x45 min</p><p>Languages: English, Spanish, Finnish</p><p>Free entry</p><p>Pre-registration starting from Tue 4.8. at 12 at stoa.fi. NOTE! PLEASE RESERVE ONLY ONE PLACE FOR BOTH YOU AND YOUR CHILD TOGETHER.</p><p>More info: hanna.westerholm@hel.fi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Vauvaperheiden sirkuskurssi on tarkoitettu 6–12kk:n ikäisille sirkustähdille, joilla riittää energiaa oppia voimaa, koordinaatiota, näppäryyttä ja paljon muuta.", "sv": "Cirkuskursen för spädbarnsfamiljer är avsedd för cirkusstjärnor i 6–12 månaders ålder, som har tillräckligt med energi för att lära sig styrka, koordination, händighet och mycket annat.", "en": "Our baby classes are for mini circus superstars who have lots of energy and want to gain strength, coordination, dexterity, and more." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/93C4974C33791DC9E5DAF450FB804F08/Sirkuskurssi_vauvaperheille_", "sv": "http://www.stoa.fi/sv/evenemang/event/93C4974C33791DC9E5DAF450FB804F08/_Cirkuskurs_for_spadbarnsfamiljer_", "en": "http://www.stoa.fi/en/events/event/93C4974C33791DC9E5DAF450FB804F08/Baby_Circus_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69640/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69632", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385673, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-03T12:14:41.778732Z", "last_modified_time": "2026-08-03T12:14:41.778747Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793879.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385673/?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-08-03T12:14:41.579843Z", "last_modified_time": "2026-08-04T09:14:41.861412Z", "date_published": null, "start_time": "2026-11-11T07:15:00Z", "end_time": "2026-11-11T08: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, "location_extra_info": null, "provider": null, "name": { "fi": "Sirkuskurssi taaperoperheille – Seikkailu jatkuu!", "sv": "Cirkuskurs för småbarnsfamiljer", "en": "Toddlers Circus – The Adventure continues" }, "description": { "fi": "<p>Taaperoperheiden sirkuskurssi on tarkoitettu 1–2-vuotiaille sirkustähdille, joilla riittää energiaa oppia voimaa, koordinaatiota, näppäryyttä ja paljon muuta.</p><p>Tarjoamme tunteja 1–2-vuotiaille lapsille aikuisineen. Tuntien jälkeen siirrymme Sirkuksen aistiluokkiin, joissa on mukana akrobatian ja psykomotoriikan elementtejä. Kurssi vahvistaa itseluottamusta ja sitkeyttä paitsi lapsissa myös vanhemmissa tai ohjaajissa, jotka osallistuvat aktiivisesti toimintaan ja ovat olennainen osa kurssin tavoitteiden saavuttamista.</p><p>Huom! Vanhempien tai ohjaajien on osallistuttava fyysisiin harjoituksiin lastensa kanssa, ja harjoitusten ja temppujen säännöllinen kotiharjoittelu on ratkaisevan tärkeää parhaiden tulosten saavuttamiseksi.</p><p>Jos et mahtunut kurssille mukaan, mutta haluat päästä tutustumaan perhesirkustoimintaan, voit tulla paikan päälle ennen kurssin alkua. Otamme jokaisella kurssikerralla mukaan max kaksi lapsi-aikuinen-paria kokeilemaan harrastusta kertaluonteisesti.</p><p>Kurssi kokoontuu <b>keskiviikkoisin 7.10.–11.11., mutta ei syyslomaviikolla 14.10.</b></p><p>Ohjaaja: sirkusohjaaja Enrique Salas <br>Kohderyhmä: 1–2-vuotiaat, jo kävelevät lapset yhdessä aikuisen kanssa <br>Paikka: Stoan musiikkisali <br>Kesto: 5x45 min <br>Kieli: englanti, espanja, suomi</p><p>Maksuton. Ennakkoilmoittautuminen ti 4.8. klo 10 alkaen: stoa.fi/fi/tapahtumat. Ilmoittautumaan pääset Stoan verkkosivujen tapahtumakalenterin kautta: klikkaa tapahtuman kohdalla olevaa Ilmoittaudu-painiketta. HUOM! VARAA VAIN YKSI YHTEINEN PAIKKA SINULLE JA LAPSELLESI, KIITOS.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Cirkuskursen för småbarnsfamiljer är avsedd för cirkusstjärnor i 1–2 års ålder, som har tillräckligt med energi för att lära sig styrka, koordination, händighet och mycket annat.</p><p>Vi erbjuder cirkustimmar för barn i åldern 1–2 år, som därefter övergår till Cirkusens sinnesklasser med element av akrobatik och psykomotorik. Kursen stärker självförtroendet och uthålligheten inte bara hos barn utan också hos föräldrar eller instruktörer som aktivt deltar i verksamheten och som spelar en väsentlig roll för att uppnå kursmålen.</p><p>Föräldrarna eller instruktörerna ska delta i de fysiska övningarna tillsammans med sina barn, och regelbunden träning hemma av övningarna och tricken är avgörande för att uppnå bästa möjliga resultat.</p><p>Om du inte rymdes med på kursen, men vill bekanta dig med familjecirkusverksamheten, kan du komma på plats innan kursen börjar. Vi tar med högst två barn-vuxen-par på varje kurs för att pröva på hobbyn en gång.</p><p>Ledare: cirkusinstruktören Enrique Salas<br>Målgrupp: 1–2 åringar som redan går, tillsammans med en vuxen <br>Plats: Stoas musiksal <br>Längd: 5 x 45 min <br>Språk: engelska, spanska, finska <br>Kursen är avgiftsfri.</p><p>Förhandsanmälan från och med tisdagen den 4.8. kl. 12: stoa.fi/sv/evenemangen, under evenemanget, via knappen Anmäl dig till höger på rutan. OBS! Vänligen reservera endast en delad plats för dig och ditt barn.</p><p>Mer information: hanna.westerholm@hel.fi</p>", "en": "<p>Our toddler classes are for mini circus superstars who have lots of energy and want to gain strength, coordination, dexterity, and more.</p><p>We teach classes for children aged 1,2 years to 2 years and they then join our Circus Sensory Classes with elements of acrobatics, and psychomotricity, among others. Our program builds confidence and resilience not only in the kids but also in the parents/tutors who are involved in the activities and performing a big part of the course objectives. <br> <br> Note: Parents or tutors are required to perform physical movements with their kids and is imperative to practice at home the exercises and tricks for the optimal result.</p><p>Instructor: circus instructor and performer Enrique Salas</p><p>Age recommendation: 1-2-year-olds with an adult</p><p>Duration: 5x45 min</p><p>Languages: English, Spanish, Finnish</p><p>Free entry</p><p>Pre-registration starting from Tue 4.8. at 12 a.m. stoa.fi/en/events. NOTE! PLEASE RESERVE ONLY ONE PLACE FOR BOTH YOU AND YOUR CHILD TOGETHER.</p><p>More info: hanna.westerholm@hel.fi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Taaperoperheiden sirkuskurssi on tarkoitettu 1–2-vuotiaille sirkustähdille, joilla riittää energiaa oppia voimaa, koordinaatiota, näppäryyttä ja paljon muuta.", "sv": "Cirkuskursen för småbarnsfamiljer är avsedd för cirkusstjärnor i 1–2 års ålder, som har tillräckligt med energi för att lära sig styrka, koordination, händighet och mycket annat.", "en": "Our toddler classes are for mini circus superstars who have lots of energy and want to gain strength, coordination, dexterity, and more." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/816CAE9C2ED14F80AEF60B7D247C5291/Sirkuskurssi_taaperoperheille_", "sv": "http://www.stoa.fi/sv/evenemang/event/816CAE9C2ED14F80AEF60B7D247C5291/Cirkuskurs_for_smabarnsfamiljer_", "en": "http://www.stoa.fi/en/events/event/816CAE9C2ED14F80AEF60B7D247C5291/Toddlers_Circus_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69632/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69639", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385679, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-03T13:14:37.468451Z", "last_modified_time": "2026-08-03T13:14:37.468470Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793884.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385679/?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-08-03T13:14:37.252398Z", "last_modified_time": "2026-08-04T09:14:40.023763Z", "date_published": null, "start_time": "2026-11-04T08:30:00Z", "end_time": "2026-11-04T09:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Sirkuskurssi vauvaperheille – Seikkailu alkaa!", "sv": "Cirkuskurs för spädbarnsfamiljer", "en": "Baby Circus – The Adventure begins" }, "description": { "fi": "<p>Vauvaperheiden sirkuskurssi on tarkoitettu 6–12kk:n ikäisille sirkustähdille, joilla riittää energiaa oppia voimaa, koordinaatiota, näppäryyttä ja paljon muuta.</p><p>Tarjoamme sirkustunteja 6-12kk:n ikäisille lapsille, jotka siirtyvät sen jälkeen Sirkuksen aistiluokkiin, joissa on mukana akrobatian ja psykomotoriikan elementtejä. Ohjelmamme vahvistaa itseluottamusta ja sitkeyttä paitsi lapsissa myös vanhemmissa tai ohjaajissa, jotka osallistuvat aktiivisesti toimintaan ja ovat olennainen osa kurssin tavoitteiden saavuttamista. <br> Huom! Vanhempien tai ohjaajien on osallistuttava fyysisiin harjoituksiin lastensa kanssa, ja harjoitusten ja temppujen säännöllinen kotiharjoittelu on ratkaisevan tärkeää parhaiden tulosten saavuttamiseksi. Ohjaaja: sirkusohjaaja Enrique Salas.</p><p>Kurssi kokoontuu kahdessa jaksossa: <b>keskiviikkoisin 7.10.–11.11., mutta ei syyslomaviikolla 14.10.</b></p><p>Ikäsuositus: 6kk -1-vuotiaat, ei vielä kävelevät lapset yhdessä aikuisen kanssa <br>Paikka: Stoan musiikkisali <br>Kesto: 5x 45 min <br>Kieli: englanti, espanja, suomi <br>Maksuton</p><p>Ennakkoilmoittautuminen ti 4.8. klo 10 alkaen: stoa.fi/fi/tapahtumat. Ilmoittautumaan pääset Stoan verkkosivujen tapahtumakalenterin kautta: klikkaa tapahtuman kohdalla olevaa Ilmoittaudu-painiketta. HUOM! VARAA VAIN YKSI YHTEINEN PAIKKA SINULLE JA LAPSELLESI, KIITOS.</p><p>Lisätiedot: hanna.westerholm@hel.fi<br>HUOM! Jos et mahtunut kurssille mukaan, mutta haluat päästä tutustumaan perhesirkustoimintaan, voit tulla paikan päälle ennen kurssin alkua. Otamme jokaisella kurssikerralla mukaan max kaksi lapsi-aikuinen-paria kokeilemaan harrastusta kertaluonteisesti.</p>", "sv": "<p>Cirkuskursen för spädbarnsfamiljer är avsedd för cirkusstjärnor i 6–12 månaders ålder, som har tillräckligt med energi för att lära sig styrka, koordination, händighet och mycket annat.</p><p>Vi erbjuder cirkustimmar för barn i åldern 6–12 månader, som därefter övergår till Cirkusens sinnesklasser med element av akrobatik och psykomotorik. Vårt program stärker självförtroendet och uthålligheten inte bara hos barn utan också hos föräldrar eller instruktörer som aktivt deltar i verksamheten och som spelar en väsentlig roll för att uppnå kursmålen.</p><p>Föräldrarna eller instruktörerna ska delta i de fysiska övningarna tillsammans med sina barn, och regelbunden träning hemma av övningarna och tricken är avgörande för att uppnå bästa möjliga resultat.</p><p>Ledare: cirkusinstruktören Enrique Salas<br>Åldersrekommendation: barn i åldern 6 mån–1 år som ännu inte går, tillsammans med en vuxen<br>Plats: Stoas musiksal <br>Längd: 5 x 45 min <br>Språk: engelska, spanska, finska</p><p>Kursen är avgiftsfri.</p><p>Förhandsanmälan från och med tisdagen den 4.8. kl. 12: stoa.fi/sv/evenemangen, under evenemanget, via knappen Anmäl dig till höger på rutan. OBS! Vänligen reservera endast en delad plats för dig och ditt barn.</p><p>Mer information: hanna.westerholm@hel.fi</p>", "en": "<p>Our baby classes are for mini circus superstars who have lots of energy and want to gain strength, coordination, dexterity, and more.</p><p>We teach classes for children aged 6 months - to 1 years where they then join our Circus Sensory Classes with elements of acrobatics, and phycomotricity, among others. Our program builds confidence and resilience not only in the kids but also in the parents/tutors who are involved in the activities and performing a big part of the course objectives. <br> <br>Note: Parents or tutors are required to perform physical movements with their kids and is imperative to practice at home the exercises and tricks for the optimal result. <br> <br>Instructor: circus instructor and performer Enrique Salas</p><p>Age recommendation: kids 6-12 months with an adult</p><p>Duration: 5x45 min</p><p>Languages: English, Spanish, Finnish</p><p>Free entry</p><p>Pre-registration starting from Tue 4.8. at 12 at stoa.fi. NOTE! PLEASE RESERVE ONLY ONE PLACE FOR BOTH YOU AND YOUR CHILD TOGETHER.</p><p>More info: hanna.westerholm@hel.fi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Vauvaperheiden sirkuskurssi on tarkoitettu 6–12kk:n ikäisille sirkustähdille, joilla riittää energiaa oppia voimaa, koordinaatiota, näppäryyttä ja paljon muuta.", "sv": "Cirkuskursen för spädbarnsfamiljer är avsedd för cirkusstjärnor i 6–12 månaders ålder, som har tillräckligt med energi för att lära sig styrka, koordination, händighet och mycket annat.", "en": "Our baby classes are for mini circus superstars who have lots of energy and want to gain strength, coordination, dexterity, and more." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6109AAABE572F0452A684C30F1480CAC/Sirkuskurssi_vauvaperheille_", "sv": "http://www.stoa.fi/sv/evenemang/event/6109AAABE572F0452A684C30F1480CAC/_Cirkuskurs_for_spadbarnsfamiljer_", "en": "http://www.stoa.fi/en/events/event/6109AAABE572F0452A684C30F1480CAC/Baby_Circus_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69639/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }