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=27
{ "meta": { "count": 35919, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=28", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=26" }, "data": [ { "id": "espoo_le:agqfzb7x4a", "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:p11617/?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:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqfzb7zue/?format=api" }, "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": 2386094, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-01T09:49:36.314074Z", "last_modified_time": "2026-09-01T09:49:36.314086Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c3c238d9-3de2-4b35-a523-9a4dec9e70bb.jpg", "name": "", "cropping": "184,0,1096,912", "photographer_name": "-Rita-đ©âđł und đ· mit †PixabaystĂ€", "alt_text": "Aamiaiskulho jogurtilla ja hedelmillĂ€.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386094/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-01T09:33:30.005561Z", "last_modified_time": "2026-09-10T14:31:41.990689Z", "date_published": null, "start_time": "2027-04-26T12:00:00Z", "end_time": "2027-04-26T13: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": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "provider": { "fi": "Espoon harrastuspolku | Asad friigym", "sv": "Espoon harrastuspolku | Asad friigym", "en": "Espoon harrastuspolku | Asad friigym" }, "name": { "fi": "Tasty Snack -vĂ€lipalaharrastus 3.-6. luokkalaisille", "sv": "Tasty Snack-mellanmĂ„lshobby 3.-6. Ă€ngskulla", "en": "Tasty Snack hobby for 3.-6. graders" }, "description": { "fi": "<p>Tasty Snack- vĂ€lipalaryhmĂ€ssĂ€ valmistetaan yhdessĂ€ simppeleitĂ€, hauskoja ja maukkaita vĂ€lipaloja, herkkuja ja ruokia. Ruokalistalle kuuluu nopeita ja edullisia vĂ€lipaloja, yllĂ€tyksellisiĂ€ makutrendejĂ€ maailmalta, takuuvarmoja peruspurtavia sekĂ€ toivereseptejĂ€. VĂ€lipaloja valmistetaan niin tiimityönĂ€ kuin itsenĂ€isesti. Oletko kokeillut tehdĂ€ itse leipÀÀ? EntĂ€s BobateetĂ€? SuklaakeksejĂ€? Tonnikalapastaa? Tule mukaan oppimaan ja herkuttelemaan!</p><p>Ilmoittautuminen harrastusryhmiin kĂ€ynnistyy torstaina 27.8. alkaen. HarrastusryhmĂ€t alkavat viikolla 37 maanantaista 7.9.2026 alkaen. Harrastus kestÀÀ koko lukuvuoden ajan, ellei muuta mainita. HarrastusryhmĂ€t eivĂ€t kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>HarrastusryhmĂ€n jĂ€rjestĂ€jĂ€ on yhteydessĂ€ huoltajiin harrastuksen kĂ€ytĂ€nnön asioista. Olettehan yhteydessĂ€ harrastuksen jĂ€rjestĂ€jÀÀn, mikĂ€li haluatte perua lapsen osallistumisen tai teillĂ€ on kysyttĂ€vÀÀ harrastuksesta. HarrastusryhmissĂ€ on myös mahdollista kĂ€ydĂ€ tutustumassa ennen ilmoittautumista. </p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystĂ€ tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessĂ€ lapsen tuen tarpeista tai muista huomioitavista asioista. NĂ€in harrastuksen jĂ€rjestĂ€jĂ€ voi huomioida lasten erilaiset tarpeet.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.â9.-luokkalaisille koulupĂ€ivien jĂ€lkeen kouluilla, niiden lĂ€heisyydessĂ€ tai etĂ€yhteydellĂ€. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Tasty Snack-mellanmĂ„lsgruppen tillreder vi enkla, roliga och smakliga mellanmĂ„l, delikatesser och matrĂ€tter tillsammans. PĂ„ menyn finns snabba och förmĂ„nliga mellanmĂ„l, överraskande smaktrender frĂ„n hela vĂ€rlden, bombsĂ€kra tilltugg samt önskerecept. MellanmĂ„l tillreds bĂ„de i grupp och pĂ„ egen hand. Har du provat att baka bröd sjĂ€lv? Eller laga bubbelte? Chokladkex? Tonfiskpasta? Kom med och lĂ€r dig och Ă€t gott! </p><p>AnmĂ€lan till hobbygrupperna öppnas torsdagen den 27 augusti. Hobbygrupperna börjar vecka 37, mĂ„ndagen den 7 september 2026. Hobbyn pĂ„gĂ„r hela lĂ€sĂ„ret, om inte annat nĂ€mns. Hobbygrupperna samlas inte under skolloven. Hobbyn Ă€r avgiftsfri för deltagarna. Esbo stad har försĂ€krat deltagarna i hobbygrupperna.</p><p>Den som ordnar hobbygruppen kontaktar vĂ„rdnadshavarna om praktiska frĂ„gor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frĂ„gor om hobbyn. Det Ă€r ocksĂ„ möjligt att bekanta sig med hobbygrupperna före anmĂ€lan. </p><p>Alla Ă€r vĂ€lkomna till hobbygrupperna oberoende av till exempel sprĂ„kkunskaper, funktionsförmĂ„ga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande pĂ„ bĂ€sta möjliga sĂ€tt. BerĂ€tta i samband med anmĂ€lan om barnet behöver stöd eller om det finns nĂ„got annat som man ska ta hĂ€nsyn till. PĂ„ sĂ„ sĂ€tt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemĂ„l för elever i Ă„rskurs 3â9 efter skoldagarna i skolorna, i nĂ€rheten av skolorna eller pĂ„ distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals. The menu includes quick and affordable snacks, surprising flavours from around the world, reliable basic snacks and recipes suggested by the participants. Snacks are prepared both as teamwork and independently. Have you tried making bread from scratch? How about boba tea? Or chocolate biscuits? Or tuna pasta? Join us for learning and snacking! </p><p>Registration for hobby groups will open on Thursday 27 August. Hobby groups will start their activities on week number 37, which starts on Monday 7 September 2026. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Each hobby group organiser will contact the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your childâs participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up. </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the childâs participation in the best possible way. When registering, please let us know about the childâs support needs or other things that we need to take into account. This allows the hobby organiser to address childrenâs different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3â9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tasty Snack- vĂ€lipalaryhmĂ€ssĂ€ valmistetaan yhdessĂ€ simppeleitĂ€, hauskoja ja maukkaita vĂ€lipaloja, herkkuja ja ruokia. ", "sv": "I Tasty Snack-mellanmĂ„lsgruppen tillreder vi enkla, roliga och smakliga mellanmĂ„l, delikatesser och matrĂ€tter tillsammans", "en": "In the Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqfzb7x4a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqfzb7yp4", "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:p11617/?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:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqfzb7zue/?format=api" }, "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": 2386094, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-01T09:49:36.314074Z", "last_modified_time": "2026-09-01T09:49:36.314086Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c3c238d9-3de2-4b35-a523-9a4dec9e70bb.jpg", "name": "", "cropping": "184,0,1096,912", "photographer_name": "-Rita-đ©âđł und đ· mit †PixabaystĂ€", "alt_text": "Aamiaiskulho jogurtilla ja hedelmillĂ€.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386094/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-01T09:33:30.109237Z", "last_modified_time": "2026-09-10T14:31:41.954834Z", "date_published": null, "start_time": "2027-05-03T12:00:00Z", "end_time": "2027-05-03T13: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": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "provider": { "fi": "Espoon harrastuspolku | Asad friigym", "sv": "Espoon harrastuspolku | Asad friigym", "en": "Espoon harrastuspolku | Asad friigym" }, "name": { "fi": "Tasty Snack -vĂ€lipalaharrastus 3.-6. luokkalaisille", "sv": "Tasty Snack-mellanmĂ„lshobby 3.-6. Ă€ngskulla", "en": "Tasty Snack hobby for 3.-6. graders" }, "description": { "fi": "<p>Tasty Snack- vĂ€lipalaryhmĂ€ssĂ€ valmistetaan yhdessĂ€ simppeleitĂ€, hauskoja ja maukkaita vĂ€lipaloja, herkkuja ja ruokia. Ruokalistalle kuuluu nopeita ja edullisia vĂ€lipaloja, yllĂ€tyksellisiĂ€ makutrendejĂ€ maailmalta, takuuvarmoja peruspurtavia sekĂ€ toivereseptejĂ€. VĂ€lipaloja valmistetaan niin tiimityönĂ€ kuin itsenĂ€isesti. Oletko kokeillut tehdĂ€ itse leipÀÀ? EntĂ€s BobateetĂ€? SuklaakeksejĂ€? Tonnikalapastaa? Tule mukaan oppimaan ja herkuttelemaan!</p><p>Ilmoittautuminen harrastusryhmiin kĂ€ynnistyy torstaina 27.8. alkaen. HarrastusryhmĂ€t alkavat viikolla 37 maanantaista 7.9.2026 alkaen. Harrastus kestÀÀ koko lukuvuoden ajan, ellei muuta mainita. HarrastusryhmĂ€t eivĂ€t kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>HarrastusryhmĂ€n jĂ€rjestĂ€jĂ€ on yhteydessĂ€ huoltajiin harrastuksen kĂ€ytĂ€nnön asioista. Olettehan yhteydessĂ€ harrastuksen jĂ€rjestĂ€jÀÀn, mikĂ€li haluatte perua lapsen osallistumisen tai teillĂ€ on kysyttĂ€vÀÀ harrastuksesta. HarrastusryhmissĂ€ on myös mahdollista kĂ€ydĂ€ tutustumassa ennen ilmoittautumista. </p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystĂ€ tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessĂ€ lapsen tuen tarpeista tai muista huomioitavista asioista. NĂ€in harrastuksen jĂ€rjestĂ€jĂ€ voi huomioida lasten erilaiset tarpeet.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.â9.-luokkalaisille koulupĂ€ivien jĂ€lkeen kouluilla, niiden lĂ€heisyydessĂ€ tai etĂ€yhteydellĂ€. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Tasty Snack-mellanmĂ„lsgruppen tillreder vi enkla, roliga och smakliga mellanmĂ„l, delikatesser och matrĂ€tter tillsammans. PĂ„ menyn finns snabba och förmĂ„nliga mellanmĂ„l, överraskande smaktrender frĂ„n hela vĂ€rlden, bombsĂ€kra tilltugg samt önskerecept. MellanmĂ„l tillreds bĂ„de i grupp och pĂ„ egen hand. Har du provat att baka bröd sjĂ€lv? Eller laga bubbelte? Chokladkex? Tonfiskpasta? Kom med och lĂ€r dig och Ă€t gott! </p><p>AnmĂ€lan till hobbygrupperna öppnas torsdagen den 27 augusti. Hobbygrupperna börjar vecka 37, mĂ„ndagen den 7 september 2026. Hobbyn pĂ„gĂ„r hela lĂ€sĂ„ret, om inte annat nĂ€mns. Hobbygrupperna samlas inte under skolloven. Hobbyn Ă€r avgiftsfri för deltagarna. Esbo stad har försĂ€krat deltagarna i hobbygrupperna.</p><p>Den som ordnar hobbygruppen kontaktar vĂ„rdnadshavarna om praktiska frĂ„gor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frĂ„gor om hobbyn. Det Ă€r ocksĂ„ möjligt att bekanta sig med hobbygrupperna före anmĂ€lan. </p><p>Alla Ă€r vĂ€lkomna till hobbygrupperna oberoende av till exempel sprĂ„kkunskaper, funktionsförmĂ„ga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande pĂ„ bĂ€sta möjliga sĂ€tt. BerĂ€tta i samband med anmĂ€lan om barnet behöver stöd eller om det finns nĂ„got annat som man ska ta hĂ€nsyn till. PĂ„ sĂ„ sĂ€tt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemĂ„l för elever i Ă„rskurs 3â9 efter skoldagarna i skolorna, i nĂ€rheten av skolorna eller pĂ„ distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals. The menu includes quick and affordable snacks, surprising flavours from around the world, reliable basic snacks and recipes suggested by the participants. Snacks are prepared both as teamwork and independently. Have you tried making bread from scratch? How about boba tea? Or chocolate biscuits? Or tuna pasta? Join us for learning and snacking! </p><p>Registration for hobby groups will open on Thursday 27 August. Hobby groups will start their activities on week number 37, which starts on Monday 7 September 2026. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Each hobby group organiser will contact the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your childâs participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up. </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the childâs participation in the best possible way. When registering, please let us know about the childâs support needs or other things that we need to take into account. This allows the hobby organiser to address childrenâs different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3â9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tasty Snack- vĂ€lipalaryhmĂ€ssĂ€ valmistetaan yhdessĂ€ simppeleitĂ€, hauskoja ja maukkaita vĂ€lipaloja, herkkuja ja ruokia. ", "sv": "I Tasty Snack-mellanmĂ„lsgruppen tillreder vi enkla, roliga och smakliga mellanmĂ„l, delikatesser och matrĂ€tter tillsammans", "en": "In the Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqfzb7yp4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqfzb7zcq", "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:p11617/?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:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqfzb7zue/?format=api" }, "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": 2386094, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-01T09:49:36.314074Z", "last_modified_time": "2026-09-01T09:49:36.314086Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c3c238d9-3de2-4b35-a523-9a4dec9e70bb.jpg", "name": "", "cropping": "184,0,1096,912", "photographer_name": "-Rita-đ©âđł und đ· mit †PixabaystĂ€", "alt_text": "Aamiaiskulho jogurtilla ja hedelmillĂ€.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386094/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-01T09:33:30.185082Z", "last_modified_time": "2026-09-10T14:31:41.917363Z", "date_published": null, "start_time": "2027-05-10T12:00:00Z", "end_time": "2027-05-10T13: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": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "provider": { "fi": "Espoon harrastuspolku | Asad friigym", "sv": "Espoon harrastuspolku | Asad friigym", "en": "Espoon harrastuspolku | Asad friigym" }, "name": { "fi": "Tasty Snack -vĂ€lipalaharrastus 3.-6. luokkalaisille", "sv": "Tasty Snack-mellanmĂ„lshobby 3.-6. Ă€ngskulla", "en": "Tasty Snack hobby for 3.-6. graders" }, "description": { "fi": "<p>Tasty Snack- vĂ€lipalaryhmĂ€ssĂ€ valmistetaan yhdessĂ€ simppeleitĂ€, hauskoja ja maukkaita vĂ€lipaloja, herkkuja ja ruokia. Ruokalistalle kuuluu nopeita ja edullisia vĂ€lipaloja, yllĂ€tyksellisiĂ€ makutrendejĂ€ maailmalta, takuuvarmoja peruspurtavia sekĂ€ toivereseptejĂ€. VĂ€lipaloja valmistetaan niin tiimityönĂ€ kuin itsenĂ€isesti. Oletko kokeillut tehdĂ€ itse leipÀÀ? EntĂ€s BobateetĂ€? SuklaakeksejĂ€? Tonnikalapastaa? Tule mukaan oppimaan ja herkuttelemaan!</p><p>Ilmoittautuminen harrastusryhmiin kĂ€ynnistyy torstaina 27.8. alkaen. HarrastusryhmĂ€t alkavat viikolla 37 maanantaista 7.9.2026 alkaen. Harrastus kestÀÀ koko lukuvuoden ajan, ellei muuta mainita. HarrastusryhmĂ€t eivĂ€t kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>HarrastusryhmĂ€n jĂ€rjestĂ€jĂ€ on yhteydessĂ€ huoltajiin harrastuksen kĂ€ytĂ€nnön asioista. Olettehan yhteydessĂ€ harrastuksen jĂ€rjestĂ€jÀÀn, mikĂ€li haluatte perua lapsen osallistumisen tai teillĂ€ on kysyttĂ€vÀÀ harrastuksesta. HarrastusryhmissĂ€ on myös mahdollista kĂ€ydĂ€ tutustumassa ennen ilmoittautumista. </p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystĂ€ tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessĂ€ lapsen tuen tarpeista tai muista huomioitavista asioista. NĂ€in harrastuksen jĂ€rjestĂ€jĂ€ voi huomioida lasten erilaiset tarpeet.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.â9.-luokkalaisille koulupĂ€ivien jĂ€lkeen kouluilla, niiden lĂ€heisyydessĂ€ tai etĂ€yhteydellĂ€. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Tasty Snack-mellanmĂ„lsgruppen tillreder vi enkla, roliga och smakliga mellanmĂ„l, delikatesser och matrĂ€tter tillsammans. PĂ„ menyn finns snabba och förmĂ„nliga mellanmĂ„l, överraskande smaktrender frĂ„n hela vĂ€rlden, bombsĂ€kra tilltugg samt önskerecept. MellanmĂ„l tillreds bĂ„de i grupp och pĂ„ egen hand. Har du provat att baka bröd sjĂ€lv? Eller laga bubbelte? Chokladkex? Tonfiskpasta? Kom med och lĂ€r dig och Ă€t gott! </p><p>AnmĂ€lan till hobbygrupperna öppnas torsdagen den 27 augusti. Hobbygrupperna börjar vecka 37, mĂ„ndagen den 7 september 2026. Hobbyn pĂ„gĂ„r hela lĂ€sĂ„ret, om inte annat nĂ€mns. Hobbygrupperna samlas inte under skolloven. Hobbyn Ă€r avgiftsfri för deltagarna. Esbo stad har försĂ€krat deltagarna i hobbygrupperna.</p><p>Den som ordnar hobbygruppen kontaktar vĂ„rdnadshavarna om praktiska frĂ„gor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frĂ„gor om hobbyn. Det Ă€r ocksĂ„ möjligt att bekanta sig med hobbygrupperna före anmĂ€lan. </p><p>Alla Ă€r vĂ€lkomna till hobbygrupperna oberoende av till exempel sprĂ„kkunskaper, funktionsförmĂ„ga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande pĂ„ bĂ€sta möjliga sĂ€tt. BerĂ€tta i samband med anmĂ€lan om barnet behöver stöd eller om det finns nĂ„got annat som man ska ta hĂ€nsyn till. PĂ„ sĂ„ sĂ€tt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemĂ„l för elever i Ă„rskurs 3â9 efter skoldagarna i skolorna, i nĂ€rheten av skolorna eller pĂ„ distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals. The menu includes quick and affordable snacks, surprising flavours from around the world, reliable basic snacks and recipes suggested by the participants. Snacks are prepared both as teamwork and independently. Have you tried making bread from scratch? How about boba tea? Or chocolate biscuits? Or tuna pasta? Join us for learning and snacking! </p><p>Registration for hobby groups will open on Thursday 27 August. Hobby groups will start their activities on week number 37, which starts on Monday 7 September 2026. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Each hobby group organiser will contact the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your childâs participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up. </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the childâs participation in the best possible way. When registering, please let us know about the childâs support needs or other things that we need to take into account. This allows the hobby organiser to address childrenâs different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3â9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tasty Snack- vĂ€lipalaryhmĂ€ssĂ€ valmistetaan yhdessĂ€ simppeleitĂ€, hauskoja ja maukkaita vĂ€lipaloja, herkkuja ja ruokia. ", "sv": "I Tasty Snack-mellanmĂ„lsgruppen tillreder vi enkla, roliga och smakliga mellanmĂ„l, delikatesser och matrĂ€tter tillsammans", "en": "In the Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqfzb7zcq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68168", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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: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:p6529/?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": "28,90-59,60 âŹ", "en": "28,90-59,60 âŹ" }, "info_url": { "fi": "https://www.lippu.fi/artist/queerlesque-festival/", "en": "https://www.lippu.fi/artist/queerlesque-festival/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1509764, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T13:14:02.605049Z", "last_modified_time": "2026-03-03T13:14:02.605067Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785954.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509764/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T13:14:02.383053Z", "last_modified_time": "2026-09-10T14:14:56.388932Z", "date_published": null, "start_time": "2026-10-10T17: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": "We Are Queerlesque", "en": "We Are Queerlesque" }, "name": { "fi": "VI International Queerlesque Festival: Betty Fvckâs 10-year anniversary", "en": "VI International Queerlesque Festival: Betty Fvckâs 10-year anniversary" }, "description": { "fi": "<p><b>VI International Queerlesque Festival</b> HelsingissĂ€ nostaa valokeilaan sĂ€kenöivĂ€n merkkipaalun: <b>Betty Fvckin 10 vuotta kestĂ€nen drag-uran</b>. Tule juhlimaan Betyn kanssa ja koe unohtumaton ilta tĂ€ynnĂ€ rohkeaa taidetta, vahvaa itseilmaisua ja hĂ€peilemĂ€töntĂ€ queeriutta. Lavalla nĂ€hdÀÀn kansainvĂ€lisiĂ€ queer-esiintyjiĂ€ eri puolilta maailmaa.</p><p>TĂ€mĂ€ huipputason festivaali yhdistÀÀ burleskin, sirkuksen, dragin ja queer-esitystaiteen sĂ€hköiseksi kokonaisuudeksi. Tapahtuma jĂ€rjestetÀÀn ikonisen Savoy-teatterin suurella nĂ€yttĂ€möllĂ€, jonka ammattimainen lavastus, valaistus ja visuaalinen toteutus luovat nĂ€yttĂ€mön, jollaista suomalaisessa queer-taiteessa ei ole ennen nĂ€hty.</p><p>YLE 1:llĂ€ ja YLE Areenassa esillĂ€ ollut International Queerlesque Festival tunnetaan hĂ€ikĂ€isevistĂ€, kantaaottavista ja yhteisöÀ voimaannuttavista esityksistÀÀn. Varaudu hĂ€mmĂ€stymÀÀn, inspiroitumaan ja liikuttumaan. Tule juhlimaan Betty Fvckin kanssa ja ole osa festivaalia, joka muuttaa elĂ€miĂ€ queer-taiteen voimalla.</p><p><b>Alustava esiintyjĂ€lista</b><br>PANDORA NOX (FR/AT â Germany's Drag Race voittaja)<br>VIRGIN X (UK)<br>LILLY SNATCHDRAGON (UK/LA)<br>MISS COOL CAT (CZ)<br>MICHIEL VAN LEEUWEN (GER/NL)<br>LADY LAVERNA (FI)<br>DELFI ORAAKEL (EST)<br>BETTY FVCK (FI/VN)</p><p><b>Kuka on Betty Fvck</b><br>Maahanmuuttajaopiskelijasta pysĂ€yttĂ€mĂ€ttömĂ€ksi ikoniksi â Betty Fvckin tarina huokuu voimaa. HĂ€n muutti Suomeen vuonna 2010 suurin unelmin, mutta pienin resurssein, ja nousi lopulta tohtorikoulutettavaksi samalla kun rakensi sĂ€ihkyvĂ€n kymmenen vuoden uran drag-esiintyjĂ€nĂ€. Vuonna 2023 hĂ€n oli ehdolla Suomen eduskuntaan ja on esiintynyt merkittĂ€vissĂ€ kotimaisissa ja kansainvĂ€lisissĂ€ tv-ohjelmissa, lehdissĂ€ sekĂ€ jĂ€ttitapahtumissa. Betty Fvck on esiintynyt 15 maassa, yhdistĂ€en Ă€lykkyyden ja aktivismin sĂ€hĂ€kkÀÀn taiteellisuuteen â samalla todistaen, ettĂ€ kestĂ€vyys voi olla samalla upeaa, pelotonta ja maailmanlaajuista.</p><p>Ovet: 19.00, Show time: 20.00 - 22.45, sisĂ€ltĂ€en 30 min vĂ€liajan</p><p>Parhaan asun palkinto yleisölle: mahdollisuus voittaa palkintoja asulla joka on mahdollisimman Queer ja Extravaganza</p><p>IkĂ€raja: K16</p><p>Permanto K18 anniskelualue. Parveke K-16, ei anniskelua.</p><p>Tietoa jĂ€rjestĂ€jĂ€stĂ€<br>https://www.instagram.com/wearequeerlesque<br>We Are Queerlesque edustaa monimuotoisuutta, rohkeutta ja queeria. Olemme turvallinen tila monimuotoiselle queer-taiteelle ja -kulttuurille HelsingissĂ€. Welcome to the Queer World of Burlesque, Boylesque, Draglesque, Circus and much more!</p><p>Video aikaisemmasta showsta Savoy-teatterissa:</p>", "en": "<p><b>The VI International Queerlesque Festival</b> in Helsinki shines the spotlight on a dazzling milestone: <b>Betty Fvckâs 10-year anniversary in drag</b>. Come celebrate with Betty and join us for a spectacular night of bold artistry, fierce self-expression, and unapologetic queernes with international queer performers from around the world.<br> <br>This world-class festival features an electrifying mix of Burlesque, Circus, Drag, and Queer performance art. Taking place on the grand stage of the iconic Savoy Theatre, the festival is elevated by stunning professional dĂ©cor, lighting, and stage design â creating the most spectacular queer art stage Finland has ever seen.<br> <br>Highlighted nationally on YLE 1 and YLE Areena, the International Queerlesque Festival is known for jaw-dropping acts that are outspoken, iconic, and deeply community-empowering. Prepare to be dazzled, inspired, and moved. Come celebrate with Betty Fvck and be part of a festival that continues to change lives through the power of queer art.</p><p><b>Preliminary line-up</b><br>PANDORA NOX (FR/AT â Germany's Drag Race voittaja)<br>VIRGIN X (UK)<br>LILLY SNATCHDRAGON (UK/LA)<br>MISS COOL CAT (CZ)<br>MICHIEL VAN LEEUWEN (GER/NL)<br>LADY LAVERNA (FI)<br>DELFI ORAAKEL (EST)<br>BETTY FVCK (FI/VN)</p><p><b>Who is Betty Fvck?</b><br>From immigrant student to unstoppable icon, Betty Fvckâs journey is pure power. She moved to Finland in 2010 with big dreams and little resources, rising to become a PhD candidate while building a dazzling 10-year career as a drag performer. A 2023 Finnish parliamentary candidate, sheâs appeared on major Finnish and international TV, magazines, and mega-events. With performances across 15 countries, Betty Fvck blends intellect, activism, and electrifying artistryâproving resilience can be glamorous, fearless, and global.</p><p>Door: 19.00, Show time: 20.00 till 22.45 include a 30 mins intermission</p><p>Best costume prize for audience: A chance to win prizes by wearing the most Queer and Extravaganza outfits</p><p>Age limit: K16</p><p>The floor: R18 alcohol serving area. The balcony: R16 no alcohol serving.</p><p>About the producer<br>https://www.instagram.com/wearequeerlesque <br>We Are Queerlesque represents Diversity, Boldness and Queer. Welcome to the Queer World of Burlesque, Boylesque, Draglesque, Circus and much more. We provide a safe space for diverse queer art and culture in Helsinki. We are fighting against homophobia, transphobia and racism in art and society.</p><p>Video of our previous festival in Savoy-theatre:</p>" }, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/488192B24D1CDF791A360CF1CA533DEF/VI_International_Queerlesque_Festival_Betty_Fvck_s_10-year_anniversary", "en": "http://www.savoyteatteri.fi/en/events/event/488192B24D1CDF791A360CF1CA533DEF/VI_International_Queerlesque_Festival_Betty_Fvck_s_10-year_anniversary" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68168/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqiwsok64", "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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386194, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-10T11:15:15.646881Z", "last_modified_time": "2026-09-10T11:15:15.646896Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a4798b26-8e0b-47a0-bde8-cfae61fff94c.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "kirjoja, valoja, Musiikkipedagogit Lauri Iljin ja Sakari Heikka", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386194/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-09-10T11:23:15.632943Z", "last_modified_time": "2026-09-10T11:23:15.633066Z", "date_published": null, "start_time": "2026-09-25T06:00:00Z", "end_time": "2026-09-25T07: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": { "fi": "Sininen huone + Estradi", "sv": "Sininen huone + Estradi", "en": "Sininen huone + Estradi" }, "provider": null, "name": { "fi": "VauvanpĂ€ivĂ€ kirjastolla", "sv": "Babydag pĂ„ biblioteket", "en": "Baby Day at the Library" }, "description": { "fi": "VAUVANPĂIVĂ 25.9.2026 \n<br>\nElĂ€myssatuhetket <p><strong>9.00-9.15 ja 9.30-9.45 / Sininen huone</strong></p><p>Tule vauvan kanssa kokemaan merenalainen maailma vauvoille suunnatussa elĂ€myssatuhetkessĂ€. SatuhetkellĂ€ saat kuunnella tarinoita merestĂ€ ja tutustua merenalaiseen maailmaan useilla eri aisteilla. Lukijoina kirjaston henkilökunta. </p>\n<br>\nVuorovaikutteinen muskari vauvaperheille<p><strong>Klo 10.00-10.30 / Estradi</strong></p><p>Tervetuloa leikkimÀÀn musiikin tahdissa yhdessĂ€ lapsen kanssa. Muskarissa soitetaan, leikitÀÀn ja pidetÀÀn hauskaa tuttujen lastenlaulujen sĂ€estyksellĂ€. RyhmÀÀn voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. VetĂ€jinĂ€ kirjaston musiikkipedagogit Sakari Heikka ja Lauri Iljin. </p><p><br></p><p>Tapahtuman jĂ€rjestÀÀ kirjasto</p>", "sv": "<p>PĂ„ biblioteket firas babydagen fredagen den 25 september. PĂ„ programmet stĂ„r sagostunder pĂ„ finska samt musikstund, dĂ€r du inte behöver kunna nĂ„got sĂ€rskilt sprĂ„k för att delta tillsammans med ditt barn. </p><p>Evenemanget anordnas av biblioteket</p>", "en": "<p>The library is hosting Baby Day on Friday, September 25. The program includes Finnish-language storytime sessions and a baby music class, where you donât need any specific language skills to participate with your baby. </p><p><br></p><p>The event is organized by the library</p>" }, "provider_contact_info": null, "short_description": { "fi": "VauvanpĂ€ivĂ€ kirjastolla", "sv": "Babydag pĂ„ biblioteket", "en": "Baby Day at the Library" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqiwsok64/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69136", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-799/?format=api" }, "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": 2384817, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T13:14:38.961060Z", "last_modified_time": "2026-06-01T13:14:38.961074Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789714.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384817/?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-06-01T13:14:38.835892Z", "last_modified_time": "2026-09-10T11:15:28.060437Z", "date_published": null, "start_time": "2026-11-25T07:40:00Z", "end_time": "2026-11-25T09: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": "Taideleikit â leikin oma tila â 0â2-vuotiaille lapsille aikuisen kanssa", "sv": "Konstlekar â en egen plats för lek â För barn i Ă„ldern 0â2 Ă„r tillsammans med en vuxen", "en": "Art games â a space for playing â Children aged 0â2 with an adult" }, "description": { "fi": "<p>TaideleikeissĂ€ lĂ€hdetÀÀn matkalle â mielikuvitus voi viedĂ€ meidĂ€t minne vaan!</p><p><b>Leikkiin lĂ€hdöt klo 9.40, 10.20, 11.00.</b><br>Leikkiaikaa on n. 20 minuuttia per lĂ€htö. Ilmoittautumista ei tarvita; kuhunkin lĂ€htöön mahtuu 15 ensimmĂ€istĂ€ lasta ja heidĂ€n aikuisensa.</p><p>Ilmaisen matkalipun leikkiin saa infopisteeltĂ€ ja odotusaulana toimii Kahvila Napero â molemmat löydĂ€t Annantalon ensimmĂ€isestĂ€ kerroksesta. Kahvilassa voi myös evĂ€stÀÀ ennen ja jĂ€lkeen leikkien. Huomioithan, ettĂ€ ohjatussa tuokiossa tullaan liikkumaan oman lapsen kanssa.</p><p>Taideleikit on suunnattu 0â2-vuotiaille lapsille sekĂ€ heidĂ€n omalle vanhemmallensa tai muulle lĂ€hiaikuiselle.</p><p>Ohjaus: Noora Puranen <br>Aika: 9.40, 10.20 ja 11:00 <br>KohderyhmĂ€: 0â2-v.<br>Ohjauskieli: suomi<br>Kesto: leikkiaika ohjatuissa leikeissĂ€ n. 20 min<br>Vapaa pÀÀsy</p>", "sv": "<p>I konstlekarna ger vi oss ut pĂ„ en resa â fantasin kan ta oss vart som helst!</p><p><b>Lekarna startar kl. 9.40, 10.20 och 11.00.</b> <br>Lektiden Ă€r cirka 20 minuter per omgĂ„ng. Det krĂ€vs ingen anmĂ€lan: I varje startgrupp finns plats för de femton första barnen och deras vuxna. <br> <br>Du kan hĂ€mta en gratis biljett till leken vid informationsdisken, och vĂ€ntsalen Ă€r CafĂ© Napero â bĂ„da finns pĂ„ första vĂ„ningen i AnnegĂ„rden. PĂ„ kafĂ©et kan man ocksĂ„ Ă€ta nĂ„got före och efter lekarna. Observera att du under den handledda lekstunden kommer att röra dig tillsammans med ditt barn.</p><p>Konstlekarna riktar sig till barn i Ă„ldern 0â2 Ă„r och deras egen förĂ€lder eller nĂ„gon annan nĂ€rstĂ„ende vuxen.</p><p>Regi: Noora Puranen <br>Tid: 9.40, 10.20 och 11.00 <br>MĂ„lgrupp: 0â2 Ă„r <br>ArbetssprĂ„k: finska <br>LĂ€ngd: lektid vid de ledda lekarna ca 20 minuter</p>", "en": "<p>In art games, we set off on a journey â our imagination can take us anywhere!</p><p><b>Games starting at 9.40, 10.20 and 11.00.</b> <br>The play time is approximately 20 minutes per session. No registration required; each session has room for the first 15 children and their accompanying adults. <br> <br>You can pick up a free ticket for the sessions at the information desk, and CafĂ© Napero serves as the waiting area â both are on the ground floor of Annantalo. You can also have something to eat at the cafĂ© before and after the games. Please note that during the guided session, you will take part with your own child.</p><p>The art games are aimed at children aged 0â2 and their own parent or other close adult.</p><p>Instruction: Noora Puranen <br>Time: 9.40, 10.20 and 11.00 <br>Target group: ages 0â2 <br>Instruction language: Finnish <br>Duration: playtime in the guided sessions roughly 20 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "TaideleikeissĂ€ lĂ€hdetÀÀn matkalle â mielikuvitus voi viedĂ€ meidĂ€t minne vaan!", "sv": "I konstlekarna ger vi oss ut pĂ„ en resa â fantasin kan ta oss vart som helst!", "en": "In art games, we set off on a journey â our imagination can take us anywhere!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/727B9134F13E2D57270D7907707DB25A/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/727B9134F13E2D57270D7907707DB25A/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/727B9134F13E2D57270D7907707DB25A/Art_games_a_space_for_playing" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69136/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69901", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p2625/?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: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": 2386192, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-10T11:15:25.913845Z", "last_modified_time": "2026-09-10T11:15:25.913858Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_797228.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386192/?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-09-10T11:15:25.785472Z", "last_modified_time": "2026-09-10T11:15:26.091951Z", "date_published": null, "start_time": "2026-11-18T08: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": "MikĂ€ se on? â Esitys elĂ€mĂ€n ihmeellisyydestĂ€ â Keskiviikkoklubi", "sv": "MikĂ€ se on? â Esitys elĂ€mĂ€n ihmeellisyydestĂ€ â Keskiviikkoklubi", "en": "MikĂ€ se on? â Esitys elĂ€mĂ€n ihmeellisyydestĂ€ â Keskiviikkoklubi" }, "description": { "fi": "<p>MikĂ€ se on? â esitys pienille lapsille elĂ€mĂ€n ihmeellisyydestĂ€ kirjaston monitoimitila Tempossa.</p><p><i>âJos kaataa vettĂ€ kumisaappaasta lattialle, voiko siitĂ€ syntyĂ€ meri?<br>Jos löytÀÀ pallon lattialta, voiko siitĂ€ syntyĂ€ maita halkova höyryveturi,<br>vanhemman korva tai lentĂ€mÀÀn opetteleva linnun poikanen?<br>Jos antaa tarpeeksi valoa, vettĂ€ ja aikaa, voiko niistĂ€ syntyĂ€ tuhansien vĂ€rien kukkaloisto?â</i><br> <br>Kukka ja Nuppu löytĂ€vĂ€t erikoisen pyöreĂ€n asian: MikĂ€ se on? YstĂ€vykset pÀÀttĂ€vĂ€t lĂ€hteĂ€ selvittĂ€mÀÀn sitĂ€ ja syntyy seikkailu, jossa arkinenkin aihe muuttuu suureksi ihmeeksi ja portiksi leikin tĂ€htimaailmaan.<br> <br>MikĂ€ se on? on kevyesti vauvaperheitĂ€ osallistava esitys, jota seurataan omalta paikalta oman vanhemman kanssa. Esityksen aikana vauvan hoitoon liittyvĂ€t toimenpiteet ja kaikenlaiset tunnetilat ovat sallittuja.<br> <br>Tervetuloa!</p><p>TyöryhmĂ€:<br>Siiri Ervasti ja Paula Kovanen, Nuppuensemble<br> <br>Kesto: noin 30 minuuttia, jonka jĂ€lkeen esitystilan rekvisiittaa voi jÀÀdĂ€ ihastelemaan hetkeksi.<br> <br>MaksimikatsojamÀÀrĂ€:<br>15 lasta + 15 aikuista<br>Lasten ikĂ€suositus: 0â18 kk<br>Puhuttu kieli: suomi</p>" }, "provider_contact_info": null, "short_description": { "fi": "MikĂ€ se on? â esitys pienille lapsille elĂ€mĂ€n ihmeellisyydestĂ€ kirjaston monitoimitila Tempossa." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/131C83906C2840419B2E02D4AE91EEBC/Mika_se_on_Esitys_elaman_ihmeellisyydesta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/131C83906C2840419B2E02D4AE91EEBC/Mika_se_on_Esitys_elaman_ihmeellisyydesta", "en": "http://www.kanneltalo.fi/en/events/event/131C83906C2840419B2E02D4AE91EEBC/Mika_se_on_Esitys_elaman_ihmeellisyydesta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69901/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69134", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-799/?format=api" }, "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": 2384816, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T13:14:38.071521Z", "last_modified_time": "2026-06-01T13:14:38.071536Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789713.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384816/?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-06-01T13:14:37.946952Z", "last_modified_time": "2026-09-10T11:15:23.856220Z", "date_published": null, "start_time": "2026-11-11T07:40:00Z", "end_time": "2026-11-11T09: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": "Taideleikit â leikin oma tila â 0â2-vuotiaille lapsille aikuisen kanssa", "sv": "Konstlekar â en egen plats för lek â För barn i Ă„ldern 0â2 Ă„r tillsammans med en vuxen", "en": "Art games â a space for playing â Children aged 0â2 with an adult" }, "description": { "fi": "<p>TaideleikeissĂ€ lĂ€hdetÀÀn matkalle â mielikuvitus voi viedĂ€ meidĂ€t minne vaan!</p><p><b>Leikkiin lĂ€hdöt klo 9.40, 10.20, 11.00.</b><br>Leikkiaikaa on n. 20 minuuttia per lĂ€htö. Ilmoittautumista ei tarvita; kuhunkin lĂ€htöön mahtuu 15 ensimmĂ€istĂ€ lasta ja heidĂ€n aikuisensa.</p><p>Ilmaisen matkalipun leikkiin saa infopisteeltĂ€ ja odotusaulana toimii Kahvila Napero â molemmat löydĂ€t Annantalon ensimmĂ€isestĂ€ kerroksesta. Kahvilassa voi myös evĂ€stÀÀ ennen ja jĂ€lkeen leikkien. Huomioithan, ettĂ€ ohjatussa tuokiossa tullaan liikkumaan oman lapsen kanssa.</p><p>Taideleikit on suunnattu 0â2-vuotiaille lapsille sekĂ€ heidĂ€n omalle vanhemmallensa tai muulle lĂ€hiaikuiselle.</p><p>Ohjaus: Noora Puranen <br>Aika: 9.40, 10.20 ja 11:00 <br>KohderyhmĂ€: 0â2-v.<br>Ohjauskieli: suomi<br>Kesto: leikkiaika ohjatuissa leikeissĂ€ n. 20 min<br>Vapaa pÀÀsy</p>", "sv": "<p>I konstlekarna ger vi oss ut pĂ„ en resa â fantasin kan ta oss vart som helst!</p><p><b>Lekarna startar kl. 9.40, 10.20 och 11.00.</b> <br>Lektiden Ă€r cirka 20 minuter per omgĂ„ng. Det krĂ€vs ingen anmĂ€lan: I varje startgrupp finns plats för de femnton första barnen och deras vuxna. <br> <br>Du kan hĂ€mta en gratis biljett till leken vid informationsdisken, och vĂ€ntsalen Ă€r CafĂ© Napero â bĂ„da finns pĂ„ första vĂ„ningen i AnnegĂ„rden. PĂ„ kafĂ©et kan man ocksĂ„ Ă€ta nĂ„got före och efter lekarna. Observera att du under den handledda lekstunden kommer att röra dig tillsammans med ditt barn.</p><p>Konstlekarna riktar sig till barn i Ă„ldern 0â2 Ă„r och deras egen förĂ€lder eller nĂ„gon annan nĂ€rstĂ„ende vuxen.</p><p>Regi: Noora Puranen <br>Tid: 9.40, 10.20 och 11.00 <br>MĂ„lgrupp: 0â2 Ă„r <br>ArbetssprĂ„k: finska <br>LĂ€ngd: lektid vid de ledda lekarna ca 20 minuter</p>", "en": "<p>In art games, we set off on a journey â our imagination can take us anywhere!</p><p><b>Games starting at 9.40, 10.20 and 11.00.</b> <br>The play time is approximately 20 minutes per session. No registration required; each session has room for the first 15 children and their accompanying adults. <br> <br>You can pick up a free ticket for the sessions at the information desk, and CafĂ© Napero serves as the waiting area â both are on the ground floor of Annantalo. You can also have something to eat at the cafĂ© before and after the games. Please note that during the guided session, you will take part with your own child.</p><p>The art games are aimed at children aged 0â2 and their own parent or other close adult.</p><p>Instruction: Noora Puranen <br>Time: 9.40, 10.20 and 11.00 <br>Target group: ages 0â2 <br>Instruction language: Finnish <br>Duration: playtime in the guided sessions roughly 20 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "TaideleikeissĂ€ lĂ€hdetÀÀn matkalle â mielikuvitus voi viedĂ€ meidĂ€t minne vaan!", "sv": "I konstlekarna ger vi oss ut pĂ„ en resa â fantasin kan ta oss vart som helst!", "en": "In art games, we set off on a journey â our imagination can take us anywhere!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D531F6D3A2DB199CAA5D790CD0A44050/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/D531F6D3A2DB199CAA5D790CD0A44050/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/D531F6D3A2DB199CAA5D790CD0A44050/Art_games_a_space_for_playing" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69134/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69900", "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: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:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386191, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-10T11:15:21.453976Z", "last_modified_time": "2026-09-10T11:15:21.453997Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791164.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386191/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2026-09-10T11:15:21.305770Z", "last_modified_time": "2026-09-10T11:15:21.747470Z", "date_published": null, "start_time": "2026-11-04T09:00:00Z", "end_time": "2026-11-04T09: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": "Lounasajan laulut â Keskiviikkoklubi", "sv": "Lounasajan laulut â Keskiviikkoklubi", "en": "Lounasajan laulut â Keskiviikkoklubi" }, "description": { "fi": "<p>Tervetuloa laulamaan Musiikkikoulu Demon toteuttamaan Lounasajan laulut -yhteislaulutuokioon.</p><p>Ke 4.11. klo 11â11.45 Kanneltalon kahvilan stagella lauletaan teemalla \"IskelmĂ€n aikamatka\". <br> <br>Ennakkotaitoja ei tarvita. Musiikkihetki koostuu suomalaisista, tutuista sĂ€velmistĂ€. Musiikki nostaa mieleen muistoja ja kutsuu tunnelmoimaan. Tule kokemaan musiikin ilo ja yhteinen elĂ€mys!</p><p>Vapaa pÀÀsy.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa laulamaan Musiikkikoulu Demon toteuttamaan Lounasajan laulut -yhteislaulutuokioon." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A147857460E69272E9F52E8BEC46EA7F/Lounasajan_laulut", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A147857460E69272E9F52E8BEC46EA7F/Lounasajan_laulut", "en": "http://www.kanneltalo.fi/en/events/event/A147857460E69272E9F52E8BEC46EA7F/Lounasajan_laulut" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69900/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69658", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": 2385720, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-06T13:14:16.505593Z", "last_modified_time": "2026-08-06T13:14:16.505609Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796275.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385720/?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-06T13:14:16.287489Z", "last_modified_time": "2026-09-10T11:15:18.678975Z", "date_published": null, "start_time": "2026-10-28T07:40:00Z", "end_time": "2026-10-28T09: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": "Taideleikit â leikin oma tila â 0â2-vuotiaille lapsille aikuisen kanssa", "sv": "Konstlekar â en egen plats för lek â För barn i Ă„ldern 0â2 Ă„r tillsammans med en vuxen", "en": "Art games â a space for playing â Children aged 0â2 with an adult" }, "description": { "fi": "<p>TaideleikeissĂ€ lĂ€hdetÀÀn matkalle â mielikuvitus voi viedĂ€ meidĂ€t minne vaan!</p><p><b>Leikkiin lĂ€hdöt klo 9.40, 10.20, 11.00.</b><br>Leikkiaikaa on n. 20 minuuttia per lĂ€htö. Ilmoittautumista ei tarvita; kuhunkin lĂ€htöön mahtuu 15 ensimmĂ€istĂ€ lasta ja heidĂ€n aikuisensa.</p><p>Ilmaisen matkalipun leikkiin saa infopisteeltĂ€ ja odotusaulana toimii Kahvila Napero â molemmat löydĂ€t Annantalon ensimmĂ€isestĂ€ kerroksesta. Kahvilassa voi myös evĂ€stÀÀ ennen ja jĂ€lkeen leikkien. Huomioithan, ettĂ€ ohjatussa tuokiossa tullaan liikkumaan oman lapsen kanssa.</p><p>Taideleikit on suunnattu 0â2-vuotiaille lapsille sekĂ€ heidĂ€n omalle vanhemmallensa tai muulle lĂ€hiaikuiselle.</p><p>Ohjaus: Noora Puranen <br>Aika: 9.40, 10.20 ja 11:00 <br>KohderyhmĂ€: 0â2-v.<br>Ohjauskieli: suomi<br>Kesto: leikkiaika ohjatuissa leikeissĂ€ n. 20 min<br>Vapaa pÀÀsy</p>", "sv": "<p>I konstlekarna ger vi oss ut pĂ„ en resa â fantasin kan ta oss vart som helst!</p><p><b>Lekarna startar kl. 9.40, 10.20 och 11.00.</b><br>Lektiden Ă€r cirka 20 minuter per omgĂ„ng. Det krĂ€vs ingen anmĂ€lan: I varje startgrupp finns plats för de femton första barnen och deras vuxna.</p><p>Du kan hĂ€mta en gratis biljett till leken vid informationsdisken, och vĂ€ntsalen Ă€r CafĂ© Napero â bĂ„da finns pĂ„ första vĂ„ningen i AnnegĂ„rden. PĂ„ kafĂ©et kan man ocksĂ„ Ă€ta nĂ„got före och efter lekarna. Observera att du under den handledda lekstunden kommer att röra dig tillsammans med ditt barn.</p><p>Konstlekarna riktar sig till barn i Ă„ldern 0â2 Ă„r och deras egen förĂ€lder eller nĂ„gon annan nĂ€rstĂ„ende vuxen.</p><p>Regi: Noora Puranen <br>Tid: 9.40, 10.20 och 11.00 <br>MĂ„lgrupp: 0â2 Ă„r<br>ArbetssprĂ„k: finska<br>LĂ€ngd: lektid vid de ledda lekarna ca 20 minuter</p>", "en": "<p>In art games, we set off on a journey â our imagination can take us anywhere!</p><p><b>Games starting at 9.40, 10.20 and 11.00.</b><br>The play time is approximately 20 minutes per session. No registration required; each session has room for the first 15 children and their accompanying adults.</p><p>You can pick up a free ticket for the sessions at the information desk, and CafĂ© Napero serves as the waiting area â both are on the ground floor of Annantalo. You can also have something to eat at the cafĂ© before and after the games. Please note that during the guided session, you will take part with your own child.</p><p>The art games are aimed at children aged 0â2 and their own parent or other close adult.</p><p>Instruction: Noora Puranen <br>Time: 9.40, 10.20 and 11.00 <br>Target group: ages 0â2<br>Instruction language: Finnish<br>Duration: playtime in the guided sessions roughly 20 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "TaideleikeissĂ€ lĂ€hdetÀÀn matkalle â mielikuvitus voi viedĂ€ meidĂ€t minne vaan!", "sv": "I konstlekarna ger vi oss ut pĂ„ en resa â fantasin kan ta oss vart som helst!", "en": "In art games, we set off on a journey â our imagination can take us anywhere!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/48F14D841326EFF4CFE4BA1BB5977E30/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/48F14D841326EFF4CFE4BA1BB5977E30/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/48F14D841326EFF4CFE4BA1BB5977E30/Art_games_a_space_for_playing" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69658/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69133", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-799/?format=api" }, "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": 2384813, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T13:14:36.010927Z", "last_modified_time": "2026-06-01T13:14:36.010945Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789711.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384813/?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-06-01T13:14:35.888362Z", "last_modified_time": "2026-09-10T11:15:12.656350Z", "date_published": null, "start_time": "2026-10-14T06:40:00Z", "end_time": "2026-10-14T08: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": "Taideleikit â leikin oma tila â 0â2-vuotiaille lapsille aikuisen kanssa | Annantalon syysloma", "sv": "Konstlekar â en egen plats för lek â För barn i Ă„ldern 0â2 Ă„r tillsammans med en vuxen | AnnegĂ„rdens höstlov", "en": "Art games â a space for playing â Children aged 0â2 with an adult | Autumn Break at Annantalo" }, "description": { "fi": "<p>TaideleikeissĂ€ lĂ€hdetÀÀn matkalle â mielikuvitus voi viedĂ€ meidĂ€t minne vaan!</p><p><b>Leikkiin lĂ€hdöt klo 9.40, 10.20, 11.00.</b><br>Leikkiaikaa on n. 20 minuuttia per lĂ€htö. Ilmoittautumista ei tarvita; kuhunkin lĂ€htöön mahtuu 15 ensimmĂ€istĂ€ lasta ja heidĂ€n aikuisensa.</p><p>Ilmaisen matkalipun leikkiin saa infopisteeltĂ€ ja odotusaulana toimii Kahvila Napero â molemmat löydĂ€t Annantalon ensimmĂ€isestĂ€ kerroksesta. Kahvilassa voi myös evĂ€stÀÀ ennen ja jĂ€lkeen leikkien. Huomioithan, ettĂ€ ohjatussa tuokiossa tullaan liikkumaan oman lapsen kanssa.</p><p>Taideleikit on suunnattu 0â2-vuotiaille lapsille sekĂ€ heidĂ€n omalle vanhemmallensa tai muulle lĂ€hiaikuiselle.</p><p>Ohjaus: Noora Puranen <br>Aika: 9.40, 10.20 ja 11:00 <br>KohderyhmĂ€: 0â2-v.<br>Ohjauskieli: suomi<br>Kesto: leikkiaika ohjatuissa leikeissĂ€ n. 20 min<br>Vapaa pÀÀsy</p>", "sv": "<p>I konstlekarna ger vi oss ut pĂ„ en resa â fantasin kan ta oss vart som helst!</p><p><b>Lekarna startar kl. 9.40, 10.20 och 11.00.</b> <br>Lektiden Ă€r cirka 20 minuter per omgĂ„ng. Det krĂ€vs ingen anmĂ€lan: I varje startgrupp finns plats för de femton första barnen och deras vuxna. <br> <br>Du kan hĂ€mta en gratis biljett till leken vid informationsdisken, och vĂ€ntsalen Ă€r CafĂ© Napero â bĂ„da finns pĂ„ första vĂ„ningen i AnnegĂ„rden. PĂ„ kafĂ©et kan man ocksĂ„ Ă€ta nĂ„got före och efter lekarna. Observera att du under den handledda lekstunden kommer att röra dig tillsammans med ditt barn.</p><p>Konstlekarna riktar sig till barn i Ă„ldern 0â2 Ă„r och deras egen förĂ€lder eller nĂ„gon annan nĂ€rstĂ„ende vuxen.</p><p>Regi: Noora Puranen <br>Tid: 9.40, 10.20 och 11.00 <br>MĂ„lgrupp: 0â2 Ă„r <br>ArbetssprĂ„k: finska <br>LĂ€ngd: lektid vid de ledda lekarna ca 20 minuter</p>", "en": "<p>In art games, we set off on a journey â our imagination can take us anywhere!</p><p><b>Games starting at 9.40, 10.20 and 11.00.</b> <br>The play time is approximately 20 minutes per session. No registration required; each session has room for the first 15 children and their accompanying adults. <br> <br>You can pick up a free ticket for the sessions at the information desk, and CafĂ© Napero serves as the waiting area â both are on the ground floor of Annantalo. You can also have something to eat at the cafĂ© before and after the games. Please note that during the guided session, you will take part with your own child.</p><p>The art games are aimed at children aged 0â2 and their own parent or other close adult.</p><p>Instruction: Noora Puranen <br>Time: 9.40, 10.20 and 11.00 <br>Target group: ages 0â2 <br>Instruction language: Finnish <br>Duration: playtime in the guided sessions roughly 20 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "TaideleikeissĂ€ lĂ€hdetÀÀn matkalle â mielikuvitus voi viedĂ€ meidĂ€t minne vaan!", "sv": "I konstlekarna ger vi oss ut pĂ„ en resa â fantasin kan ta oss vart som helst!", "en": "In art games, we set off on a journey â our imagination can take us anywhere!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CB08EBC36708A94173D6C62707636F44/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/CB08EBC36708A94173D6C62707636F44/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/CB08EBC36708A94173D6C62707636F44/Art_games_a_space_for_playing" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69133/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69130", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-799/?format=api" }, "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": 2384811, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T13:14:34.798009Z", "last_modified_time": "2026-06-01T13:14:34.798024Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789710.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384811/?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-06-01T13:14:34.669617Z", "last_modified_time": "2026-09-10T11:15:02.341975Z", "date_published": null, "start_time": "2026-09-23T06:40:00Z", "end_time": "2026-09-23T08: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": "Taideleikit â leikin oma tila â 0â2-vuotiaille lapsille aikuisen kanssa", "sv": "Konstlekar â en egen plats för lek â För barn i Ă„ldern 0â2 Ă„r tillsammans med en vuxen", "en": "Art games â a space for playing â Children aged 0â2 with an adult" }, "description": { "fi": "<p>TaideleikeissĂ€ lĂ€hdetÀÀn matkalle â mielikuvitus voi viedĂ€ meidĂ€t minne vaan!</p><p><b>Leikkiin lĂ€hdöt klo 9.40, 10.20, 11.00.</b><br>Leikkiaikaa on n. 20 minuuttia per lĂ€htö. Ilmoittautumista ei tarvita; kuhunkin lĂ€htöön mahtuu 15 ensimmĂ€istĂ€ lasta ja heidĂ€n aikuisensa.</p><p>Ilmaisen matkalipun leikkiin saa infopisteeltĂ€ ja odotusaulana toimii Kahvila Napero â molemmat löydĂ€t Annantalon ensimmĂ€isestĂ€ kerroksesta. Kahvilassa voi myös evĂ€stÀÀ ennen ja jĂ€lkeen leikkien. Huomioithan, ettĂ€ ohjatussa tuokiossa tullaan liikkumaan oman lapsen kanssa.</p><p>Taideleikit on suunnattu 0â2-vuotiaille lapsille sekĂ€ heidĂ€n omalle vanhemmallensa tai muulle lĂ€hiaikuiselle.</p><p>Ohjaus: Noora Puranen <br>Aika: 9.40, 10.20 ja 11:00 <br>KohderyhmĂ€: 0â2-v.<br>Ohjauskieli: suomi<br>Kesto: leikkiaika ohjatuissa leikeissĂ€ n. 20 min<br>Vapaa pÀÀsy</p>", "sv": "<p>I konstlekarna ger vi oss ut pĂ„ en resa â fantasin kan ta oss vart som helst!</p><p><b>Lekarna startar kl. 9.40, 10.20 och 11.00.</b> <br>Lektiden Ă€r cirka 20 minuter per omgĂ„ng. Det krĂ€vs ingen anmĂ€lan: I varje startgrupp finns plats för de femton första barnen och deras vuxna. <br> <br>Du kan hĂ€mta en gratis biljett till leken vid informationsdisken, och vĂ€ntsalen Ă€r CafĂ© Napero â bĂ„da finns pĂ„ första vĂ„ningen i AnnegĂ„rden. PĂ„ kafĂ©et kan man ocksĂ„ Ă€ta nĂ„got före och efter lekarna. Observera att du under den handledda lekstunden kommer att röra dig tillsammans med ditt barn.</p><p>Konstlekarna riktar sig till barn i Ă„ldern 0â2 Ă„r och deras egen förĂ€lder eller nĂ„gon annan nĂ€rstĂ„ende vuxen.</p><p>Regi: Noora Puranen <br>Tid: 9.40, 10.20 och 11.00 <br>MĂ„lgrupp: 0â2 Ă„r <br>ArbetssprĂ„k: finska <br>LĂ€ngd: lektid vid de ledda lekarna ca 20 minuter</p>", "en": "<p>In art games, we set off on a journey â our imagination can take us anywhere!</p><p><b>Games starting at 9.40, 10.20 and 11.00.</b> <br>The play time is approximately 20 minutes per session. No registration required; each session has room for the first 15 children and their accompanying adults. <br> <br>You can pick up a free ticket for the sessions at the information desk, and CafĂ© Napero serves as the waiting area â both are on the ground floor of Annantalo. You can also have something to eat at the cafĂ© before and after the games. Please note that during the guided session, you will take part with your own child.</p><p>The art games are aimed at children aged 0â2 and their own parent or other close adult.</p><p>Instruction: Noora Puranen <br>Time: 9.40, 10.20 and 11.00 <br>Target group: ages 0â2 <br>Instruction language: Finnish <br>Duration: playtime in the guided sessions roughly 20 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "TaideleikeissĂ€ lĂ€hdetÀÀn matkalle â mielikuvitus voi viedĂ€ meidĂ€t minne vaan!", "sv": "I konstlekarna ger vi oss ut pĂ„ en resa â fantasin kan ta oss vart som helst!", "en": "In art games, we set off on a journey â our imagination can take us anywhere!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/AE2C55242A3A59F63DDCE37632953923/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/AE2C55242A3A59F63DDCE37632953923/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/AE2C55242A3A59F63DDCE37632953923/Art_games_a_space_for_playing" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69130/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68209", "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:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "34,90 âŹ", "sv": "34,90 âŹ", "en": "34,90 âŹ" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4114013", "sv": "https://www.lippu.fi/eventseries/name-4114013", "en": "https://www.lippu.fi/eventseries/name-4114013" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1653446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-17T13:15:16.793689Z", "last_modified_time": "2026-03-17T13:15:16.793706Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786233.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1653446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-17T13:15:16.560644Z", "last_modified_time": "2026-09-10T11:14:59.793912Z", "date_published": null, "start_time": "2026-09-18T16: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": "Nem Agency Oy", "sv": "Nem Agency Oy", "en": "Nem Agency Oy" }, "name": { "fi": "Callisto: Noir 20 vuotta K-18", "sv": "Callisto: Noir 20 Ă„r K-18", "en": "Callisto: Noir 20th anniversary R18" }, "description": { "fi": "<p>Callisto juhlii Helsingin Savoy-teatterissa 20-vuotiasta Noir-albumia</p><p>Harvinainen erikoiskeikka soi 18. syyskuuta ainutlaatuisessa ympĂ€ristössĂ€.</p><p>Kokkolassa vuonna 2001 perustettu, mutta jo varhain turkulaistunut Callisto on palanut viime vuodet maltillisella liekillĂ€. Yhtyeen monipuolinen ja vivahteikas metalli saavutti kuitenkin 2000-luvun alkuvuosina kansainvĂ€listĂ€kin suosiota. Vuonna 2006 ilmestynyt toinen pitkĂ€soitto Noir on Calliston uran merkittĂ€vĂ€ kulmakivi.</p><p>â Noir on albumeistamme se, josta olemme saaneet vuosien aikana kenties eniten palautetta, Callisto tunnustaa.<br>â Ihmiset tekevĂ€t ja lĂ€hettĂ€vĂ€t Noirin kappaleista covereita ja albumi nousee yleensĂ€ ensimmĂ€isenĂ€ keskusteluun, kun törmÀÀ ihmisiin, joilla on joku kokemus, muisto tai mielipide Calliston aktiivivuosista. Noirin tuotanto- ja ÀÀnitysprosessi oli myös aikoinaan omalla tavallaan raskas, joten jo siinĂ€kin on juhlimisen aihetta, ettĂ€ siitĂ€ muotoutui lopulta bĂ€ndin alkuvuosia vahvasti mÀÀrittĂ€mĂ€ albumi, yhtye myöntÀÀ.</p><p>Noirissa on doom metalin uhkaavuutta ja progressiivista otetta: albumi junnaa eloisasti, katsoo eteenpĂ€in synkĂ€sti, liikkuu kuiskauksesta huutoon ja pÀÀtyy massiiviseen, vahvaan runttaukseen. Kaikki nĂ€mĂ€ elementit ovat lĂ€snĂ€, kun Callisto nousee Helsingin Savoy-teatterin lavalle perjantaina 18. syyskuuta.</p><p>â Juhlakonsertti on ja tulee kenties myös olemaan ainut mahdollisuus kuulla albumi alusta loppuun asti soitettuna kokonaisuutena. Luvassa on myös erityismausteita, joita itse levyltĂ€kin löytyy: puhallinsoittimia, kaikki Noirin aikaan bĂ€ndissĂ€ vaikuttaneet jĂ€senet ja mahdollisesti pienillĂ€ mausteilla biiseistĂ€ myös uusia sovituksia, levyĂ€ ja sen tuotantoa kunnioittaen, Callisto lupaa.</p><p>Savoy-teatterin elokuvateatterimainen konserttisali luo erityiset puitteet Calliston kasvavalle, elĂ€vĂ€lle ja vellovalle post-metalille. Klassikkolevyn tunnelmaa mukaileva visuaalisuus tulee olemaan myös nĂ€kyvĂ€ osa konsertin tuotantoa.</p><p>â Savoy-teatterissa metallibĂ€ndien keikat ovat todella harvinaisia, kun taas jazz-orkestereita siellĂ€ nĂ€hdÀÀn useinkin. Olkoon Noirin jazz-vaikutteet erÀÀnlainen puuttuva linkki ja yhdistĂ€vĂ€ tekijĂ€ myös tĂ€ssĂ€ mielessĂ€.<br>â Konsertin tuotanto, henki ja tunnelma tulevat istumaan Savoy-teatterin puitteisiin hienosti, eikĂ€ Callisto ole soittanut koskaan aiemmin istumapaikoilla varustetussa salissa, yhtye iloitsee.</p><p>Ovet klo 18.30. Showtime klo 19.00</p><p>IkĂ€raja: K-18</p><p>Permanto anniskelualue. Parveke ei anniskelua.</p>", "sv": "<p>Callisto firar 20-Ă„rsjubileet av albumet Noir pĂ„ Savoy-teatern i Helsingfors</p><p>Den 18 september Ă€ger en sĂ€llsynt specialkonsert rum i en unik miljö.</p><p>Callisto, som grundades i Karleby 2001, men som tidigt flyttade till Ă bo, har under de senaste Ă„ren brunnit med en mĂ„ttlig lĂ„ga. Bandets mĂ„ngsidiga och nyanserade metalmusik blev dock Ă€ven internationellt uppmĂ€rksammad i början av 2000-talet. Det andra fullĂ€ngdsalbumet Noir, som slĂ€pptes 2006, Ă€r en viktig hörnsten i Callistos karriĂ€r.</p><p>â Noir Ă€r kanske det av vĂ„ra album som vi fĂ„tt mest respons pĂ„ genom Ă„ren, erkĂ€nner Callisto.<br>â Folk gör och skickar covers pĂ„ lĂ„tar frĂ„n Noir, och albumet Ă€r oftast det första som kommer upp i samtal nĂ€r man stöter pĂ„ folk som har en upplevelse, ett minne eller en Ă„sikt som anknyter till Callistos aktiva Ă„r. Noirs produktions- och inspelningsprocess var en gĂ„ng i tiden ocksĂ„ tung pĂ„ sitt sĂ€tt, sĂ„ bara det Ă€r nĂ„got att fira, att det till slut blev det album som starkt definierade bandets tidiga Ă„r, medger bandet.</p><p>Noir kĂ€nnetecknas av doommetallens hotfullhet och ett progressivt grepp: Albumet framskrider lĂ„ngsamt men levande, blickar mörkt framĂ„t, gĂ„r frĂ„n viskning till rop och avslutas med en massiv, kraftfull kĂ€nsla av undergĂ„ng. Alla dessa element finns med nĂ€r Callisto kliver upp pĂ„ scenen pĂ„ Savoy-teatern i Helsingfors fredagen den 18 september.</p><p>â Jubileumskonserten Ă€r, och kommer kanske ocksĂ„ att vara, det enda tillfĂ€llet att höra albumet spelas frĂ„n början till slut i sin helhet. Det kommer ocksĂ„ att bjudas pĂ„ en del specialkryddor, som ocksĂ„ finns pĂ„ sjĂ€lva albumet: blĂ„sinstrument, alla medlemmar som var med i bandet nĂ€r Noir skapades, och dessutom möjligen nya arrangemang av lĂ„tarna med nĂ„gon liten extra krydda, men med respekt för albumet och produktionen av det, lovar Callisto.</p><p>Savoy-teaterns biografliknande konsertsal skapar en speciell inramning för Callistos vĂ€xande, livfulla och böljande post-metal. Det visuella, som har samma stĂ€mning som det klassiska albumet, kommer Ă€ven att vara en framtrĂ€dande del av konsertproduktionen.</p><p>â Konserter med metalband Ă€r mycket sĂ€llsynta pĂ„ Savoy-teatern, medan jazzband ofta ses dĂ€r. LĂ„t Noirs jazzinfluenser vara en slags felande lĂ€nk och förenande faktor Ă€ven i det avseendet.<br>â Konsertens produktion, anda och atmosfĂ€r kommer att passa Savoy-teatern perfekt, och Callisto har aldrig spelat i en salong med sittplatser tidigare, sĂ€ger bandet entusiastiskt.</p><p>Dörrarna öppnas kl 18.30. Showtime kl 19.00</p><p>Ă ldersgrĂ€ns: K-18.</p><p>Parketten Ă€r ett omrĂ„de med serveringstillstĂ„nd. Balkong, ingen servering.</p>", "en": "<p>Callisto celebrates 20 years of its album Noir at the Savoy Theatre in Helsinki</p><p>On 18 September, a rare special concert will take place in a unique setting.</p><p>The Kokkola-born band Callisto, which relocated to Turku early on, has been keeping a low profile in recent years. In the early 2000s, the bandâs versatile and nuanced metal music even garnered international acclaim. The bandâs second full-length album, Noir, released in 2006, is a major cornerstone in Callistoâs career.</p><p>âNoir is the album on which we have perhaps received the most feedback over the years,â Callisto admits.<br>âPeople make and send us covers of Noir songs, and the album is usually the first thing that comes up in conversation when we come across people who have an experience, memory or opinion about Callistoâs active years. Noirâs production and recording process was also in some ways difficult at the time, so it is a reason enough to celebrate that it ultimately became the album that strongly defined the bandâs early years,â the band says.</p><p>Noir has the menace and progressive edge of doom metal: the album thumps along vigorously, looks ahead darkly, moves from a whisper to a scream and ends with massive, powerful energy. All these elements will be present when Callisto takes to the stage at the Savoy Theatre in Helsinki on Friday 18 September.</p><p>âThis anniversary concert is, and perhaps will be, the only opportunity to hear the album played live from start to finish in its entirety. You can also look forward to some of the special elements that can be found on the album itself: wind instruments, all the members who were active in the band back when Noir was created, and possibly also new arrangements of the songs with some special touches, while staying true to the album and its production,â Callisto promises.</p><p>The Savoy Theatreâs cinema-like concert hall provides a special setting for Callistoâs growing, vibrant and surging post-metal music. The visuals, which reflect the atmosphere of the classic album, will also be a prominent part of the concert production.</p><p>âMetal bands rarely hold concerts at the Savoy Theatre, while the venue often hosts jazz orchestras. Let Noirâs jazz influences serve as a kind of missing link and unifying factor in this sense as well.â<br>âThe production, spirit and atmosphere of the concert will fit the Savoy Theatre setting perfectly, and Callisto has never before played in a seated hall,â the band enthuses.</p><p>The doors will open at 18.30. Showtime at 19.00.</p><p>Age rating: 18 and over.</p><p>The floor: alcohol serving area. The gallery: no alcohol serving.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Callisto juhlii Helsingin Savoy-teatterissa 20-vuotiasta Noir-albumia", "sv": "Callisto firar 20-Ă„rsjubileet av albumet Noir pĂ„ Savoy-teatern i Helsingfors", "en": "Callisto celebrates 20 years of its album Noir at the Savoy Theatre in Helsinki" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/83BA1221AD3259FC6261071BA3ECE376/Callisto_Noir_20_vuotta_K-18", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/83BA1221AD3259FC6261071BA3ECE376/Callisto_Noir_20_ar_K-18", "en": "http://www.savoyteatteri.fi/en/events/event/83BA1221AD3259FC6261071BA3ECE376/Callisto_Noir_20th_anniversary_R18" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68209/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68608", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385205, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T06:14:03.717676Z", "last_modified_time": "2026-06-17T06:14:03.717698Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791156.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385205/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T06:14:03.545126Z", "last_modified_time": "2026-09-10T10:14:38.067940Z", "date_published": null, "start_time": "2026-09-16T13:00:00Z", "end_time": "2026-09-16T16: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": "WelcomeDay â Naapurustotapahtuma Kanneltalolla", "sv": "WelcomeDay â Grannskapsevenemang pĂ„ GamlasgĂ„rden", "en": "WelcomeDay â Neighbourhood event at Kanneltalo" }, "description": { "fi": "<p>Welcome Day toivottaa Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin! Ja kutsuu juhlaan mukaan myös kaikki kannelmĂ€kelĂ€iset.</p><p>Kanneltalon Welcome Day -tapahtumassa kaupunkilaiset pÀÀsevĂ€t tutustumaan Kulttuurikeskus Kanneltaloon sekĂ€ oman asuinalueensa palveluihin, harrastuksiin ja vapaa-ajan tarjontaan.</p><p>Welcome Dayssa nautitaan musiikista ja pÀÀstÀÀn osallistumaan mukaviin työpajoihin. Kaupungin palvelut ja harrastustoimintaa jĂ€rjestĂ€vĂ€t yhdistykset esittelevĂ€t toimintaansa ja vastaavat asukkaiden kysymyksiin.</p><p>Ohjelmaa jĂ€rjestetÀÀn Kanneltalon eri tiloissa â kahvilasta kirjastoon â ja pĂ€ivĂ€ huipentuu Grande Mahoganyn konserttiin Kannelsalissa.</p><p>Welcome Dayssa puhumme englantia. Tapahtuma on maksuton, eikĂ€ siihen tarvitse ilmoittautua.</p><p><b>Aikataulu:</p><p>16.00 | Tilaisuus alkaa</b><br>250 ensimmĂ€iselle kĂ€vijĂ€lle on jaossa tarjoilulipukkeita klo 16â18: lipukkeella saa Kanneltalon kahvilasta karjalanpiirakan ja mehun, kahvin tai teen.</p><p><b>16â19 | Tapahtumatori | Aula</b><br>Alueen eri toimijat esittelevĂ€t toimintaansa aulassa.</p><p><b>16â19 | Klovni TĂ€pĂ€tĂ€ | Aula</b><br>Klovni TĂ€pĂ€tĂ€ viihdyttÀÀ kĂ€vijöitĂ€ aulassa lĂ€pi illan!</p><p><b>16â19 | Mun Kantsu -työpaja | Kirjaston Rotunda</b><br>Mun Kantsu -työpaja avoinna koko illan. Opettajina valokuvaaja Anna Autio ja toimittaja Kaisa Viitanen.</p><p><b>16â19 | Pohjois-Helsingin kuvataidekoulun pinssipaja | Kirjaston lukusali</b><br>Tule tekemÀÀn oma pinssi Pohjois-Helsingin kuvataidekoulun opastamana.</p><p><b>16.15â17.30 | Lajiesittelyt | Aula</b><br>âą 16.15â16.30: Taekwondo<br>âą 17.00â17.15: Capoeira<br>âą 17.15â17.30: KannelmĂ€en voimistelijat</p><p><b>16.30â17 | TyövĂ€enopiston kurssiesittely: Laulamme suomeksi | Kahvilan lava</b><br>Tule kurkistamaan TyövĂ€enopiston aikuisille suunnatun Laulamme suomeksi -kurssin sisĂ€ltöön kaikille avoimen esityksen merkeissĂ€. Opettajana Satu Luomanjoki.</p><p><b>17â18 | Tuu laulamaan suomeksi -työpajat | Kirjaston Tempo</b><br>Tule koko perheen kanssa laulamaan Mari KĂ€tkĂ€n johdolla tuttuja ja helppoja suomenkielisiĂ€ lauluja ja katsomaan, kuinka laulujen sanat herÀÀvĂ€t eloon Sari Airolan livepiirrosten ja kuvitusten kautta. EnsimmĂ€inen työpaja pidetÀÀn klo 17â17.30, toinen työpaja klo 17.30â18.</p><p><b>17â18 | Taiteilijavieraana Tiina Hallakorpi | Galleria</b><br>Kanneltalon gallerian Oma koti kullan kallis -nĂ€yttelyn taiteilija Tiina Hallakorpi kertoo nĂ€yttelystĂ€.</p><p><b>16â19 | Nutan avoimet ovet | Nuorisotalo</b><br>âą Korupaja (1 koru per henkilö)<br>âą KannelmĂ€kiaiheinen Kahoot!<br>âą Bingo</p><p><b>17.30â19.30 | Sormiskeitti- työpaja / Placemaking- projekti | Sitratori</b><br>Tule mukaan testaamaan sormiskeittejĂ€ ja kehittĂ€mÀÀn unelmiesi julkista tilaa</p><p><b>17â21 | Streetzone football / HNMKY | Sitratori</b><br>Sitratorilla 12â18-vuotiaille nuorille suunnattu Streetzone football 3 vs. 3 -turnaus ja DJ:t. Turnaus toteutuu sÀÀvarauksella.</p><p><b>18â19 | Grande Mahogany | Kannelsali</b><br>Welcome Dayn pÀÀesiintyjĂ€ Grande Mahogany esiintyy Kannelsalissa.</p>", "sv": "<p>Welcome Day hĂ€lsar Finlands nyinflyttade invĂ„nare vĂ€lkomna till Helsingfors! Och bjuder ocksĂ„ in alla invĂ„nare i Gamlas till festen.</p><p>Under GamlasgĂ„rdens evenemang Welcome Day fĂ„r stadsborna möjlighet att bekanta sig med Kulturcentret GamlasgĂ„rden samt tjĂ€nster, hobbyer och fritidsaktiviteter i det egna bostadsomrĂ„det.</p><p>Under Welcome Day kan besökarna njuta av musik och delta i trevliga verkstĂ€der. Stadens tjĂ€nster samt föreningar som ordnar hobbyverksamhet presenterar sin verksamhet och svarar pĂ„ invĂ„narnas frĂ„gor.</p><p>Programmet Ă€ger rum i olika lokaler pĂ„ GamlasgĂ„rden â frĂ„n kafĂ©et till biblioteket â och dagen kulminerar i en konsert med Grande Mahogany i GamlasgĂ„rdens sal. <br> <br>Under Welcome Day talar vi engelska. Evenemanget Ă€r kostnadsfritt och krĂ€ver ingen anmĂ€lan.</p><p><b>Tidsplan:</b></p><p>16.00 | Evenemanget börjar</b> <br>De 250 första besökarna fĂ„r serveringskuponger mellan kl. 16 och 18: Med kupongen fĂ„r man en karelsk pirog samt saft, kaffe eller te i GamlasgĂ„rdens kafĂ©.</p><p><b>16â19 | Evenemangstorg | EntrĂ©hallen</b></p><p>Olika aktörer i omrĂ„det presenterar sin verksamhet i entrĂ©hallen.</p><p><b>16â19 | Clownen TĂ€pĂ€tĂ€ | EntrĂ©hallen</b></p><p>Clownen TĂ€pĂ€tĂ€ underhĂ„ller besökarna i entrĂ©hallen hela kvĂ€llen!</p><p><b>16â19 | Verkstaden Mun Kantsu | Bibliotekets rotunda</b></p><p>Verkstaden Mun Kantsu har öppet hela kvĂ€llen. LĂ€rare: fotografen Anna Autio och journalisten Kaisa Viitanen.</p><p><b>16â19 | Norra Helsingfors bildkonstskolas pinsverkstad | Bibliotekets lĂ€sesal</b></p><p>Kom och gör ditt eget pins under ledning av Norra Helsingfors bildkonstskola.</p><p><b>16.15â17.30 | Grenpresentation | EntrĂ©hallen</b></p><p>âą 16.15â16.30: Taekwondo</p><p>âą 17.00â17.15: Capoeira</p><p>âą 17.15â17.30: KannelmĂ€en voimistelijat</p><p><b>16.30â17 | Laulamme suomeksi | KafĂ©ets scen</b></p><p>Kom och ta del av innehĂ„llet i kursen Laulamme suomeksi (Vi sjunger pĂ„ finska) vid TyövĂ€enopisto i samband med en förestĂ€llning som Ă€r öppen för alla. LĂ€rare: Satu Luomanjoki.</p><p><b>17â18 | VerkstĂ€derna Tuu laulamaan suomeksi | Bibliotekets Tempo</b></p><p>Kom med hela familjen och sjung vĂ€lkĂ€nda och lĂ€tta finsksprĂ„kiga sĂ„nger under ledning av Mari KĂ€tkĂ€, och se hur sĂ„ngtexterna vĂ€cks till liv genom Sari Airolas liveteckningar och illustrationer. Den första verkstaden hĂ„lls kl. 17â17.30, den andra kl. 17.30â18.</p><p><b>17â18 | KonstnĂ€rsbesök Tiina Hallakorpi | Galleriet</b></p><p>Tiina Hallakorpi, konstnĂ€ren bakom utstĂ€llningen Egen hĂ€rd Ă€r guld vĂ€rd pĂ„ GamlasgĂ„rdens galleri, berĂ€ttar om utstĂ€llningen.</p><p><b>17â21 | Streetzone fotball/HNMKY | Cittertorget</b></p><p>PĂ„ Cittertorget: Turnering i streetzone fotball tre mot tre för ungdomar i Ă„ldern 12â18 Ă„r och dj:ar. Turneringen genomförs endast om vĂ€dret tillĂ„ter.</p><p><b>18â19 | Grande Mahogany | GamlasgĂ„rdens sal</b></p><p>Grande Mahogany, huvudartisten pĂ„ Welcome Day, upptrĂ€der i GamlasgĂ„rdens sal.</p>", "en": "<p>Welcome Day offers new residents of Finland a warm welcome to Helsinki! All KannelmĂ€ki residents are invited to join the celebrations.</p><p>At the event, we give locals an opportunity to explore Cultural Centre Kanneltalo, as well as other services, hobbies and leisure activities available in their own residential area.</p><p>During Welcome Day, you can enjoy music and take part in fun workshops. City services and associations organising leisure time activities present their operations and are available to answer any and all of your questions.</p><p>The programme takes place in various facilities at Kanneltalo â from the cafĂ© to the library â and the day culminates in a concert by Grande Mahogany in the Theatre and Concert Hall. <br> <br>At Welcome Day, we speak English. The event is free of charge and no registration is required.</p><p><b>Schedule:</b></p><p>16.00 | The event begins</b> <br>The first 250 visitors will receive refreshment vouchers between 16.00 and 18.00: the vouchers can be exchanged at the Kanneltalo cafĂ© for a Karelian pie and juice, coffee or tea.</p><p><b>16.00â19.00 | Event Square | Lobby</b></p><p>Various local operators present their activities in the lobby.</p><p><b>16.00â19.00 | Clown TĂ€pĂ€tĂ€ | Lobby</b></p><p>TĂ€pĂ€tĂ€ the Clown entertains visitors in the lobby all evening long!</p><p><b>16.00â19.00 | My Kantsu workshop | Library/lobby </b></p><p>The My Kantsu workshop is open throughout the event. Instructed by photographer Anna Autio and journalist Kaisa Viitanen.</p><p><b>16.00â19.00 | Button pin workshop by the Art School of Northern Helsinki | Library reading room</b></p><p>Come and make your own button pin under the guidance of the Art School of Northern Helsinki.</p><p><b>16.15â17.30 | Sport demonstrations | Lobby</b></p><p>âą 16.15â16.30: Taekwondo</p><p>âą 17.00â17.15: Capoeira</p><p>âą 17.15â17.30: KannelmĂ€en Voimistelijat gymnastics club</p><p><b>16.30â17.00 | Adult Education Centre Course Presentation: Laulamme suomeksi! â We sing in Finnish! | CafĂ© stage</b></p><p>Come and have a look at what the âLaulamme suomeksi!â course for adults at the Adult Education Centre is all about at a performance open to everyone. Taught by Satu Luomanjoki.</p><p><b>17.00â18.00 | Come Sing in Finnish workshops | Room 'Tempo' of the library</b></p><p>Bring your whole family along to sing familiar and easy Finnish songs led by Mari KĂ€tkĂ€, and see how the lyrics come to life through Sari Airolaâs live drawings and illustrations. The first workshop will be held at 17.00â17.30 and the second at 17.30â18.00.</p><p><b>17.00â18.00 | Guest artist Tiina Hallakorpi | Gallery</b></p><p>Tiina Hallakorpi, the artist behind the Oma koti kullan kallis (âNo Place like Homeâ) exhibition in the Kanneltalo gallery, talks about the art.</p><p><b>17.30â19.30 | Sormiskeitti-työpaja / Placemaking- project | Sitratori square</b></p><p>Come and try out fingerboards and help design the public space of your dreams.</p><p><b>17.00â21.00 | Streetzone football / Helsinki YMCA| Sitratori square</b></p><p>Streetzone football 3 vs 3 tournament aimed at young people aged 12â18 with DJs on the Sitratori square. The tournament will be held weather permitting.</p><p><b>18.00â19.00 | Grande Mahogany | Theatre and Concert Hall</b></p><p>Grande Mahogany, the headliner of the Welcome Day event, performs in the Kanneltalo Theatre and Concert Hall.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Welcome Day toivottaa Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin! Ja kutsuu juhlaan mukaan myös kaikki kannelmĂ€kelĂ€iset.", "sv": "Welcome Day hĂ€lsar Finlands nyinflyttade invĂ„nare vĂ€lkomna till Helsingfors! Och bjuder ocksĂ„ in alla invĂ„nare i Gamlas till festen.", "en": "Welcome Day offers new residents of Finland a warm welcome to Helsinki! All KannelmĂ€ki residents are invited to join the celebrations." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1BE24D6C08D08454CD9DADD33D118FD3/WelcomeDay", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1BE24D6C08D08454CD9DADD33D118FD3/WelcomeDay", "en": "http://www.kanneltalo.fi/en/events/event/1BE24D6C08D08454CD9DADD33D118FD3/WelcomeDay" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68608/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69360", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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: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": 2385094, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-12T08:14:15.752778Z", "last_modified_time": "2026-06-12T08:14:15.752795Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794012.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385094/?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-12T08:14:15.645332Z", "last_modified_time": "2026-09-10T09:14:49.469740Z", "date_published": null, "start_time": "2026-10-16T15:00:00Z", "end_time": "2026-10-16T19: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": "Nuorten ruotsinlaiva goes Malmitalo", "sv": "SverigebĂ„t för unga goes Malms kulturhus", "en": "Youth Boat to Sweden goes Malmitalo" }, "description": { "fi": "<p>Tule mukaan, kun Malmitalo muuttuu ruotsinlaivaksi! Syyslomaviikon elĂ€mystapahtuma 13â17-vuotiaille nuorille.</p><p>Luvassa risteilyohjelmaa, disko ja nuorten toivoma artisti!</p><p>Check-in ennen laivaan astumista: osallistuminen edellyttÀÀ digijĂ€ssĂ€rin. <u><a href=\"https://jassari.hel.fi\">Lue lisÀÀ ja rekisteröidy JĂ€ssĂ€rin kĂ€yttĂ€jĂ€ksi: jassari.hel.fi.</a></u></p><p>Tapahtuman tuottaa Malmin nuorisotyöyksikkö ja Malmitalo.</p>", "sv": "<p>Kom och var med nĂ€r Malms kulturhus förvandlas till en SverigebĂ„t! Ett upplevelseevenemang under höstlovet för ungdomar i Ă„ldern 13â17 Ă„r.</p><p>Det utlovas kryssningsprogram, disco och en artist som ungdomarna önskat!</p><p>Incheckning innan du gĂ„r ombord pĂ„ bĂ„ten: för att delta krĂ€vs ett digitalt JĂ€ssĂ€ri-kort. <u><a href=\"https://nuorten.hel.fi/sv/jassari-3/\">LĂ€s mer och registrera dig som JĂ€ssĂ€ri-anvĂ€ndare: jassari.hel.fi.</a></u></p><p>Evenemanget ordnas av Malms ungdomsarbetsenhet och Malms kulturhus.</p>", "en": "<p>Join us as Malmitalo is transformed into a boat to Sweden! An adventure event during the autumn break week for ages 13â17.</p><p>The evening features a cruise programme, a disco and an artist that young people have been asking for!</p><p>Check-in before boarding the ship: the digital JĂ€ssĂ€ri membership card is required. <u><a href=\"https://nuorten.hel.fi/en/jassari-4/\">Read more and register as a JĂ€ssĂ€ri user: jassari.hel.fi.</a></u></p><p>The event is produced by the Malmi Youth Work Unit and Malmitalo.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule mukaan, kun Malmitalo muuttuu ruotsinlaivaksi! Syyslomaviikon elĂ€mystapahtuma 13â17-vuotiaille nuorille.", "sv": "Kom och var med nĂ€r Malms kulturhus förvandlas till en SverigebĂ„t! Ett upplevelseevenemang under höstlovet för ungdomar i Ă„ldern 13â17 Ă„r.", "en": "Join us as Malmitalo is transformed into a boat to Sweden! An adventure event during the autumn break week for ages 13â17." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D306AE39D7DF87CCE54B640F621688D1/Nuorten_ruotsinlaiva_goes_Malmitalo", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D306AE39D7DF87CCE54B640F621688D1/Sverigebat_for_unga_goes_Malms_kulturhus", "en": "http://www.malmitalo.fi/en/events/event/D306AE39D7DF87CCE54B640F621688D1/Youth_Boat_to_Sweden_goes_Malmitalo_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69360/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69048", "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: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: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:752/?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:p28435/?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": 2385414, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T13:14:17.250341Z", "last_modified_time": "2026-06-29T13:14:17.250355Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792471.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385414/?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-06-29T13:14:17.156078Z", "last_modified_time": "2026-09-10T09:14:48.704244Z", "date_published": null, "start_time": "2026-10-15T12:00:00Z", "end_time": "2026-10-15T13:48: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": "Syyslomaleffa: Lilo & Stitch (7)", "sv": "Höstlovsfilm: Lilo & Stitch (7)", "en": "Autumn Break Movie: Lilo & Stitch (7)" }, "description": { "fi": "<p>Tarina yksinĂ€isestĂ€ havaijilaistytöstĂ€ ja pakomatkalla olevasta avaruusolennosta, joka yrittÀÀ auttaa hĂ€ntĂ€ pitĂ€mÀÀn rikkinĂ€isen perheensĂ€ koossa.</p><p>Elokuva on riemastuttavan hauska ja koskettava live-action versio Disneyn vuoden 2002 animaatioklassikosta âLilo & Stitchâ. Elokuvan on ohjannut palkittu elokuvantekijĂ€ Fleischer Camp, se perustuu Chris Kekaniokalani Brightin ja Mike Van Waesin kĂ€sikirjoitukseen, ja sen pÀÀosissa nĂ€hdÀÀn Sydney Elizebeth Agudong, Billy Magnussen, Tia Carrere, Hannah Waddingham, Chris Sanders sekĂ€ Courtney B. Vance ja Zach Galifianakis, ja uutena tulokkaana Maia Kealoha.</p><p>Elokuvan âLilo & Stitchâ ovat tuottaneet Jonathan Eirich ja Dan Lin sekĂ€ Tom Peitzman, Ryan Halprin, Louie Provost ja Thomas Schumacher vastaavina tuottajina.</p><p>Kesto: 1 t 48 min<br>Kieli: Puhuttu suomeksi<br>IkĂ€raja: 7</p>", "sv": "<p>En berĂ€ttelse om en ensam hawaiiansk flicka och en rymdvarelse pĂ„ flykt som försöker hjĂ€lpa henne att hĂ„lla ihop sin splittrade familj.</p><p>Filmen Ă€r en underhĂ„llande och rörande live action-version av Disneys animerade klassiker Lilo & Stitch frĂ„n 2002. Filmen Ă€r regisserad av den prisbelönta filmskaparen Fleischer Camp och bygger pĂ„ ett manus av Chris Kekaniokalani Bright och Mike Van Waes. I huvudrollerna ses Sydney Elizebeth Agudong, Billy Magnussen, Tia Carrere, Hannah Waddingham, Chris Sanders, Courtney B. Vance och Zach Galifianakis samt nykomlingen Maia Kealoha.</p><p>Lilo & Stitch har producerats av Jonathan Eirich och Dan Lin, med Tom Peitzman, Ryan Halprin, Louie Provost och Thomas Schumacher som ansvariga producenter.</p><p>LĂ€ngd: 1 h 48 min. <br>SprĂ„k: Dubbad pĂ„ finska <br>Ă ldersgrĂ€ns: 7</p>", "en": "<p>A story about a lonely Hawaiian girl and an alien on the run who tries to help the girl keep her broken family together.</p><p>The film is a delightfully funny and touching live-action adaptation of Disneyâs 2002 animated classic Lilo & Stitch. The film is directed by the award-winning filmmaker Fleischer Camp and is based on a screenplay by Chris Kekaniokalani Bright and Mike Van Waes, and stars Sydney Elizebeth Agudong, Billy Magnussen, Tia Carrere, Hannah Waddingham, Chris Sanders, Courtney B. Vance and Zach Galifianakis, alongside newcomer Maia Kealoha.</p><p>The film Lilo & Stitch was produced by Jonathan Eirich and Dan Lin, with Tom Peitzman, Ryan Halprin, Louie Provost and Thomas Schumacher serving as executive producers.</p><p>Duration: 1âŻh 48âŻmin <br>Language: spoken in Finnish <br>Age rating: 7</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tarina yksinĂ€isestĂ€ havaijilaistytöstĂ€ ja pakomatkalla olevasta avaruusolennosta, joka yrittÀÀ auttaa hĂ€ntĂ€ pitĂ€mÀÀn rikkinĂ€isen perheensĂ€ koossa.", "sv": "En berĂ€ttelse om en ensam hawaiiansk flicka och en rymdvarelse pĂ„ flykt som försöker hjĂ€lpa henne att hĂ„lla ihop sin splittrade familj.", "en": "A story about a lonely Hawaiian girl and an alien on the run who tries to help the girl keep her broken family together." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5ECD5BAF4D42D5B8CCC4A280308946B0/Syyslomaleffa_Lilo_Stitch_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5ECD5BAF4D42D5B8CCC4A280308946B0/Hostlovsfilm_Lilo_Stitch_7_", "en": "http://www.malmitalo.fi/en/events/event/5ECD5BAF4D42D5B8CCC4A280308946B0/Autumn_Break_Movie_Lilo_Stitch_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69048/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69047", "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: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: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:752/?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:p28435/?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": 2385413, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T13:14:16.868481Z", "last_modified_time": "2026-06-29T13:14:16.868497Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792470.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385413/?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-06-29T13:14:16.725967Z", "last_modified_time": "2026-09-10T09:14:48.337869Z", "date_published": null, "start_time": "2026-10-15T10:00:00Z", "end_time": "2026-10-15T11:48: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": "Syyslomaleffa: Lilo & Stitch (7)", "sv": "Höstlovsfilm: Lilo & Stitch (7)", "en": "Autumn Break Movie: Lilo & Stitch (7)" }, "description": { "fi": "<p>Tarina yksinĂ€isestĂ€ havaijilaistytöstĂ€ ja pakomatkalla olevasta avaruusolennosta, joka yrittÀÀ auttaa hĂ€ntĂ€ pitĂ€mÀÀn rikkinĂ€isen perheensĂ€ koossa.</p><p>Elokuva on riemastuttavan hauska ja koskettava live-action versio Disneyn vuoden 2002 animaatioklassikosta âLilo & Stitchâ. Elokuvan on ohjannut palkittu elokuvantekijĂ€ Fleischer Camp, se perustuu Chris Kekaniokalani Brightin ja Mike Van Waesin kĂ€sikirjoitukseen, ja sen pÀÀosissa nĂ€hdÀÀn Sydney Elizebeth Agudong, Billy Magnussen, Tia Carrere, Hannah Waddingham, Chris Sanders sekĂ€ Courtney B. Vance ja Zach Galifianakis, ja uutena tulokkaana Maia Kealoha.</p><p>Elokuvan âLilo & Stitchâ ovat tuottaneet Jonathan Eirich ja Dan Lin sekĂ€ Tom Peitzman, Ryan Halprin, Louie Provost ja Thomas Schumacher vastaavina tuottajina.</p><p>Kesto: 1 t 48 min<br>Kieli: Puhuttu suomeksi<br>IkĂ€raja: 7</p>", "sv": "<p>En berĂ€ttelse om en ensam hawaiiansk flicka och en rymdvarelse pĂ„ flykt som försöker hjĂ€lpa henne att hĂ„lla ihop sin splittrade familj.</p><p>Filmen Ă€r en underhĂ„llande och rörande live action-version av Disneys animerade klassiker Lilo & Stitch frĂ„n 2002. Filmen Ă€r regisserad av den prisbelönta filmskaparen Fleischer Camp och bygger pĂ„ ett manus av Chris Kekaniokalani Bright och Mike Van Waes. I huvudrollerna ses Sydney Elizebeth Agudong, Billy Magnussen, Tia Carrere, Hannah Waddingham, Chris Sanders, Courtney B. Vance och Zach Galifianakis samt nykomlingen Maia Kealoha.</p><p>Lilo & Stitch har producerats av Jonathan Eirich och Dan Lin, med Tom Peitzman, Ryan Halprin, Louie Provost och Thomas Schumacher som ansvariga producenter.</p><p>LĂ€ngd: 1 h 48 min. <br>SprĂ„k: Dubbad pĂ„ finska <br>Ă ldersgrĂ€ns: 7</p>", "en": "<p>A story about a lonely Hawaiian girl and an alien on the run who tries to help the girl keep her broken family together.</p><p>The film is a delightfully funny and touching live-action adaptation of Disneyâs 2002 animated classic Lilo & Stitch. The film is directed by the award-winning filmmaker Fleischer Camp and is based on a screenplay by Chris Kekaniokalani Bright and Mike Van Waes, and stars Sydney Elizebeth Agudong, Billy Magnussen, Tia Carrere, Hannah Waddingham, Chris Sanders, Courtney B. Vance and Zach Galifianakis, alongside newcomer Maia Kealoha.</p><p>The film Lilo & Stitch was produced by Jonathan Eirich and Dan Lin, with Tom Peitzman, Ryan Halprin, Louie Provost and Thomas Schumacher serving as executive producers.</p><p>Duration: 1âŻh 48âŻmin <br>Language: spoken in Finnish <br>Age rating: 7</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tarina yksinĂ€isestĂ€ havaijilaistytöstĂ€ ja pakomatkalla olevasta avaruusolennosta, joka yrittÀÀ auttaa hĂ€ntĂ€ pitĂ€mÀÀn rikkinĂ€isen perheensĂ€ koossa.", "sv": "En berĂ€ttelse om en ensam hawaiiansk flicka och en rymdvarelse pĂ„ flykt som försöker hjĂ€lpa henne att hĂ„lla ihop sin splittrade familj.", "en": "A story about a lonely Hawaiian girl and an alien on the run who tries to help the girl keep her broken family together." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/71B96AA6380D26AE58F5F7F5EECCA7D3/Syyslomaleffa_Lilo_Stitch_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/71B96AA6380D26AE58F5F7F5EECCA7D3/Hostlovsfilm_Lilo_Stitch_7_", "en": "http://www.malmitalo.fi/en/events/event/71B96AA6380D26AE58F5F7F5EECCA7D3/Autumn_Break_Movie_Lilo_Stitch_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69047/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69046", "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: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: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:752/?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:p28435/?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": 2385409, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T12:13:54.106677Z", "last_modified_time": "2026-06-29T12:13:54.106690Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792469.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385409/?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-06-29T12:13:54.015191Z", "last_modified_time": "2026-09-10T09:14:47.725212Z", "date_published": null, "start_time": "2026-10-14T12:00:00Z", "end_time": "2026-10-14T13:35: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": "Syyslomaleffa: Koiramies (7)", "sv": "Höstlovsfilm: Hundmannen (7)", "en": "Autumn Break Movie: Dog Man (7)" }, "description": { "fi": "<p>Kun uskollinen poliisikoira ja sen omistaja loukkaantuvat virantoimituksessa, kaksikko sulautetaan yhteen sekopĂ€isessĂ€ mutta elintĂ€rkeĂ€ssĂ€ leikkauksessa.</p><p>Tuloksena on Koiramies â kaikkien pulassa olevien sankari, joka osaa noutaa, istua ja kieriĂ€!</p><p>HyvĂ€ksyttyÀÀn uuden olomuotonsa Koiramiehen on onnistuttava vakuuttamaan poliisipÀÀllikkö lainvalvojan taidoistaan ja estettĂ€vĂ€ pahan superroistokissa Peten ilkeĂ€t aikeet. PetellĂ€ on uusi ovela suunnitelma: hĂ€n aikoo kloonata itsensĂ€. Kissanpentu Pikku-Peten avulla hĂ€n aikoo tuplata mahdollisuutensa pahantekoon. Asiat kuitenkin mutkistuvat, kun Pikku-Peten ja Koiramiehen vĂ€lille syntyy yllĂ€ttĂ€vĂ€ yhteys.</p><p>Kun yhteinen vihollinen sieppaa Pikku-Peten, Koiramiehen ja Peten on yhdistettĂ€vĂ€ voimansa kissanpennun pelastamiseksi. Tapahtumien tiimellyksessĂ€ he oppivat, ettĂ€ perheellĂ€ (ja kissanpennuilla!) on voima yhdistÀÀ pahimmatkin viholliset.</p><p>Animaatioseikkailu Koiramies pohjautuu Dav Pilkeyn suosittuihin lastenkirjoihin ja sen tuo valkokankaille mm. Kung Fu Panda -elokuvasarjan luonut studio DreamWorks Animation.</p><p>Kesto: 1 t 35 min<br>Kieli: Puhuttu suomeksi<br>IkĂ€raja: 7</p>", "sv": "<p>NĂ€r en trogen polishund och dess Ă€gare skadas i tjĂ€nsten förenas de tvĂ„ i en galen men livsviktig operation.</p><p>Resultatet Ă€r Hundmannen â en hjĂ€lte för alla som Ă€r i knipa och som kan apportera, sitta och rulla runt! <br> <br>Efter att ha accepterat sin nya gestalt mĂ„ste Hundmannen lyckas övertyga polischefen om sina fĂ€rdigheter som lagens vĂ€ktare och förhindra den onda superskurkkatten Petes onda planer. Pete har en ny listig plan: han tĂ€nker klona sig sjĂ€lv. Med hjĂ€lp av kattungen Pikku-Pete tĂ€nker han fördubbla sina möjligheter att göra rackartyg. Men saker och ting blir mer komplicerade nĂ€r det uppstĂ„r en ovĂ€ntad koppling mellan Pikku-Pete och Hundmannen.</p><p>NĂ€r en gemensam fiende kidnappar Pikku-Pete mĂ„ste Hundmannen och Pete förena sina krafter för att rĂ€dda kattungen. Mitt i allt tumult lĂ€r de sig att familjen (och kattungar!) har kraften att förena ocksĂ„ de vĂ€rsta fienderna. <br> <br>AnimationsĂ€ventyret Hundmannen bygger pĂ„ Dav Pilkeys populĂ€ra barnböcker och förverkligas pĂ„ vita duken av studion DreamWorks Animation, som skapat bland annat filmserien Kung Fu Panda.</p><p>LĂ€ngd: 1 h 35 min. <br>SprĂ„k: Dubbad pĂ„ finska <br>Ă ldersgrĂ€ns: 7</p>", "en": "<p>When a loyal police dog and his owner are injured while on duty, the pair are fused together in a crazy but life-saving operation.</p><p>The result is Dog Man â a hero to anyone in trouble, who can fetch, sit and roll over! <br> <br>Having accepted his new form, Dog Man must convince the Chief of Police of his abilities as a law enforcer and thwart the evil plans of the supervillain cat Petey. Petey has a new cunning plan: he intends to clone himself. With the help of Liâl Petey the kitten, he plans to double his chances of getting up to no good. However, things get complicated when an unexpected connection develops between Liâl Petey and Dog Man.</p><p>When a common enemy kidnaps Liâl Petey, Dog Man and Petey must join forces to rescue the kitten. Amidst a whirlwind of events, they learn that family (and kittens!) has the power to bring even the fiercest of enemies together. <br> <br>The animated adventure Dog Man is based on Dav Pilkeyâs popular childrenâs books and is brought to the big screen by DreamWorks Animation, the studio behind works such as the Kung Fu Panda film series.</p><p>Duration: 1âŻh 35âŻmin <br>Language: spoken in Finnish <br>Age rating: 7</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kun uskollinen poliisikoira ja sen omistaja loukkaantuvat virantoimituksessa, kaksikko sulautetaan yhteen sekopĂ€isessĂ€ mutta elintĂ€rkeĂ€ssĂ€ leikkauksessa.", "sv": "NĂ€r en trogen polishund och dess Ă€gare skadas i tjĂ€nsten förenas de tvĂ„ i en galen men livsviktig operation.", "en": "When a loyal police dog and his owner are injured while on duty, the pair are fused together in a crazy but life-saving operation." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AB08ACDC8AD29FB016FF492B56FE104C/Syyslomaleffa_Koiramies_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/AB08ACDC8AD29FB016FF492B56FE104C/Hostlovsfilm_Hundmannen_7_", "en": "http://www.malmitalo.fi/en/events/event/AB08ACDC8AD29FB016FF492B56FE104C/Autumn_Break_Movie_Dog_Man_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69046/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69045", "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: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: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:752/?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:p28435/?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": 2385408, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T12:13:53.786755Z", "last_modified_time": "2026-06-29T12:13:53.786769Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792468.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385408/?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-06-29T12:13:53.683070Z", "last_modified_time": "2026-09-10T09:14:47.364495Z", "date_published": null, "start_time": "2026-10-14T10:00:00Z", "end_time": "2026-10-14T11:35: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": "Syyslomaleffa: Koiramies (7)", "sv": "Höstlovsfilm: Hundmannen (7)", "en": "Autumn Break Movie: Dog Man (7)" }, "description": { "fi": "<p>Kun uskollinen poliisikoira ja sen omistaja loukkaantuvat virantoimituksessa, kaksikko sulautetaan yhteen sekopĂ€isessĂ€ mutta elintĂ€rkeĂ€ssĂ€ leikkauksessa.</p><p>Tuloksena on Koiramies â kaikkien pulassa olevien sankari, joka osaa noutaa, istua ja kieriĂ€!</p><p>HyvĂ€ksyttyÀÀn uuden olomuotonsa Koiramiehen on onnistuttava vakuuttamaan poliisipÀÀllikkö lainvalvojan taidoistaan ja estettĂ€vĂ€ pahan superroistokissa Peten ilkeĂ€t aikeet. PetellĂ€ on uusi ovela suunnitelma: hĂ€n aikoo kloonata itsensĂ€. Kissanpentu Pikku-Peten avulla hĂ€n aikoo tuplata mahdollisuutensa pahantekoon. Asiat kuitenkin mutkistuvat, kun Pikku-Peten ja Koiramiehen vĂ€lille syntyy yllĂ€ttĂ€vĂ€ yhteys.</p><p>Kun yhteinen vihollinen sieppaa Pikku-Peten, Koiramiehen ja Peten on yhdistettĂ€vĂ€ voimansa kissanpennun pelastamiseksi. Tapahtumien tiimellyksessĂ€ he oppivat, ettĂ€ perheellĂ€ (ja kissanpennuilla!) on voima yhdistÀÀ pahimmatkin viholliset.</p><p>Animaatioseikkailu Koiramies pohjautuu Dav Pilkeyn suosittuihin lastenkirjoihin ja sen tuo valkokankaille mm. Kung Fu Panda -elokuvasarjan luonut studio DreamWorks Animation.</p><p>Kesto: 1 t 35 min<br>Kieli: Puhuttu suomeksi<br>IkĂ€raja: 7</p>", "sv": "<p>NĂ€r en trogen polishund och dess Ă€gare skadas i tjĂ€nsten förenas de tvĂ„ i en galen men livsviktig operation.</p><p>Resultatet Ă€r Hundmannen â en hjĂ€lte för alla som Ă€r i knipa och som kan apportera, sitta och rulla runt! <br> <br>Efter att ha accepterat sin nya gestalt mĂ„ste Hundmannen lyckas övertyga polischefen om sina fĂ€rdigheter som lagens vĂ€ktare och förhindra den onda superskurkkatten Petes onda planer. Pete har en ny listig plan: han tĂ€nker klona sig sjĂ€lv. Med hjĂ€lp av kattungen Pikku-Pete tĂ€nker han fördubbla sina möjligheter att göra rackartyg. Men saker och ting blir mer komplicerade nĂ€r det uppstĂ„r en ovĂ€ntad koppling mellan Pikku-Pete och Hundmannen.</p><p>NĂ€r en gemensam fiende kidnappar Pikku-Pete mĂ„ste Hundmannen och Pete förena sina krafter för att rĂ€dda kattungen. Mitt i allt tumult lĂ€r de sig att familjen (och kattungar!) har kraften att förena ocksĂ„ de vĂ€rsta fienderna. <br> <br>AnimationsĂ€ventyret Hundmannen bygger pĂ„ Dav Pilkeys populĂ€ra barnböcker och förverkligas pĂ„ vita duken av studion DreamWorks Animation, som skapat bland annat filmserien Kung Fu Panda.</p><p>LĂ€ngd: 1 h 35 min. <br>SprĂ„k: Dubbad pĂ„ finska <br>Ă ldersgrĂ€ns: 7</p>", "en": "<p>When a loyal police dog and his owner are injured while on duty, the pair are fused together in a crazy but life-saving operation.</p><p>The result is Dog Man â a hero to anyone in trouble, who can fetch, sit and roll over! <br> <br>Having accepted his new form, Dog Man must convince the Chief of Police of his abilities as a law enforcer and thwart the evil plans of the supervillain cat Petey. Petey has a new cunning plan: he intends to clone himself. With the help of Liâl Petey the kitten, he plans to double his chances of getting up to no good. However, things get complicated when an unexpected connection develops between Liâl Petey and Dog Man.</p><p>When a common enemy kidnaps Liâl Petey, Dog Man and Petey must join forces to rescue the kitten. Amidst a whirlwind of events, they learn that family (and kittens!) has the power to bring even the fiercest of enemies together. <br> <br>The animated adventure Dog Man is based on Dav Pilkeyâs popular childrenâs books and is brought to the big screen by DreamWorks Animation, the studio behind works such as the Kung Fu Panda film series.</p><p>Duration: 1âŻh 35âŻmin <br>Language: spoken in Finnish <br>Age rating: 7</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kun uskollinen poliisikoira ja sen omistaja loukkaantuvat virantoimituksessa, kaksikko sulautetaan yhteen sekopĂ€isessĂ€ mutta elintĂ€rkeĂ€ssĂ€ leikkauksessa.", "sv": "NĂ€r en trogen polishund och dess Ă€gare skadas i tjĂ€nsten förenas de tvĂ„ i en galen men livsviktig operation.", "en": "When a loyal police dog and his owner are injured while on duty, the pair are fused together in a crazy but life-saving operation." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B8E35356831D0C936F6E7C88144130ED/Syyslomaleffa_Koiramies_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B8E35356831D0C936F6E7C88144130ED/Hostlovsfilm_Hundmannen_7_", "en": "http://www.malmitalo.fi/en/events/event/B8E35356831D0C936F6E7C88144130ED/Autumn_Break_Movie_Dog_Man_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69045/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69043", "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: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: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:752/?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:p28435/?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": 2385406, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T12:13:53.027103Z", "last_modified_time": "2026-06-29T12:13:53.027123Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792464.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385406/?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-06-29T12:13:52.923638Z", "last_modified_time": "2026-09-10T09:14:45.961143Z", "date_published": null, "start_time": "2026-10-13T10:00:00Z", "end_time": "2026-10-13T11:47: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": "Syyslomaleffa: Paddington seikkailee (7)", "sv": "Höstlovsfilm: Paddingtons Ă€ventyr (7)", "en": "Autumn Break Movie: Paddington in Peru (7)" }, "description": { "fi": "<p>Paddington seikkailee vie marmeladia rakastavan karhun viidakkoon jĂ€nnittĂ€vĂ€lle ja vauhdikkaalle seikkailulle.</p><p>Kun Paddington saa kuulla rakkaan Lucy-tĂ€tinsĂ€ kadonneen seniorikarhujen yhteisöstĂ€, hĂ€n ja Brownin perhe suuntaavat oitis Perun viidakkoon etsimÀÀn hĂ€ntĂ€. EtsintĂ€ alkaa arvoitukselliselle kartalle merkitystĂ€ johtolangasta.</p><p>Aikeenaan ratkaista kadonneen tĂ€tinsĂ€ arvoitus, Paddington lĂ€htee jĂ€nnittĂ€vĂ€lle matkalle lĂ€pi Amazonin sademetsien â ja löytÀÀ sattumalta yhden maailman legendaarisimmista aarteista.</p><p>Kesto: 1 t 47min<br>Kieli: Puhuttu suomeksi<br>IkĂ€raja: 7<br>Vapaa pÀÀsy</p>", "sv": "<p>I Paddingtons Ă€ventyr fĂ„r vi följa med den marmeladĂ€lskande björnen pĂ„ ett spĂ€nnande och fartfyllt Ă€ventyr i djungeln.</p><p>NĂ€r Paddington fĂ„r veta att hans Ă€lskade tant Lucy har försvunnit frĂ„n seniorbjörnarnas gemenskap, beger han sig tillsammans med familjen Brown omedelbart till Perus djungel för att leta efter henne. Sökandet börjar med en ledtrĂ„d som Ă€r inritad pĂ„ en gĂ„tfull karta.</p><p>I sin strĂ€van efter att lösa gĂ„tan kring sin försvunna tant Lucy ger sig Paddington ut pĂ„ en spĂ€nnande resa genom Amazonas regnskogar â och hittar av en slump en av vĂ€rldens mest legendariska skatter.</p><p>LĂ€ngd: 1 h 47 min. <br>SprĂ„k: Dubbad pĂ„ finska <br>Ă ldersgrĂ€ns: 7</p><p>Fritt intrĂ€de</p>", "en": "<p>Paddington in Peru takes the marmalade-loving bear into the jungle for an exciting and eventful adventure.</p><p>When Paddington hears that his beloved Aunt Lucy has gone missing from the senior bearsâ community, he and the Brown family set off straight away for the Peruvian jungle to look for her. The search begins with a clue marked on a mysterious map.</p><p>Determined to solve the mystery of his missing aunt, Paddington sets off on an exciting journey through the Amazon rainforest â and stumbles upon one of the worldâs most legendary treasures.</p><p>Duration: 1âŻh 47âŻmin <br>Language: spoken in Finnish <br>Age rating: 7</p><p>Free entry</p>" }, "provider_contact_info": null, "short_description": { "fi": "Paddington seikkailee vie marmeladia rakastavan karhun viidakkoon jĂ€nnittĂ€vĂ€lle ja vauhdikkaalle seikkailulle.", "sv": "I Paddingtons Ă€ventyr fĂ„r vi följa med den marmeladĂ€lskande björnen pĂ„ ett spĂ€nnande och fartfyllt Ă€ventyr i djungeln.", "en": "Paddington in Peru takes the marmalade-loving bear into the jungle for an exciting and eventful adventure." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2B33EC4C500B8DAEBF09C1CF0C39C482/Syyslomaleffa_Paddington_seikkailee_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2B33EC4C500B8DAEBF09C1CF0C39C482/Hostlovsfilm_Paddingtons_aventyr_7_", "en": "http://www.malmitalo.fi/en/events/event/2B33EC4C500B8DAEBF09C1CF0C39C482/Autumn_Break_Movie_Paddington_in_Peru_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69043/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }