Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=15
{ "meta": { "count": 27765, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=16", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=14" }, "data": [ { "id": "kulke:67771", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494158, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T10:13:14.255702Z", "last_modified_time": "2025-12-09T10:13:14.255714Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780404.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494158/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-09T10:13:14.194074Z", "last_modified_time": "2026-03-20T01:13:08.751523Z", "date_published": null, "start_time": "2026-02-17T13:00:00Z", "end_time": "2026-02-17T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!", "sv": "Under sportlovet drömmer vi om strandliv på Nordhuset!", "en": "At Vuotalo, we will be dreaming of beach life in the middle of the winter break!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BE1F5BE8DCC7AD87260A18282B6D091A/Rantaunelmia", "sv": "http://www.vuotalo.fi/sv/evenemang/event/BE1F5BE8DCC7AD87260A18282B6D091A/Stranddrommar", "en": "http://www.vuotalo.fi/en/events/event/BE1F5BE8DCC7AD87260A18282B6D091A/Beach_dreams" }, "description": { "fi": "<p>Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!</p><p>Tule rakentamaan yhteistaideteoksena toteutettavaan miniatyyrimaailmaan oma osuutesi: onko se hiekkarannan aurinkotuoli, merellä seilaava vene vai ehkä merenpinnan alla uiva kala taikka merenneito?<br> <br>Voit osallistua pajoihin talvilomaviikon arkipäivinä, vaikka joka päivä! Mukaan mahtuu kerrallaan noin 20 osallistujaa.</p><p>Alle kouluikäiset voivat osallistua oman aikuisen kanssa.</p><p>Valmistunut taideteos jää näytille Vuotalolle lomaviikon jälkeen<br>.<br>Ohjaus: Maaria Klemetti<br>Kielet: suomi ja englanti</p><p>Vapaa pääsy!</p>", "sv": "<p>Under sportlovet drömmer vi om strandliv på Nordhuset!</p><p>Kom och bygg en egen del av vår miniatyrvärld som skapas som ett gemensamt konstverk: blir det en solstol på stranden, en båt på havet eller kanske en fisk eller en sjöjungfru som simmar under ytan?</p><p>Vi kan delta i verkstäderna på vardagarna under höstlovsveckan, varje dag om du vill! Det finns plats för cirka 20 deltagare åt gången. Barn under skolåldern kan delta tillsammans med en vuxen. Det färdiga konstverket ställs ut på Nordhuset efter sportlovsveckan.</p><p>Regi: Maaria Klemetti<br>Språk: finska och engelska</p><p>Fritt inträde!</p>", "en": "<p>At Vuotalo, we will be dreaming of beach life in the middle of the winter break!</p><p>Come build your own part of a miniature world created as a work of collaborative art: will it be a deckchair on a sandy beach, a boat sailing at sea, or perhaps a fish or mermaid swimming under the surface?</p><p>You can participate in the workshops on weekdays during the winter holiday week – every day if you want to! The workshops have room for around 20 participants at a time. Children under school age can participate with an adult. The completed work of art will be on display at Vuotalo after the holiday week.</p><p>Instruction: Maaria Klemetti<br>Languages: Finnish and English</p><p>Free entry!</p>" }, "name": { "fi": "Rantaunelmia – Talviloman avoimet työpajat", "sv": "Stranddrömmar – Öppna verkstäder under sportlovet", "en": "Beach dreams – Open workshops during the winter break" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67771/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67552", "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/kulke:755/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494010, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:07.487439Z", "last_modified_time": "2025-12-03T08:13:07.487454Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781705.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494010/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-03T08:13:07.409478Z", "last_modified_time": "2026-03-20T01:13:08.633021Z", "date_published": null, "start_time": "2026-02-17T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maailman myydyimpään videopeliin perustuva Minecraft-elokuva!", "sv": "Filmen som baserar sig på världens mest sålda videospel!", "en": "A film based on the world's best-selling video game Minecraft, starring." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/798575C7282F4A11AEFE5FDD7A530429/Talvilomaleffa_Minecraft-elokuva_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/798575C7282F4A11AEFE5FDD7A530429/Sportlovsbio_A_Minecraft_Movie_7_", "en": "http://www.malmitalo.fi/en/events/event/798575C7282F4A11AEFE5FDD7A530429/Winter_holiday_movie_A_Minecraft_Movie_7_" }, "description": { "fi": "<p>Maailman myydyimpään videopeliin perustuva Minecraft-elokuva!</p><p>Päätähtinä nähdään Jason Momoa ja Jack Black. Pelin ensimmäisen näytellyn valkokangassovituksen ohjauksesta vastaa Jared Hess.</p><p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen. Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa. Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Kesto: 101 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi<br>Vapaa pääsy!</p>", "sv": "<p>Filmen som baserar sig på världens mest sålda videospel!</p><p>Jason Momoa och Jack Black ses i huvudrollerna. Den här första filmatiseringen av spelet med skådespelare är regisserad av Jared Hess.</p><p>Välkommen till Minecraft-världen, där kreativiteten inte bara hjälper till med byggandet, utan den är en viktig överlevnadsfärdighet! Fyra karaktärer som känner sig utanför – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) och Dawn (Brooks) – kämpar med vardagliga problem när de plötsligt förs genom en mystisk portal till Överjorden: ett märkligt kubland där fantasin flödar fritt. För att överleva och komma hem måste de lära sig att styra den här världen (och ytterligare skydda den från skurkar som piglins och zombies) när de ger sig ut på ett magiskt äventyr med den oväntade mästerbyggaren Steve (Black). Längs vägen måste alla fem hitta modet att arbeta tillsammans för att utnyttja sina egna unika kreativa talanger... just de färdigheter som de behöver för att lyckas även i den verkliga världen.</p><p>Längd: 101 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>", "en": "<p>A film based on the world's best-selling video game Minecraft, starring.</p><p>Jason Momoa and Jack Black! Jared Hess directed the first live action screen adaptation of the game.</p><p>Welcome to the world of Minecraft, where creativity is not just a building tool, it's an essential survival skill! Four characters who feel like outsiders – Garrett ‘The Garbage Man’ Garrison (Momoa), Henry (Hansen), Natalie (Myers) and Dawn (Brooks) – are struggling with their everyday problems when they are suddenly whisked through a mysterious portal to the Overworld: a strange cube land where imagination runs wild. To make it back home, they must learn to control this world (and protect it from bad guys like piglins and zombies) as they head off on a magical adventure with surprising master builder Steve (Black). Along the way, the five must find the courage to work together to harness their own unique creative talents... the very skills they need to succeed back in the real world too.</p><p>Duration: 101 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Minecraft-elokuva (7)", "sv": "Sportlovsbio: A Minecraft Movie (7)", "en": "Winter holiday movie: A Minecraft Movie (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67552/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67551", "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/kulke:755/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494009, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:07.174606Z", "last_modified_time": "2025-12-03T08:13:07.174623Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781704.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494009/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-03T08:13:07.084116Z", "last_modified_time": "2026-03-20T01:13:08.503019Z", "date_published": null, "start_time": "2026-02-17T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maailman myydyimpään videopeliin perustuva Minecraft-elokuva!", "sv": "Filmen som baserar sig på världens mest sålda videospel!", "en": "A film based on the world's best-selling video game Minecraft, starring." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/93E7CE0104775E277D522255EF394323/Talvilomaleffa_Minecraft-elokuva_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/93E7CE0104775E277D522255EF394323/Sportlovsbio_A_Minecraft_Movie_7_", "en": "http://www.malmitalo.fi/en/events/event/93E7CE0104775E277D522255EF394323/Winter_holiday_movie_A_Minecraft_Movie_7_" }, "description": { "fi": "<p>Maailman myydyimpään videopeliin perustuva Minecraft-elokuva!</p><p>Päätähtinä nähdään Jason Momoa ja Jack Black. Pelin ensimmäisen näytellyn valkokangassovituksen ohjauksesta vastaa Jared Hess.</p><p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen. Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa. Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Kesto: 101 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi<br>Vapaa pääsy!</p>", "sv": "<p>Filmen som baserar sig på världens mest sålda videospel!</p><p>Jason Momoa och Jack Black ses i huvudrollerna. Den här första filmatiseringen av spelet med skådespelare är regisserad av Jared Hess.</p><p>Välkommen till Minecraft-världen, där kreativiteten inte bara hjälper till med byggandet, utan den är en viktig överlevnadsfärdighet! Fyra karaktärer som känner sig utanför – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) och Dawn (Brooks) – kämpar med vardagliga problem när de plötsligt förs genom en mystisk portal till Överjorden: ett märkligt kubland där fantasin flödar fritt. För att överleva och komma hem måste de lära sig att styra den här världen (och ytterligare skydda den från skurkar som piglins och zombies) när de ger sig ut på ett magiskt äventyr med den oväntade mästerbyggaren Steve (Black). Längs vägen måste alla fem hitta modet att arbeta tillsammans för att utnyttja sina egna unika kreativa talanger... just de färdigheter som de behöver för att lyckas även i den verkliga världen.</p><p>Längd: 101 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>", "en": "<p>A film based on the world's best-selling video game Minecraft, starring.</p><p>Jason Momoa and Jack Black! Jared Hess directed the first live action screen adaptation of the game.</p><p>Welcome to the world of Minecraft, where creativity is not just a building tool, it's an essential survival skill! Four characters who feel like outsiders – Garrett ‘The Garbage Man’ Garrison (Momoa), Henry (Hansen), Natalie (Myers) and Dawn (Brooks) – are struggling with their everyday problems when they are suddenly whisked through a mysterious portal to the Overworld: a strange cube land where imagination runs wild. To make it back home, they must learn to control this world (and protect it from bad guys like piglins and zombies) as they head off on a magical adventure with surprising master builder Steve (Black). Along the way, the five must find the courage to work together to harness their own unique creative talents... the very skills they need to succeed back in the real world too.</p><p>Duration: 101 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Minecraft-elokuva (7)", "sv": "Sportlovsbio: A Minecraft Movie (7)", "en": "Winter holiday movie: A Minecraft Movie (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67551/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68003", "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: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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494703, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-03T08:13:45.436487Z", "last_modified_time": "2026-02-03T08:13:45.436504Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784325.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494703/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-03T08:13:45.296010Z", "last_modified_time": "2026-03-20T01:13:08.359437Z", "date_published": null, "start_time": "2026-02-17T10:00:00Z", "end_time": "2026-02-17T14: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, "short_description": { "fi": "Rileyn päämaja joutuu mullistuksen kouriin, kun siellä tehdään tilaa jollekin aivan odottamattomalle: uusille tunteille! Ilo, Suru, Kiukku, Pelko ja Inho, jotka ovat pitkään pyörittäneet toimintaa kaikin puolin onnistuneesti, eivät oikein tiedä, mitä heidän pitäisi tuntea, kun paikalle ilmaantuu Ahdistus. Eikä hän näytä olevan yksin. Mukanaan hän tuo ystävänsä nimeltä Nolous, Kateus ja Ennui.", "sv": "Jennys huvudkontoret plötsligt börjar rivas för att göra plats för något helt oväntat: nya känslor! Glädje, Vemod, Ilska, Rädsla och Avsky, som länge har drivit verksamheten med framgång, blir osäkra på hur de ska hantera nykomlingen Ängslan. Och hon är tydligen inte ensam, utan har sällskap av Pinsamhet, Avund och Ennui.", "en": "Riley’s headquarters is undergoing a sudden demolition to make room for something entirely unexpected: new Emotions! Joy, Sadness, Anger, Fear and Disgust, who’ve long been running a successful operation by all accounts, aren’t sure how to feel when Anxiety shows up. And it looks like she’s not alone. She’s bringing along her friends called Embarrassment, Envy, and Ennui." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CF932F2EE31E54018AD9495170C31079/Lomakino_Mielen_sopukoissa_2_Inside_Out_2", "sv": "http://www.annantalo.fi/sv/evenemang/event/CF932F2EE31E54018AD9495170C31079/Lomakino_Insidan_ut_2_Inside_Out_2", "en": "http://www.annantalo.fi/en/events/event/CF932F2EE31E54018AD9495170C31079/Lomakino_Inside_Out_2" }, "description": { "fi": "<p>Rileyn päämaja joutuu mullistuksen kouriin, kun siellä tehdään tilaa jollekin aivan odottamattomalle: uusille tunteille! Ilo, Suru, Kiukku, Pelko ja Inho, jotka ovat pitkään pyörittäneet toimintaa kaikin puolin onnistuneesti, eivät oikein tiedä, mitä heidän pitäisi tuntea, kun paikalle ilmaantuu Ahdistus. Eikä hän näytä olevan yksin. Mukanaan hän tuo ystävänsä nimeltä Nolous, Kateus ja Ennui.</p><p><b>Lomakinon elokuva: Inside out – Mielen sopukoissa 2</b><br>Kieli: suomi, tekstitys englanniksi, ikäsuositus 7+</p><p>Esitykset:</p><p>Klo 12.00<br>Klo 14.30</p><p>Ryhmien ilmoittautuminen ennakkoon: krista.holm@hel.fi</p><p>Elokuva näytetään Annansalissa, jonne mahtuu n. 80 henkeä. Jokainen osallistuja saa maksuttoman lipukkeen, jolla varmistaa paikan näytöksessä. Ryhmät ilmoittautuvat etukäteen. Paikkoja ei ole numeroitu.</p>", "sv": "<p>Jennys huvudkontoret plötsligt börjar rivas för att göra plats för något helt oväntat: nya känslor! Glädje, Vemod, Ilska, Rädsla och Avsky, som länge har drivit verksamheten med framgång, blir osäkra på hur de ska hantera nykomlingen Ängslan. Och hon är tydligen inte ensam, utan har sällskap av Pinsamhet, Avund och Ennui.</p><p><b>Sportlovsbio: Insidan ut 2 </b><br>Språk: finska, undertexter på engelska, tillåten från 7 år</p><p>Visningar:<br> <br>Kl. 12.00<br>Kl. 14.30</p><p>Förbokningar för grupper: krista.holm@hel.fi</p><p>Visningarna hålls i Annesalen, som har en kapacitet på cirka 80 personer. Varje besökare får en gratisbiljett för att garantera en plats vid visningen. Grupper måste boka i förväg. Inga numrerade platser.</p>", "en": "<p>Riley’s headquarters is undergoing a sudden demolition to make room for something entirely unexpected: new Emotions! Joy, Sadness, Anger, Fear and Disgust, who’ve long been running a successful operation by all accounts, aren’t sure how to feel when Anxiety shows up. And it looks like she’s not alone. She’s bringing along her friends called Embarrassment, Envy, and Ennui.</p><p><b>Holiday cinema: Inside out 2 </b><br>Language: Finnish, subtitled in English, recommended for ages 7 and up</p><p>Screenings:<br> <br>12:00 PM: <br>2:30 PM:</p><p>Pre-bookings for groups: krista.holm@hel.fi</p><p>Screenings will be held at Annansali, which has a capacity of about 80 people. Every attendee will be given a free ticket to ensure them a seat in the screening. Groups must make a booking in advance. No seat numbers.</p>" }, "name": { "fi": "Lomakino: Mielen sopukoissa 2 / Inside Out 2", "sv": "Lomakino: Insidan ut 2 / Inside Out 2", "en": "Lomakino: Inside Out 2" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68003/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67557", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:602/?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: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:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494297, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T08:13:50.518364Z", "last_modified_time": "2025-12-23T08:13:50.518380Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781713.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494297/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-23T08:13:50.420338Z", "last_modified_time": "2026-03-20T01:13:08.261236Z", "date_published": null, "start_time": "2026-02-17T08:00:00Z", "end_time": "2026-02-17T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.", "sv": "I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.", "en": "Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7489592FBFDFCB3D19AC1ECF95800FEB/Pelihahmopaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7489592FBFDFCB3D19AC1ECF95800FEB/Spelfigursverkstad", "en": "http://www.malmitalo.fi/en/events/event/7489592FBFDFCB3D19AC1ECF95800FEB/Game_character_workshop_" }, "description": { "fi": "<p>Maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.</p><p>Minecraft-elokuvan inspiroimana pääset tässä pajassa muovailemaan oman pelihahmon. Millaisesta pelimaailmasta sinun hahmosi on saapunut?</p><p>Työpajan kieli: suomi</p><p>Vapaa pääsy!</p>", "sv": "<p>I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.</p><p>Inspirerad av Minecraft-filmen kan du i denna verkstad modellera en egen spelfigur. Vilken spelvärld kommer din figur från?</p><p>Verkstadens språk: finska<br>Fritt inträde!</p>", "en": "<p>Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home.</p><p>Inspired by the Minecraft movie, this workshop lets you sculpt your own character. What game world did your character come from?</p><p>Workshop language: Finnish<br>Free entry!</p>" }, "name": { "fi": "Pelihahmopaja", "sv": "Spelfigursverkstad", "en": "Game character workshop" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67557/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68053", "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: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:596/?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:p28435/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494702, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-03T08:13:44.842617Z", "last_modified_time": "2026-02-03T08:13:44.842641Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785294.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494702/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-02-02T12:13:05.560690Z", "last_modified_time": "2026-03-20T01:13:08.156018Z", "date_published": null, "start_time": "2026-02-16T12:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Robotti B-Ö opastaa Piilossa-näyttelyn Piilopeliin." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/694E92EEB8FCEDCFCC36C61DCAC33D55/Robottivahtimestari_B-O_ja_Piilopelin_pulma", "sv": "http://www.annantalo.fi/sv/evenemang/event/694E92EEB8FCEDCFCC36C61DCAC33D55/Robottivahtimestari_B-O_ja_Piilopelin_pulma", "en": "http://www.annantalo.fi/en/events/event/694E92EEB8FCEDCFCC36C61DCAC33D55/Robottivahtimestari_B-O_ja_Piilopelin_pulma" }, "description": { "fi": "<p>Robotti B-Ö opastaa Piilossa-näyttelyn Piilopeliin.</p><p>Peliä voi pelata kaverin kanssa tai porukalla. Opastuksissa pyrimme löytämään kaikille pelikaverin.</p><p>Robottivahtimestari B-Ö on paikalla kertomassa Piilopelistä halukkaille pelaajille klo 12 ja klo 14.30!</p><p>Piilopeliä voi pelata aina kun Annantalo on auki. Piilopelin ikäsuositus on alakouluikäisille.</p><p>Yhden pelin kesto noin 30 min.</p>" }, "name": { "fi": "Robottivahtimestari B-Ö ja Piilopelin pulma", "sv": "Robottivahtimestari B-Ö ja Piilopelin pulma", "en": "Robottivahtimestari B-Ö ja Piilopelin pulma" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68053/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68012", "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: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:596/?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:p28435/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494705, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-03T09:13:41.351888Z", "last_modified_time": "2026-02-03T09:13:41.351904Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784334.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494705/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-02-03T09:13:41.265458Z", "last_modified_time": "2026-03-20T01:13:08.032244Z", "date_published": null, "start_time": "2026-02-16T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Robotti B-Ö opastaa Piilossa-näyttelyn Piilopeliin." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5AB8C21A08AB7D9D75C0E2CA5F3ACB1F/Robottivahtimestari_B-O_ja_Piilopelin_pulma", "sv": "http://www.annantalo.fi/sv/evenemang/event/5AB8C21A08AB7D9D75C0E2CA5F3ACB1F/Robottivahtimestari_B-O_ja_Piilopelin_pulma", "en": "http://www.annantalo.fi/en/events/event/5AB8C21A08AB7D9D75C0E2CA5F3ACB1F/Robottivahtimestari_B-O_ja_Piilopelin_pulma" }, "description": { "fi": "<p>Robotti B-Ö opastaa Piilossa-näyttelyn Piilopeliin.</p><p>Peliä voi pelata kaverin kanssa tai porukalla. Opastuksissa pyrimme löytämään kaikille pelikaverin.</p><p>Robottivahtimestari B-Ö on paikalla kertomassa Piilopelistä halukkaille pelaajille klo 12 ja klo 14.30!</p><p>Piilopeliä voi pelata aina kun Annantalo on auki. Piilopelin ikäsuositus on alakouluikäisille.</p><p>Yhden pelin kesto noin 30 min</p>" }, "name": { "fi": "Robottivahtimestari B-Ö ja Piilopelin pulma", "sv": "Robottivahtimestari B-Ö ja Piilopelin pulma", "en": "Robottivahtimestari B-Ö ja Piilopelin pulma" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68012/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67644", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494157, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T10:13:13.938539Z", "last_modified_time": "2025-12-09T10:13:13.938551Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780402.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494157/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-09T10:13:13.862913Z", "last_modified_time": "2026-03-20T01:13:07.926106Z", "date_published": null, "start_time": "2026-02-16T08:00:00Z", "end_time": "2026-02-16T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!", "sv": "Under sportlovet drömmer vi om strandliv på Nordhuset!", "en": "At Vuotalo, we will be dreaming of beach life in the middle of the winter break!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0F7BD9840751760066BAC9519B4827C1/Rantaunelmia", "sv": "http://www.vuotalo.fi/sv/evenemang/event/0F7BD9840751760066BAC9519B4827C1/Stranddrommar", "en": "http://www.vuotalo.fi/en/events/event/0F7BD9840751760066BAC9519B4827C1/Beach_dreams" }, "description": { "fi": "<p>Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!</p><p>Tule rakentamaan yhteistaideteoksena toteutettavaan miniatyyrimaailmaan oma osuutesi: onko se hiekkarannan aurinkotuoli, merellä seilaava vene vai ehkä merenpinnan alla uiva kala taikka merenneito?<br> <br>Voit osallistua pajoihin talvilomaviikon arkipäivinä, vaikka joka päivä! Mukaan mahtuu kerrallaan noin 20 osallistujaa.</p><p>Alle kouluikäiset voivat osallistua oman aikuisen kanssa.</p><p>Valmistunut taideteos jää näytille Vuotalolle lomaviikon jälkeen<br>.<br>Ohjaus: Maaria Klemetti<br>Kielet: suomi ja englanti</p><p>Vapaa pääsy!</p>", "sv": "<p>Under sportlovet drömmer vi om strandliv på Nordhuset!</p><p>Kom och bygg en egen del av vår miniatyrvärld som skapas som ett gemensamt konstverk: blir det en solstol på stranden, en båt på havet eller kanske en fisk eller en sjöjungfru som simmar under ytan?</p><p>Vi kan delta i verkstäderna på vardagarna under höstlovsveckan, varje dag om du vill! Det finns plats för cirka 20 deltagare åt gången. Barn under skolåldern kan delta tillsammans med en vuxen. Det färdiga konstverket ställs ut på Nordhuset efter sportlovsveckan.</p><p>Regi: Maaria Klemetti<br>Språk: finska och engelska</p><p>Fritt inträde!</p>", "en": "<p>At Vuotalo, we will be dreaming of beach life in the middle of the winter break!</p><p>Come build your own part of a miniature world created as a work of collaborative art: will it be a deckchair on a sandy beach, a boat sailing at sea, or perhaps a fish or mermaid swimming under the surface?</p><p>You can participate in the workshops on weekdays during the winter holiday week – every day if you want to! The workshops have room for around 20 participants at a time. Children under school age can participate with an adult. The completed work of art will be on display at Vuotalo after the holiday week.</p><p>Instruction: Maaria Klemetti<br>Languages: Finnish and English</p><p>Free entry!</p>" }, "name": { "fi": "Rantaunelmia – Talviloman avoimet työpajat", "sv": "Stranddrömmar – Öppna verkstäder under sportlovet", "en": "Beach dreams – Open workshops during the winter break" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67644/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67936", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:752/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://forms.office.com/e/LJiytVra0H", "sv": "https://forms.office.com/e/LJiytVra0H", "en": "https://forms.office.com/e/LJiytVra0H" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494411, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-08T13:12:49.231218Z", "last_modified_time": "2026-01-08T13:12:49.231231Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780431.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494411/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-08T13:12:49.077844Z", "last_modified_time": "2026-03-20T01:13:07.783624Z", "date_published": null, "start_time": "2026-02-16T07:00:00Z", "end_time": "2026-02-20T11: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, "short_description": { "fi": "Rakennetaan talvilomalla oma kulkuneuvo!", "sv": "Vi bygger ett eget fordon under sportlovet!", "en": "Build your own vehicle!" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/67D99452B76747E61AA5B15F1DDB26BF/Fun_Mechanics", "sv": "http://www.caisa.fi/sv/evenemang/event/67D99452B76747E61AA5B15F1DDB26BF/Fun_Mechanics", "en": "http://www.caisa.fi/en/events/event/67D99452B76747E61AA5B15F1DDB26BF/Fun_Mechanics" }, "description": { "fi": "<p>Rakennetaan talvilomalla oma kulkuneuvo!</p><p>Fun Mechanics on viisipäiväinen luova ja teknisesti painottunut työpajasarja 7–10-vuotiaille tytöille.<br> <br>Työpajassa tutustutaan kulkuneuvojen toimintaan, suunnitteluun ja rakentamiseen. Työpaja yhdistää mekaniikan, taiteen ja ympäristöystävällisen ajattelun hauskalla tavalla, jossa oppiminen tapahtuu tekemisen, kokeilun ja oivalluksen kautta.<br> <br>Viikon aikana viimeistellään yksityiskohdat, koristellaan ajoneuvot työkalupainannalla ja suunnitellaan omat liikennemerkit. Viimeisenä päivänä kulkuneuvot testataan ulkona pienellä radalla, ajot kuvataan ja viikon tuotoksista rakennetaan pieni näyttely. <br> <br>Työpajan ohjaajana toimii taidekasvattaja ja kuvataiteilija Anastasia Artemeva. <br> <br>Opetuskielet: Suomi (englanti ja venäjä tarvittaessa)<br> <br><b>Ilmoittautuminen</b><br>Työpajasarja on maksuton, mutta vaatii ilmoittautumisen. Vahvistamme ilmoittautumisen sähköpostitse. Työpajaan voi ilmoittautua oheisesta linkistä. Ilmoittautuminen aukeaa 7.1. klo 9.00. https://forms.office.com/e/LJiytVra0H<br> <br>Kysymykset ja tiedustelut: teemu.savikurki@hel.fi</p>", "sv": "<p>Vi bygger ett eget fordon under sportlovet!</p><p>Fun Mechanics är en fem dagar lång serie av verkstäder för flickor i åldern 7–10 år, med betoning på teknik.<br> <br>I verkstaden får man lära sig mer om fordons funktion och hur man designar och bygger dem. Verkstaden kombinerar mekanik, konst och miljövänligt tänkande på ett roligt sätt, där man lär sig genom att göra, testa och få nya insikter.<br> <br>Under veckan får man finslipa detaljerna, dekorera fordonen med verktygstryck och designa egna trafikmärken. Den sista dagen testas fordonen på en liten bana utomhus, åkturerna filmas och en liten utställning byggs upp av veckans arbeten. <br> <br>Verkstaden leds av konstpedagogen och bildkonstnären Anastasia Artemeva. <br> <br>Undervisningsspråk: Finska (engelska och ryska vid behov)<br> <br><b>Anmälan</b><br>Verkstaden är gratis, men kräver anmälan. Vi bekräftar anmälan per e-post. Du kan anmäla dig till verkstaden via länken. Anmälan öppnar 7.1 kl. 9.00. https://forms.office.com/e/LJiytVra0H<br> <br>Frågor och förfrågningar: teemu.savikurki@hel.fi</p>", "en": "<p>Build your own vehicle!</p><p>Fun Mechanics is a five-day creative and technically focused art workshop series for girls aged 7–10.</p><p>The workshop introduces the workings, design and construction of vehicles. The workshop combines mechanics, art and environmentally friendly thinking in a fun way, where learning takes place through making, experimenting and insight.</p><p>During the week, the details are finalized, the vehicles are decorated with tool printing and their own road signs are designed. On the last day, the vehicles are tested outdoors on a small track, the rides are filmed and a small exhibition is built from the week's products.</p><p>The workshop is led by art educator and visual artist Anastasia Artemeva.<br>Languages: Finnish (English and Russian if needed).</p><p><b>Registration</b><br>The workshop series is free of charge, but registration is required. We will confirm your registration by email. You can register for the workshop using the link below. Registration opens on January 7th at 9:00 AM. https://forms.office.com/e/LJiytVra0H</p><p>Questions and inquiries: teemu.savikurki@hel.fi</p>" }, "name": { "fi": "Fun Mechanics – taidetyöpaja 7–10-vuotiaille tytöille", "sv": "Fun Mechanics – serie av konstverkstäder för flickor i åldern 7–10-år", "en": "Fun Mechanics – art workshop series for girls aged 7–10" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67936/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68035", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:732/?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:p1278/?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:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-27T13:13:17.330185Z", "last_modified_time": "2026-01-27T13:13:17.330206Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784507.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-27T12:12:45.065696Z", "last_modified_time": "2026-03-20T01:13:06.769518Z", "date_published": null, "start_time": "2026-02-14", "end_time": "2026-02-21", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Annantalon talvilomaviikolla juhlistetaan ystävyyttä ja kannustetaan olemaan kaveri jollekulle, jolla sellaista ei ole.", "sv": "Under sportlovsveckan på Annegården firar vi vänskapen och uppmuntrar till att vara en vän till den som inte har någon.", "en": "During the winter break week, Annantalo celebrates friendship and encourages you to be a friend to someone who does not have one." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/191F2F6DD0353C15417363E5F03826F2/Talviloma_Annantalossa_Emme_ole_yksin", "sv": "http://www.annantalo.fi/sv/evenemang/event/191F2F6DD0353C15417363E5F03826F2/Sportlovet_pa_Annegarden_Vi_ar_inte_ensamma_", "en": "http://www.annantalo.fi/en/events/event/191F2F6DD0353C15417363E5F03826F2/Winter_break_at_Annantalo_We_are_not_alone_" }, "description": { "fi": "<p>Annantalon talvilomaviikolla juhlistetaan ystävyyttä ja kannustetaan olemaan kaveri jollekulle, jolla sellaista ei ole.</p><p>Loman avaa lauantaina 14.2. AnnanHouse diskotapahtuma teemalla ystävyyden tahdit. Taidelauantain työpajat jäävät päivältä väliin, mutta maksuttomia työpajoja on diskotapahtumassa klo 16–19. Disko on täynnä valoa, rytmiä ja hyvää mieltä kutsuu kaikki mukaan – juuri sellaisina kuin olette. Ystävänpäivän teemavärinä on vaaleanpunainen, mutta vaaleanpunaisen ystäviä ovat kaikki muutkin värit. Pukeudu asuun, joka tuo sinulle hyvää mieltä tai lainaa pukulainaamosta itsellesi diskoasusteita.<br> <br>Lomakino kutsuu lomailevat koululaiset nauttimaan ystävyysaiheisista elokuvista! Elokuvia näytetään Annansalissa tiistaista perjantaihin 17.–20.2. klo 12.00 ja klo 14.30. Elokuviin on vapaa pääsy, eikä ennakkoilmoittautumista vaadita. Ryhmän kanssa vierailijoille on varattu klo 12 näytös ja ryhmien tulee ilmoittautua ennakkoon pääsyn varmistamiseksi. Ryhmänäytöksiin otetaan myös muita halukkaita tilan mukaan.</p><p><b>Ma 16.2. klo 12 ja 14.30 <br>Robottivahtimestari B-Ö ja Piilopelin pulma</b><br>Robotti B-Ö opastaa Piilossa-näyttelyn Piilopeliin. Peliä kannattaa pelata kaverin kanssa tai porukalla, ja opastuksissa pyrimme löytämään kaikille pelikaverin.<br>Piilopeliä voi pelata aina kun talo on auki.</p><p><b>Elokuvanäytökset</b><br>Ti 17.2. klo 12.00 (ryhmät) ja 14.30 Mielen sopukoissa 2 / Inside Out 2<br>Ke 18.2. klo 12.00 (ryhmät) ja 14.30 Nalle Puh (2011)<br>To 19.2. klo 12.00 (ryhmät) ja 14.30 Paddington seikkailee / Paddington in Peru<br>Pe 20.2. klo 12.00 (ryhmät) ja 14.30 Luca</p><p><b>Ke 18.2. klo 10–12<br>Taideleikit ystävyysteemalla</b><br>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Taideleikit on suunnattu 0–3-vuotiaille lapsille sekä heidän omalle vanhemmallensa tai aikuiselle.</p><p><b>La 21.2. klo 11–14 <br>Annantalon taidelauantai: Aarrejahti</b> <br>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään. Ei ennakkoilmoittautumista, vapaa pääsy.</p><p><b>La 21.2. klo 11 ja 14</b><br>Tehdään taidejuttuja: Kiehtovia kätköjä +<br>Tehdään taidejuttuja: Minumaailma <br>Taidetyöpajat 6–10-vuotiaalle yhdessä oman aikuisen kanssa. Ennakkoilmoittautuminen.<br>Voit ilmoittautua Tehdään taidejuttuja-työpajoihin etsimällä ne Annantalon tapahtumakalenterista: https://www.annantalo.fi/fi/tapahtumat/</p><p><b>La 21.2. klo 14 <br>Teatteri Rollo: Köpöttäjät</b><br>Teatteri Rollon sanaton esitys Köpöttäjät vievät yleisön ihmettelemään köpöttelyä, höpöttelyä, kököttelyä ja housujen lököttelyä! <br>Ikäsuositus 3-9v. Liput 10€ / 6€ ovelta tai rollo@rollo.fi</p>", "sv": "<p>Under sportlovsveckan på Annegården firar vi vänskapen och uppmuntrar till att vara en vän till den som inte har någon.</p><p>Lovet börjar lördagen den 14 februari. AnnanHouse disco på temat vänskapens takter. Konstlördagens verkstäder tar paus, men avgiftsfria verkstäder ordnas under discoevenemanget kl. 16–19. Discot är fullt av ljus, rytm och glad stämning och alla är välkomna – just sådana som ni är. Vändagens temafärg är rosa, men alla andra färger är också vänner till rosa. Ta på dig något som får dig att må bra eller låna discokläder i kostymutlåningen.<br> <br>Sportlovsbion bjuder in skolelever till filmer om vänskap. Filmer visas i Annesalen tisdag till fredag 17–20.2 kl. 12.00 och 14.30. Filmerna har fritt inträde och ingen förhandsanmälan krävs. Visningen kl. 12 är avsedd för besökare i grupp, och grupperna ska anmäla sig i förväg för att säkerställa att det finns plats. Andra intresserade kan också delta i visningen för grupper om det finns plats.</p><p>Måndag 16.2 kl. 12 och 14.30 <br>Robotvaktmästaren B-Ö och Gömspelets gåta<br>Roboten B-Ö guidar dig i Gömspelet i utställningen I gömman. Spelet ska helst spelas med en kompis eller i grupp, och under handledningen försöker vi hitta en spelkompis till alla.</p><p>Filmer:<br>Tis 17.2 kl. 12.00 (grupper) och 14.30 Insidan ut 2/Inside Out 2<br>Ons 18.2 kl. 12.00 (grupper) och 14.30 Nalle Puh (2011)<br>Tor 19.2 kl. 12.00 (grupper) och 14.30 Paddington i Peru/Paddington in Peru<br>Fre 20.2 kl. 12.00 (grupper) och 14.30 Luca</p><p>Konstlekar med vänskapstema<br>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen.</p>", "en": "<p>During the winter break week, Annantalo celebrates friendship and encourages you to be a friend to someone who does not have one.</p><p>The winter break will be kicked off on Saturday 14 February with an AnnanHouse disco event with the theme of ‘rhythms of friendship’. The Art Saturday workshops will be skipped that day, but there will be free-of-charge workshops at the disco event from 16.00 to 19.00. The disco will be full of light, rhythm and good vibes and invites everyone to join in – just as you are. The theme colour for Valentine’s Day is pink, but pink is also a friend of all other colours. Wear something that makes you feel good, or you can borrow some disco clothing from the Annantalo wardrobe.<br> <br>Holiday Cinema invites schoolchildren on their winter break to come enjoy films about friendship! The films will be screened in Annansali Hall from Tuesday to Friday 17–20 February at 12.00 and 14.30. The films are screened free of charge and no advance registration is required. The screening at 12.00 is reserved for groups, who must register in advance to ensure admission. If there is room, other people can also be admitted to the group screenings.</p><p>Monday 16 February at 12.00 and 14.30 <br>Robot caretaker B-Ö and the Hiding Game problem<br>Robot caretaker B-Ö will guide visitors to the Hiding Game featured in the Hidden exhibition. The game is best played with a friend or in a group, and we will try to find a teammate for everyone during the tours.</p><p>The films:<br>Tuesday 17 February at 12.00 (groups) and 14.30 Inside Out 2<br> Wednesday 18 February at 12.00 (groups) and 14.30 Winnie the Pooh (2011)<br> Thursday 19 February at 12.00 (groups) and 14.30 Paddington in Peru<br> Friday 20 February at 12.00 (groups) and 14.30 Luca</p><p>Art games with a friendship theme<br>These art games enrich play and provide play ideas to take home. The art games are aimed at children aged 0–3 and their own parent or adult.</p>" }, "name": { "fi": "Talviloma Annantalossa: Emme ole yksin", "sv": "Sportlovet på Annegården Vi är inte ensamma", "en": "Winter break at Annantalo: We are not alone" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68035/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67982", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:732/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494509, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T13:13:34.508022Z", "last_modified_time": "2026-01-16T13:13:34.508039Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784137.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494509/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-16T13:13:34.394122Z", "last_modified_time": "2026-03-20T01:13:06.545580Z", "date_published": null, "start_time": "2026-02-14T14:00:00Z", "end_time": "2026-02-14T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Suuren suosion saavuttanut diskotapahtuma AnnanHouse juhlistaa ystävänpäivää sekä käynnistää tulevan lomaviikon!", "sv": "Det omåttligt populära discoevenemanget AnnanHouse uppmärksammar Alla hjärtans dag och sparkar igång den kommande semesterveckan!", "en": "The hugely popular disco event AnnanHouse will celebrate Valentine’s Day and kick off the upcoming winter break week!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/17DAEBC149B760D07152BD93890B70CB/AnnanHouse_disko_-_Ystavyyden_tahdit", "sv": "http://www.annantalo.fi/sv/evenemang/event/17DAEBC149B760D07152BD93890B70CB/AnnanHouse_Disko_vanskapens_rytmer", "en": "http://www.annantalo.fi/en/events/event/17DAEBC149B760D07152BD93890B70CB/AnnanHouse_Disco_rhythms_of_friendship" }, "description": { "fi": "<p>Suuren suosion saavuttanut diskotapahtuma AnnanHouse juhlistaa ystävänpäivää sekä käynnistää tulevan lomaviikon!</p><p>AnnanHouse on koko perheen elektronisen tanssimusiikin erikoistapahtuma, joka tutustuttaa kävijät diskokulttuurin tunnelmiin. Disko on täynnä valoa, rytmiä ja hyvää mieltä. Se kutsuu kaikki mukaan – juuri sellaisina kuin olette. Diskon teemavärinä on vaaleanpunainen, mutta vaaleanpunaisen ystäviä ovat kaikki muutkin värit. Pukeudu siis asuun, joka tuo sinulle hyvää mieltä tai lainaa pukulainaamosta itsellesi ja kaverillesi diskoasusteita. Diskoillassa on myös tarjolla kasvomaalausta.</p><p>Musiikista vastaa Annantalon oma dj Nicolas Sebastien, joka tarjoilee huippumusiikkia housesta discoon. Diskoillan aikana voit myös hypätä tanssituokioihin, pysähtyä taiteilemaan lahjan ystävälle teemaan sopivissa työpajoissa ja tutustua näyttelyihimme ja Piilopeliin. Illan päättää yllätys ohjelmanumero Annantalon etupihalla.</p><p>Aikataulu <br>klo 16.00 Pukulainaamo SYDÄN avautuu ja työpajat alkavat <br>klo 16.30 Diskon ovet auki <br>klo 16.45 & klo 18.00 Fiona Fiouh’n tanssituokio ja pohjoisen vieras tanssilattialla <br>klo 17.30 Opastus Piilopeliin 1. kerroksen galleriassa <br>klo 19.00 Diskon ja työpajojen päätös <br> <br><b>OHJELMA </b> <br> <br>Työpajat ovat auki klo 16–19. Viimeiset osallistujat otetaan sisään klo 18.45. <br> <br><b>Ystävyyden valot ja värit</b></p><p>Valot ja varjot tanssivat toisen kerroksen teatteriluokassa. Nappaa ovelta taskulamppu ja astu mukaan heiluttamaan kehoasi ja luomaan mitä ihmeellisempiä valoja, värejä, varjoja ja liikkeitä. <br> <br>Työpajan toteutus: Annantalon taidekasvattajat <br> <br> <br><b>Ystävyyden tarinamaja</b></p><p>Millaisen tarinan haluaisit kertoa ystävälle tai ihanuusihmiselle? Sukella omaan soppeen, rauhalliseen sopukkaan, mukavaan majaan. Nappaa mukaan kivoja kuvia tai lorukortteja. Tarinoidaan yhdessä, jutellaan mukavia, kuunnellaan ja kerrotaan. Tarinamaja tarjoaa lapselle ja aikuiselle yhteisen lempeänleppoisan jutteluhetken kuvien, lorujen ja tarinakorttien parissa. <br> <br>Työpajan toteutus: Runoropinoita/Ulla-Maija Vanhala</p><p><b>Kuka on sinun eläinystäväsi?</b></p><p>Sanataidepajassa saat tehdä eläinystävästäsi minikirjan, johon voit kuvittaa eläimesi, kertoa siitä tietoja ja kirjoittaa halutessasi pienen tarinan. <br> <br>Työpajan toteutus: Vantaan sanataidekoulun opettajat</p><p><b>Ystävyyden muistikuvat</b></p><p>Tule tekemään ystävänpäiväkortteja kierrätysmateriaaleista! Työpajassa vanhat lehdet, kortit ja omat muistot muuntuvat luovuuden hengessä tervehdyksiksi ystäville ja rakkaille. Lapset työskentelevät pajassa itse, kaverin kanssa tai oman aikuisen tuella. <br> <br>Työpajan toteutus: Fabu Pres ja Rosamaría Bolom <br> <br><b>Kimallusnurkka</b><br> <br>Haluatko olla tiikeri, keiju vai hassu avaruusolio? Kimallusnurkassa saat kasvomaalauksen, joka muuttaa sinut lempihahmoksesi! Lisäksi on kimaltava glitterinurkka ja lasten tatuointeja, joilla loihdit diskotunnelman. Tule mukaan värien ja ilon maailmaan – täällä jokainen on diskotähti! <br> <br>Työpajan toteutus: Askelten Palo</p>", "sv": "<p>Det omåttligt populära discoevenemanget AnnanHouse uppmärksammar Alla hjärtans dag och sparkar igång den kommande semesterveckan!</p><p>AnnanHouse är ett specialevenemang med elektronisk dansmusik för hela familjen som introducerar besökarna till discokulturens stämningar. Discot är fullt av ljus, rytm och glad atmosfär. Det bjuder in alla att delta – precis som ni är. Temafärgen för discot är rosa, men också alla andra färger är vänner med färgen rosa. Ta därför på dig något som får dig att må bra eller låna discokläder till dig själv och dina kompisar i kostymutlåningen. Discokvällen bjuder också på ansiktsmålning. <br> <br>För musiken står Annegårdens egen dj Nicolas Sebastien, som bjuder på allt från house till disco. Under discokvällen kan du också delta i danssessioner, stanna upp för att skapa en present till en vän i verkstäder enligt temat samt utforska våra utställningar och spelet Piilopeli. Kvällen avslutas med överraskningsprogram på gården framför Annegården. <br> <br>Tidsschema <br>kl. 16.00 Kostymtutlåningen SYDÄN öppnar och verkstäderna börjar <br>kl. 16.30 Dörrarna till discot öppnar <br>16.45 & 18.00 Danssession med Fiona Fiouh och en gäst norrifrån på dansgolvet <br>kl. 17.30 Guidning för spelet Piilopeli i galleriet på första våningen <br>kl. 19.00 Discot och verkstäderna avslutas</p><p><b>PROGRAM</b></p><p>Workshopparna pågår kl. 16.00–19.00. De sista deltagarna släpps in kl. 18.45.</p><p><b>Vänskapens ljus och färger</b></p><p>Ljus och skuggor dansar i teatersalen. Ta en ficklampa vid dörren, kliv in och rör på kroppen för att skapa fantastiska ljus, färger, skuggor och rörelser.</p><p>Workshop ledd av konstpedagogerna vid Annantalo</p><p><b>Vänskapens berättelsehydda</b></p><p>Vilken sorts berättelse skulle du vilja berätta för dina vänner eller någon som står dig nära? Kryp in i din egen lilla vrå – ett lugnt hörn, en mysig koja. Ta del av bilder och dikter. Berätta historier, prata, lyssna och dela. Berättelsehyddan ger barn och deras föräldrar utrymme för avkopplande samtal med hjälp av bilder, dikter och berättelsekort.</p><p>Workshop av Runoropinoita / Ulla-Maija Vanhala</p><p><b>Vem är din djurvän?</b></p><p>I den här workshopen får du skapa en bok om dina djurvänner. Illustrera din bok, fyll den med information om din djurvän och lägg till en liten berättelse om du vill.</p><p>Workshop ledd av lärarna vid Vantaan sanataidekoulu</p><p><b>Vänskapens minnen</b></p><p>Skapa dina egna Alla hjärtans dag-kort med återvunnet material! I den här workshopen förvandlas gamla tidningar, kort och minnen till kreativa hälsningar för vänner och nära och kära. För barn som arbetar självständigt, tillsammans med en vän eller med hjälp av sina föräldrar.</p><p>Workshop av Fabu Press och Rosamaría Bolom</p><p><b>Glitterhörnan</b></p><p>Vill du vara en tiger, en fe eller en rolig utomjording? Få ansiktet målat i Glitterhörnan och förvandlas till din favoritfigur! Du kan också få glitter eller en barntatuering för att ladda upp inför discot. Kliv in i vår värld av färger och glädje – här får alla vara en discostjärna!</p><p>Workshop av Askelten Palo</p>", "en": "<p>The hugely popular disco event AnnanHouse will celebrate Valentine’s Day and kick off the upcoming winter break week!</p><p>AnnanHouse is an electronic dance music event for the entire family, which introduces visitors to the wonderful atmosphere that is disco culture. The disco will be full of light, rhythm and good vibes. It invites everyone to join in – just as you are. The theme colour of the event is pink, but pink is also a friend of all other colours. With that in mind, wear something that makes you feel good, or you can borrow some disco outfits for you and your friends from the Annantalo wardrobe. The disco evening will also feature face painting for those who want it. <br> <br>Annantalo’s own DJ Nicolas Sebastien will be in charge of the music, spinning top records from house to disco. During the disco evening, you can also jump into dance sessions, stop to make a gift for a friend at workshops themed according to the event, and explore our exhibitions and hiding game. The evening will end with a surprise number in the front yard of Annantalo. <br> <br>Schedule <br>16.00: The SYDÄN wardrobe opens and the workshops start <br>16.30: The disco opens <br>16.45 & 18.00: Fiona Fiouh’s dance session and a northern guest on the dance floor <br>17.30: Guided tour of the escape room in the first-floor gallery <br>19.00: The disco and workshops end</p><p><b>PROGRAMME</b> <br> <br>The workshops run from 4 PM until 7 PM. The last participants will be admitted in at 6:45 PM.</p><p><b>The Lights and Colors of Friendship</b></p><p>Lights and shadows are dancing in the theatre classroom. Grab a flashlight by the door, step in and move your body to create wonderful lights, colors, shadows, and movements. <br> <br>Workshop by the art educators of Annantalo <br> <br><b>The Story Hut of Friendship</b></p><p>What kind of story would you like to tell your friends or a special someone? Dive into your own nook, a peaceful corner, a lovely little fort. Grab some pictures and poems. Tell stories, chat, listen, and share. The story hut gives children and their parents space for relaxing chats with pictures, poems, and storytelling cards. <br> <br>Workshop by Runoropinoita/Ulla-Maija Vanhala</p><p><b>Who is your animal friend?</b></p><p>In this literary art workshop, you get to create a book about your animal friends. Illustrate your book, fill it with information about your animal friend, and include a little story if you wish. <br> <br>Workshop by the teachers of Vantaan sanataidekoulu. <br> <br><b>Memories of Friendship</b></p><p>Create your own Valentine’s Day cards using recycled materials! In this workshop, old magazines, cards, and memories are turned into creative greetings for friends and loved ones. For kids working independently, with a friend, or assisted by their parents. <br> <br>Workshop by Fabu Pres and Rosamaría Bolom <br> <br><b>Glitter Corner</b><br> <br>Would you like to be a tiger, a fairy, or a funny alien? Get your face painted in the Glitter Corner and turn into your favourite character! You can also get glittered up or get a kids’ tattoo to set yourself up for the disco. Join our world of colors and joy – everyone here gets to be a disco superstar! <br> <br>Workshop by Askelten Palo</p>" }, "name": { "fi": "AnnanHouse disko - Ystävyyden tahdit", "sv": "AnnanHouse Disko – vänskapens rytmer", "en": "AnnanHouse Disco – rhythms of friendship" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67982/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67700", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494014, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:11.851201Z", "last_modified_time": "2025-12-03T08:13:11.851218Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782440.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494014/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T08:13:11.776653Z", "last_modified_time": "2026-03-20T01:13:05.842427Z", "date_published": null, "start_time": "2026-02-14T12:00:00Z", "end_time": "2026-02-14T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Malmin sydän on yhteisöllinen ja kaikille avoin tapahtuma, jossa kutsumme kaupunkilaiset osallistuman yhteisen, kaikkia ilahduttavan yhteisteoksen luomiseen Ala-Malmin torilla.", "sv": "Malmin sydän är ett evenemang som är öppet för allmänheten och i vilket vi bjuder in stadsborna att delta i skapandet av ett kollektivt konstverk på Nedre Malms torg som ger glädje åt alla.", "en": "Heart of Malmi is a community event open to all, inviting city residents to participate in the creation of a collective work of art that brings joy to all at the Ala-Malmi Square." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1733942D0D5DB152D0E29EADBDBF6287/Malmin_Sydan_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1733942D0D5DB152D0E29EADBDBF6287/Malms_hjarta", "en": "http://www.malmitalo.fi/en/events/event/1733942D0D5DB152D0E29EADBDBF6287/Malmin_sydan_Heart_of_Malmi" }, "description": { "fi": "<p>Malmin sydän on yhteisöllinen ja kaikille avoin tapahtuma, jossa kutsumme kaupunkilaiset osallistuman yhteisen, kaikkia ilahduttavan yhteisteoksen luomiseen Ala-Malmin torilla.</p><p>Vaikka ulkona on kylmä, Malmin sydän lämmittää mieltä!</p><p>Malmin sydän -tapahtumassa rakennetaan yhteisöllinen jääteos. Osallistu jäädyttämällä kotona omat jääpalasi jäädyttämällä litra vettä esim. maitotölkissä. Voit värjätä veden vesiväreillä tai koristella jääpalan kukilla, tai millä tahansa muulla ympäristöystävällisellä tavalla. Tuo jääpala Ala-Malmin torille klo 14-17 välisenä aikana. Rakentamista organisoi ohjaaja, joka katsoo että kaikkien palat pääsevät mukaan ja rakentaminen tapahtuu turvallisesti.</p><p>Jääteoksen lisäksi ohjelmassa on Iltakorva, missä asukkaat voivat tulla juttelemaan Helsingin kaupungin työntekijöiden kanssa matalalla kynnyksellä. Voit tulla kertomaan huolesi tai esittää kysymyksiä.</p><p>Tapahtumassa tarjoillaan myös lämmintä mehua.</p><p>Vapaa pääsy</p>", "sv": "<p>Malmin sydän är ett evenemang som är öppet för allmänheten och i vilket vi bjuder in stadsborna att delta i skapandet av ett kollektivt konstverk på Nedre Malms torg som ger glädje åt alla.</p><p>Det är enkelt att delta. Du kan göra din egen isbit genom att frysa in en liter vatten i till exempel en mjölkkartong. Om du vill kan du dekorera isbiten med färger eller naturmaterial, såsom blommor eller kottar – alla naturvänliga dekorationer är välkomna!<br> <br>Ta med dig isbiten till Nedre Malms torg på vändagen, då vi samlas för att bygga isslottet. Bygget handleds och samordnas av en separat handledare som ser till att bygget utförs på ett säkert sätt och i en trevlig atmosfär.</p><p>Fritt inträde</p>", "en": "<p>Heart of Malmi is a community event open to all, inviting city residents to participate in the creation of a collective work of art that brings joy to all at the Ala-Malmi Square.</p><p>Participation is easy. You can make your own ice cube by freezing a litre of water in a milk carton, for example. If you wish, you can decorate the ice cube with colours or natural materials, such as flowers or cones - all nature-friendly decorations are welcome!<br> <br>Bring your ice cube to Ala-Malmi Square on Valentine’s Day, when we gather to build an ice castle. Building will be guided and coordinated by a separate leader, who ensures that the work runs safely and in a nice spirit.<br> <br>An atmospheric and participatory event is suitable for everyone. Welcome to create a common symbol of love for Malmi!</p><p>Free entry</p>" }, "name": { "fi": "Malmin Sydän", "sv": "Malms hjärta", "en": "Malmin sydän – Heart of Malmi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67700/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67796", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494588, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T11:13:53.400674Z", "last_modified_time": "2026-01-21T11:13:53.400690Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782826.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494588/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-21T11:13:53.302729Z", "last_modified_time": "2026-03-20T01:13:05.539339Z", "date_published": null, "start_time": "2026-02-14T11:00:00Z", "end_time": "2026-02-14T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Hei ystävät ja lomalaiset! Talviloma alkaa ja talossa on sydämellistä ja mukavaa tekemistä.", "sv": "Hej alla vänner och sportlovsfirare! Sportlovet drar igång och Stoa fylls av hjärtliga och trevliga aktiviteter.", "en": "Hi there, friends and holidaymakers! As the winter holidays begin Stoa will be filled with lovely things to do." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/1BE63786A0AA72DA3671EBE70C996789/Ystavanpaiva_Stoassa_", "sv": "http://www.stoa.fi/sv/evenemang/event/1BE63786A0AA72DA3671EBE70C996789/Alla_hjartans_dag_pa_Stoa", "en": "http://www.stoa.fi/en/events/event/1BE63786A0AA72DA3671EBE70C996789/Valentine_s_Day_at_Stoa" }, "description": { "fi": "<p>Hei ystävät ja lomalaiset! Talviloma alkaa ja talossa on sydämellistä ja mukavaa tekemistä.</p><p>Stoassa puuhaillaan ystävänpäivänä monenlaisen maksuttoman toiminnan parissa.</p><p>Lisätunnelmaa ystävänpäivään tuovat Pikku Papun Orkesteri ja Teatteri Rollo – liput esityksiin löytyvät lippu.fi-palvelusta.</p><p>Klo 13 ja 15 Pikku Papun aakkoslorut. Liput: 11,10€ / 7,10€ <br>klo 14 Rollo: Köpöttäjät. Liput: 11,10€ / 7,10€</p><p>klo 13-16 maksuttomia työpajoja<br> <br>Toivon sateenkaari <br>Mitkä asiat tuovat sinulle iloa elämässä ja mistä tulee toiveikas olo? Askartele kierrätyslangoista ja pahvista oma toivon sateenkaari! Ohjaaja: Reetta Huhta<br> <br>Glitter-tatuoinnit<br>Kimalletta, tuiketta ja säihkettä, tämä väliaikainen koristus tehdään muovittomalla glitterillä ja laittaa posket loistamaan. Tule ottamaan kimaltava tatuointi vaikka yhdessä ystävän kanssa! Ohjaaja: Greta Salonen<br> <br>Villit paperikukat<br>Pajassa luodaan fantastisia värikkäitä paperikukkia. Tee kukka tai useampi ilahduttamaan ystävää tai itseäsi! Ohjaaja: Chloé Mahy-Hulkko</p><p>Karnevaalin värit (klo 13-15)<br>Työpaja kutsuu lapsia pukusuunnittelun maailmaan ja Andien karnevaalin Auringon Voima - Inti Ch’amampi -tansseissa käytettyjen asujen ja naamioiden tunnelmaan. Työpajassa herätetään karnevaalihahmot eloon värittämisen avulla. Työpaja on osa Auringon voima -näyttelyä Stoan galleriassa.<br>Kielet: espanja, englanti, suomi</p><p>Kirjavinkkionginta!<br>Tule onkimaan ystävyysteemainen kuvakirjavinkki perheen yhteisiin lukuhetkiin kirjaston lastenosastolta.</p>", "sv": "<p>Hej alla vänner och sportlovsfirare! Sportlovet drar igång och Stoa fylls av hjärtliga och trevliga aktiviteter.</p><p>I Stoas lobby kan man prova på olika slags avgiftsfria aktiviteter. Föreställningar med inträdesavgift skapar stämning under familjedagen: Pikku Papun Orkesteris bokstavsramsor och Teatteri Rollos föreställning Köpöttäjät.</p><p>Kl. 13 och 15 Pikku Papus bokstavsramsor<br>kl. 14 Teatteri Rollo: Köpöttäjät<br>kl. 13–16 avgiftsfria verkstäder</p><p>Programmet preciseras senare.</p>", "en": "<p>Hi there, friends and holidaymakers! As the winter holidays begin Stoa will be filled with lovely things to do.</p><p>The Stoa lobby is the place to be for a variety of fun free-of-charge activities. Performances subject to a fee add to the atmosphere of Family Day: alphabet rhymes by Pikku Papun Orkesteri and the Köpöttäjät (Plodders) performance by Teatteri Rollo.</p><p>13.00 and 15.00 Pikku Papu’s alphabet rhymes<br>14.00 Teatteri Rollo: Köpöttäjät<br>13.00–16.00 free workshops</p><p>Further details to be announced later.</p>" }, "name": { "fi": "Ystävänpäivä Stoassa", "sv": "Alla hjärtans dag på Stoa", "en": "Valentine's Day at Stoa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67796/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67965", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p1278/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494619, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-26T09:12:43.168496Z", "last_modified_time": "2026-01-26T09:12:43.168508Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783833.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494619/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-26T09:12:43.035908Z", "last_modified_time": "2026-03-20T01:13:04.804607Z", "date_published": null, "start_time": "2026-02-14T08:30:00Z", "end_time": "2026-02-14T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Vietetään mukavaa ja lämminhenkistä päivää ystävyyden ja yhdessäolon merkeissä. Ota ystävä mukaan tai piipahda yksin ja nauti ystävänpäivän tunnelmasta.", "sv": "Vi tillbringar en trevlig och hjärtlig dag i vänskapens och samvarons tecken. Ta med dig en vän eller kom ensam och njut av vändagsstämningen!", "en": "Join us for a nice and warm day of friendship and togetherness. Bring a friend or stop by alone and enjoy the Valentine’s Day atmosphere!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/798639F71AAC307A5FE3926069D25F80/Ystavanpaiva_Kanneltalossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/798639F71AAC307A5FE3926069D25F80/Vandagen_pa_Gamlasgarden", "en": "http://www.kanneltalo.fi/en/events/event/798639F71AAC307A5FE3926069D25F80/Valentine_s_Day_at_Kanneltalo" }, "description": { "fi": "<p>Vietetään mukavaa ja lämminhenkistä päivää ystävyyden ja yhdessäolon merkeissä. Ota ystävä mukaan tai piipahda yksin ja nauti ystävänpäivän tunnelmasta.</p><p>Tervetuloa juhlimaan ystävänpäivää Kanneltaloon! Luvassa mukavaa ohjelmaa, rentoa yhdessäoloa ja tekemistä kaikenikäisille! Tilaisuus on kaikille avoin ja maksuton.</p><p><b>Ohjelmassa:<b></p><p>klo 10.30–12.30 ja 14–16<br>Taidepaja Kipinän ystävänpäiväkorttityöpajat Kanneltalon aulassa</p><p>klo 10.30 ja klo 13.30<br>Kirjastossa satuhetket, joissa luetaan Anne Vaskon kuvittamia kirjoja</p><p>klo 12.30<br>Baan thai Finland Ry:n thaimaalaiset tanssiesitykset kahvilan stagella</p><p>klo 13 alkaen<br>Anne Vaskon Mummot!-näyttely ja Mummolakahvit Galleriassa (100 hengelle)</p><p>klo 13–14<br>Red Nose Companyn klovnit viihdyttävät kahvittelijoita Galleriassa</p><p>klo 13–15<br>Anarkistimarttojen neulegraffiti-työpaja aulassa - Tuo halutessasi omat jämälankasi mukanasi</p><p>klo 13–16<br>DIY corner: Tee ystävyysaiheinen runo kirjaston poistokirjoista Kahvilassa</p><p>klo 14<br>Inkerinsuomalainen kansanlauluyhtye Sudenmorsiamet Kahvilan stagella</p><p>Klo 15.30-16<br>Esitysmaistiainen kahvilan stagella: Yksin vai yhdessä? Soledad – Yksinolla avaa yksinäisyyden kerroksia ja sukeltaa sen katkeransuloiseen haikeuteen flamencon, jazzin ja latinalaisamerikkalaisten sävelten kautta. Kahvilan stagella nähdään palkittu tanssija-koreografi Katja Lundén ja monialaisuudellaan häikäisevä tanssija-laulaja Janne Marja-aho sekä loistava muusikko Janne Halonen.</p><p>Kanneltalossa 4.3. esitettävässä Soledad – Yksinolla näyttämöteoksessa syleillään suomalaista ja espanjalaista sielunmaisemaa, ja kohdataan yksinäisyys riemulla, raivolla ja rakkaudella. Kiitetty teos sai ensi-illan Kanneltalossa syksyllä 2025. <br>Nappaa edullinen ystävänpäivänkampanjan lippu jo tänään Kanneltalon lipunmyyntipisteeltä!</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>Vi tillbringar en trevlig och hjärtlig dag i vänskapens och samvarons tecken. Ta med dig en vän eller kom ensam och njut av vändagsstämningen!</p><p>Det blir mångsidigt program och aktiviteter för alla åldrar – verkstäder, föreställningar, kreativa aktiviteter och avkopplande samvaro.</p><p>Evenemanget är öppet för alla och kostnadsfritt. Vi ses på Gamlasgården på vändagen!</p><p><b>Programmet består bland annat av:</b><br>kl. 10.30–12.30 och 14–16<br>Taidepaja Kipinäs vändagskortverkstäder i Gamlasgårdens lobby.</p><p>från kl. 13<br>Anne Vaskos utställning Mummot! och mormorskaffe i Galleriet (för 100 personer).</p><p>kl. 13–14<br>Clownerna i Red Nose Company underhåller kaffedrickarna i Galleriet.</p><p>kl. 13–15<br>Anarkistmarthornas stickgraffiti-verkstad i lobbyn – Ta med egna restgarner om du vill.</p><p>kl. 13–16<br>DIY corner: skapa en dikt på temat vänskap av avskrivna biblioteksböcker på Gamlasgårdens kafé.</p><p>kl. 10.30 och kl. 13.30<br>Bibliotekets sagostunder</p><p>En dansföreställning av den ingermanländska folksånggruppen Sudenmorsiamet och Baan Thai Finland på kaféscenen.</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>Join us for a nice and warm day of friendship and togetherness. Bring a friend or stop by alone and enjoy the Valentine’s Day atmosphere!</p><p>We will have a wide range of things to do for all ages – workshops, performances, creative activities and just hanging out.<br>The event is open to everyone and free of charge. See you at Kanneltalo on Valentine’s Day!</p><p><b>The programme includes activities such as:</b><br>10.30–12.30 and 14.00–16.00<br>Taidepaja Kipinä’s Valentine’s Day card workshops in the Kanneltalo lobby.</p><p>From 13.00 onwards<br>Anne Vaskon Mummot! exhibition and granny-themed coffee service in the Gallery (for 100 participants).</p><p>13.00–14.00<br>Red Nose Company’s clowns will entertain those enjoying coffee in the Gallery.</p><p>13.00–15.00<br>Anarkistimartat ry’s knitwork graffiti workshop in the lobby – Bring your own leftover yarn if you wish.</p><p>13.00–16.00<br>DIY corner: create a friendship-themed poem from discarded library books in the Kanneltalo café.</p><p>10.30 and 13.30<br>Story times at the library</p><p>Ingrian Finnish folk song group Sudenmorsiamet and a dance performance by Baan Thai Finland on the Café Stage.</p><p>Entry to the events is free of charge!</p>" }, "name": { "fi": "Ystävänpäivä Kanneltalossa", "sv": "Vändagen på Gamlasgården", "en": "Valentine’s Day at Kanneltalo" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67965/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67300", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p28435/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494063, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:50.790004Z", "last_modified_time": "2025-12-04T12:12:50.790021Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780863.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494063/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:50.681537Z", "last_modified_time": "2026-03-20T01:13:04.242718Z", "date_published": null, "start_time": "2026-02-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.", "en": "Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/00095BDA69132433D760278E3753603F/Global_Club_Nights_Taiwania_Chico_Matada_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/00095BDA69132433D760278E3753603F/Global_Club_Nights_Taiwania_Chico_Matada_", "en": "http://www.kanneltalo.fi/en/events/event/00095BDA69132433D760278E3753603F/Global_Club_Nights_Taiwania_Chico_Matada_" }, "description": { "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Klubi tarjoilee mukaansa tempaavan musiikin lisäksi myös muuta mukavaa lapsille sopivaa ohjelmaa. Aloitetaan viikonloppu yhdessä!</p><p><b>Taiwania</b><br>Taiwania on musiikkiyhtye, jonka ovat muodostaneet Bunun-laulaja Kiwa Takishusungan, tsugaru-shamisen-soittaja Zuiko (Ni Jui Hsin) ja viulisti Huang Tai Yuan.</p><p>Nimensä yhtye on saanut Taiwanille alkuperäisestä puulajista, joka symboloi syviä juuria, ylöspäin kasvua sekä monimuotoisuuden harmonista rinnakkaiseloa.</p><p>Työssään Taiwania keskittyy Taiwanin alkuperäiskansojen musiikkiin ja punoo siihen improvisaatiota luoden äänimaailman, joka heijastaa Taiwanin monimuotoisuutta ja syvää kulttuurista yhteyttä maahan.</p><p><b>Chico Matada: Kuya Kaya</b><br>Chico Matada on Mosambikissa syntynyt rumpali, säveltäjä ja bändinjohtaja, jonka musiikki yhdistää afrikkalaiset rytmiperinteet moderniin jazziin, elokuvallisiin sovituksiin ja improvisaatioon. Suomessa asuva Matada ammentaa erityisesti Mosambikin Ndau-heimon Ndokodo-musiikista ja yhdistää sen modernin jazzin harmoniaan.</p><p>Hänen uusi projektinsa, Kuya Kaya, on kolmen vuoden työn tulos. Helmikuussa 2026 Eclipse Recordsin julkaisemalla albumilla esiintyy kansainvälinen joukko muusikoita – pianisti Nikita Rafaelov, kitaristi Hector Lepe, kontrabasisti Juuso Rinta, trumpetisti Tomi Nikku sekä vierailevia laulajia ja soittajia. Matadan kiertuebändissä soittavat Matadan, Rafaelovin ja Lepen lisäksi basisti Melik Turunen ja trumpetisti Rafa Postel.</p><p>Kuya Kaya esittelee Matadan ainutlaatuisen musiikillisen kielen, jossa syvät juuret ja moderni ilmaisu kohtaavat. Musiikki on samalla kertaa meditatiivista ja rytmisesti sykkivää – kutsu pysähtyä, kuunnella ja tuntea.</p><p>Global Club Nights -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen ja siltojen rakentaminen kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja Kanneltalon kanssa.</p><p>Tapahtumilla pyritään rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Kulttuurikeskus Kanneltalo tuottaa Global Club Nights (GCN) -illat yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman ja Maailman musiikin keskuksen kanssa.</p><p><b>Ystävällinen kortti </b></p><p>Maksuton ja kaikille avoin työpaja. Luodaan kortteja erikoisella tekniikalla: rei'ittämällä! Kortilla voi ilahduttaa ystävää tai itseään. Hauskaa ja piikikästä puuhaa! <br>Pienimmät lapset ovat tervetulleita työpajaan oman aikuisen seurassa. <br>Paikka: Kanneltalon galleria <br>Aika: klo 18–20</p><p><b>Global Club Night </b> <br>Paikka: Kahvilan Stage<br>klo 18-20.30<br>Vapaa pääsy!</p>", "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p>De avgiftsfria klubbkvällarna börjar tidigt, så barn är också välkomna i sällskap av en vuxen. Låt oss inleda veckoslutet tillsammans!</p><p><b>Taiwania</b><br>Taiwania är en musikensemble bildad av Bunun-sångaren Kiwa Takishusungan, Tsugaru-shamisen-artisten Zuiko (Ni Jui Hsin) och violinisten Huang Tai Yuan.<br>Namnet kommer från ett träd som är ursprungligt för Taiwan, en symbol för djupa rötter, uppåtväxande styrka och harmonisk samexistens i mångfald.<br>I sitt arbete fokuserar Taiwania på musik från Taiwans ursprungsfolk och väver in improvisation för att skapa ett ljudlandskap som speglar Taiwans mångfald och dess rika kulturella band till landet.</p><p><b>Chico Matada: Kuya Kaya</b><br>Chico Matada är en trumslagare, kompositör och bandledare född i Moçambique, vars musik förenar afrikanska rytmtraditioner med modern jazz, filmiska arrangemang och improvisation. Matada bor i Finland och hämtar särskilt inspiration från Ndokodo-musiken hos Ndau-folket i Moçambique, som han kombinerar med modern jazzharmonik.</p><p>Hans nya projekt, Kuya Kaya, är resultatet av tre års arbete. Albumet, som ges ut av Eclipse Records i februari 2026, framförs av en multinationell grupp musiker – pianisten Nikita Rafaelov, gitarristen Hector Lepe, kontrabasisten Juuso Rinta, trumpetaren Tomi Nikku samt gästande sångare och instrumentalister. I Matadas turnéband spelar, förutom Matada, Rafaelov och Lepe, även basgitarristen Melik Turunen och trumpetaren Rafa Postel.<br>Kuya Kaya presenterar Matadas unika musikaliska språk där djupa rötter och modern uttrycksform möts. Musiken är samtidigt meditativ och rytmiskt pulserande – en inbjudan att stanna upp, lyssna och känna.</p><p>Syftet med klubbarna är att skapa en trygg, inkluderande och kreativ miljö och bygga broar mellan alla musikälskare och deras gemenskaper. Global Club Nights har producerats i samarbete med avdelningen för global musik vid Sibelius-Akademin och Gamlasgården.</p><p>Evenemangen syftar till att bygga broar mellan alla musikälskare och deras gemenskaper. Kulturcentret Gamlasgården producerar Global Club Nights (GCN)-kvällarna i samarbete med Sibelius-Akademins utbildningsprogram Global Music.</p>", "en": "<p>Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music.</p><p>The free club nights start early, so children are welcome when accompanied by an adult. In addition to exciting music, the club also offers other fun activities suitable for children. Let's start the weekend together!</p><p><b>Taiwania</b><br>“Taiwania” is a music ensemble formed by Bunun singer Kiwa Takishusungan, Tsugaru Shamisen performer Zuiko (Ni Jui Hsin), and violinist Huang Tai Yuan. <br>Named after a tree native to Taiwan, a symbol of deep roots, upward growth, and harmonious coexistence in diversity. Centering their work on the music of Taiwan’s Indigenous peoples and weaving in improvisation, Taiwania create a sound that embodies Taiwan’s diversity and its rich cultural connection to the land.</p><p><b>Chico Matada: Kuya Kaya</b><br>Chico Matada is a Mozambique-born drummer, composer and bandleader whose music combines African rhythmic traditions with modern jazz, cinematic arrangements and improvisation. Matada, who lives in Finland, draws in particular from the Ndokodo music of the Mozambican Ndau tribe, combining it with modern jazz harmony.</p><p>His new project, Kuya Kaya, is the result of three years of work. The album, to be released by Eclipse Records in February 2026, features a multinational group of musicians - pianist Nikita Rafaelov, guitarist Hector Lepe, double bassist Juuso Rinta, trumpeter Tomi Nikku, as well as guest vocalists and instrumentalists. Matada's touring band includes Matada, Rafaelov and Lepe, as well as bass guitarist Melik Turunen and trumpeter Rafa Postel.</p><p>Kuya Kaya presents Matada's unique musical language, where deep roots and modern expression meet. The music is simultaneously meditative and rhythmically vibrant – an invitation for the listener to stop, listen, and feel.</p><p>Global Club Nights aims to create a safe, inclusive and creative environment and build bridges between all music lovers and their communities. Global Club Nights has been produced in cooperation with the Sibelius Academy’s Global Music Department and Kanneltalo.</p><p>The events aim to build bridges between all music lovers and their communities. Cultural Centre Kanneltalo produces Global Club Nights (GCN) evenings in cooperation with the Sibelius Academy’s Global Music study programme and the World Music Centre.</p><p><b>Friendly card</b> <br> <br>Free and open workshop for everyone. We will create cards using a special technique: hole punching! You can make a friend or yourself happy with a card. A fun and spiky activity! <br>Child friendly workshop is free and open to everyone. The smallest children are welcome to the workshop accompanied by their own adult. <br>Location: Kanneltalo gallery <br>Time: 6–8 p.m.</p><p>Global Club Night at Kanneltalo Café stage <br>Time: 6-8.30 pm</p>" }, "name": { "fi": "Global Club Nights: Taiwania & Chico Matada", "sv": "Global Club Nights: Taiwania & Chico Matada", "en": "Global Club Nights: Taiwania & Chico Matada" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67300/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67792", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494374, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-05T13:13:35.973112Z", "last_modified_time": "2026-01-05T13:13:35.973126Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782817.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494374/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-05T13:13:35.830016Z", "last_modified_time": "2026-03-20T01:13:03.603674Z", "date_published": null, "start_time": "2026-02-13T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Nyt innostutaan aakkosista!", "sv": "Vi leker med alfabetet!", "en": "Let's get excited about the ABCs!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/62EC9A7CBBF11E02A1EE98083D6481F1/Pikku_Papun_aakkoslorut", "sv": "http://www.stoa.fi/sv/evenemang/event/62EC9A7CBBF11E02A1EE98083D6481F1/Pikku_Papus_bokstavsramsor", "en": "http://www.stoa.fi/en/events/event/62EC9A7CBBF11E02A1EE98083D6481F1/Pikku_Papu_s_alphabet_rhymes" }, "description": { "fi": "<p>Nyt innostutaan aakkosista!</p><p>Pikku Papun Orkesteri ja kuvittaja Liisa Kallio ovat julkaisseet uuden Pikku Papun aakkoslorut-kokonaisuuden, joka sisältää uuden laulun jokaiselle suomen kielen aakkoselle. Tule mukaan laulamaan ja leikkimään kanssamme, ja seuraa miten laulut kääntyvät kuviksi Liisa Kallion taidokkaissa käsissä!</p><p>Pikku Papun Orkesteri on lastenmusiikkia säveltävä ja esittävä yhtye, joka on jo vuodesta 2012 lähtien ilahduttanut kaikenikäisiä lapsia ja aikuisia ympäri Suomen. Orkesterin laulut syntyvät yhteistyössä kirjailija-kuvittaja Liisa Kallion kanssa.</p><p>Orkesterin energinen esiintyminen, akustiset soittimet, moniääninen laulu ja eri tyylilajeilla leikittelevät sovitukset ovat sulattaneet niin pienten kuin varttuneempienkin kuulijoiden sydämet. Pikku Papun laulut ovat tulleet monille tutuiksi Yle TV2:n Pikku Kakkosesta, Musarullaa-konserttisarjasta ja nyt uusimpana Pikku Papun aakkoset- tv-sarjasta, jossa leikitellään 29 jakson verran Pikku Papun aakkoslaulujen parissa.</p><p>Paikka: teatterisali <br>Kesto: noin 40 min</p><p>Konsertti on suunnattu päiväkoti- ja kouluryhmille. Ilmoita ryhmäsi kultus.hel.fi 13.1. alkaen. Huom! Osallistujat arvotaan ilmoittautuneiden joukosta.</p>", "sv": "<p>Vi leker med alfabetet!</p><p>Pikku Papun Orkesteri och illustratören Liisa Kallio har lanserat en ny helhet med Pikku Papus bokstavsramsor, som innehåller en ny sång för varje bokstav i det finska alfabetet. Kom och sjung och lek med oss, och följ med hur sångerna blir till bilder i Liisa Kallios skickliga händer!</p><p>Pikku Papun Orkesteri är en grupp som skriver och uppträder med barnmusik till glädje för barn och vuxna över hela Finland sedan 2012. Orkesterns sånger skapas i samarbete med författaren och illustratören Liisa Kallio.</p><p>Orkesterns energiska uppträdande, akustiska musikinstrument, mångstämmiga sånger och arrangemang som leker med olika stilar har fått såväl småttingarnas som de äldre åhörarnas hjärtan att smälta. Många känner till Pikku Papus sånger från Lilla tvåan på Yle TV2, konsertserien Musarullaa och nu senast tv-serien Pikku Papun aakkoset, där man leker med Pikku Papus bokstavssånger i 29 avsnitt.</p><p>Plats: teatersalen <br>Längd: cirka 40 min. <br>Språk: lätt finska</p><p>Gruppanmälan till fredagens konsert på kultus.hel.fi från 13.1. Obs! Deltagarna lottas ut bland dem som anmält sig</p>", "en": "<p>Let's get excited about the ABCs!</p><p>Pikku Papun Orkesteri and Illustrator Liisa Kallio have published a new ‘Pikku Papun aakkoslorut’ set of rhymes that includes a new song for each letter in the Finnish alphabet. Come along to sing and play and watch how songs are turned into images in the skilled hands of Liisa Kallio!</p><p>Pikku Papun Orkesteri is a children's music ensemble that has been delighting children and adults of all ages all over Finland since 2012. The group’s songs are written in collaboration with Author-Illustrator Liisa Kallio.</p><p>The orchestra's energetic performances, acoustic instruments, multi-part vocals and playful arrangements across different styles have won the hearts of both young and older listeners. Many people are familiar with Pikku Papu’s songs from Yle TV2's Pikku Kakkonen children’s show, the Musarullaa concert series and now the latest Pikku Papun aakkoset TV series, which contains 29 episodes of Pikku Papu's alphabet songs.</p><p>Location: theatre hall <br>Duration: approximately 40 minutes <br>Language: easy Finnish</p><p>Group registration for Friday's concert from 13 January onwards at kultus.hel.fi. Please note! The participants will be selected by drawing lots from among those who have registered</p>" }, "name": { "fi": "Pikku Papun aakkoslorut – ilmoittautuminen kultus.hel.fi", "sv": "Pikku Papus bokstavsramsor – Pikku Papun Orkesteri och illustratören Liisa Kallio", "en": "Pikku Papu’s alphabet rhymes – Pikku Papun Orkesteri and Illustrator Liisa Kallio" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67792/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67433", "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: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:613/?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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494008, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:06.668311Z", "last_modified_time": "2025-12-03T08:13:06.668333Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781260.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494008/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T08:13:06.573650Z", "last_modified_time": "2026-03-20T01:13:02.913981Z", "date_published": null, "start_time": "2026-02-12T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.", "sv": "Aldrig ensam berättar om tiden strax före utbrottet av andra världskriget, då man lever i en mörk tid i Europa och Finland tar emot flyktingar från Tyskland och Österrike.", "en": "Never Alone tells the story of the eve of World War II, when Europe is in a dark time and Finland accepts refugees from Germany and Austria." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/10DC9920BBAFE5BF5DB1C80BA4DDB108/Yleison_suosikit_Ei_koskaan_yksin_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/10DC9920BBAFE5BF5DB1C80BA4DDB108/Publikens_favoriter_Aldrig_ensam_12_", "en": "http://www.malmitalo.fi/en/events/event/10DC9920BBAFE5BF5DB1C80BA4DDB108/Audience_Favourites_Never_Alone_12_" }, "description": { "fi": "<p>Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.</p><p>Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun. Se on koskettava kertomus toisen maailmansodan synkistä vuosista, jolloin Eurooppa horjui kaaoksen partaalla ja Suomi sai osakseen pakolaisvirran Saksasta ja Itävallasta.</p><p>Tarinan keskiössä on suomalainen liikemies ja hyväntekijä Abraham Stiller, joka omistaa elämänsä inhimilliselle auttamiselle. Hän taistelee epätoivoisesti pelastaakseen Suomeen paenneet ihmiset varmalta kuolemalta keskitysleireillä, mutta joutuu samalla kohtaamaan aikansa raadolliset poliittiset realiteetit.</p><p>Kesto: 85 min<br>Ikäraja: K-12<br>Vapaa pääsy!</p>", "sv": "<p>Aldrig ensam berättar om tiden strax före utbrottet av andra världskriget, då man lever i en mörk tid i Europa och Finland tar emot flyktingar från Tyskland och Österrike.</p><p>I filmens centrum står den finländske affärsmannen och välgöraren Abraham Stiller som hjälper flyktingar. Han gör allt han kan för att hjälpa de judiska flyktingar som kommer till Finland och som skickas till koncentrationslägret i Auschwitz. Filmen berättar deras historia.<br>Regi: Klaus Härö<br>I rollerna: Ville Virtanen, Nina Hukkinen, Rony Herman, Naemi Latzer, Kari Hietalahti, Peter Kanerva, Hannu-Pekka Björkman</p><p>Längd: 85 min.<br>Språk: finska, textning: svenska</p>", "en": "<p>Never Alone tells the story of the eve of World War II, when Europe is in a dark time and Finland accepts refugees from Germany and Austria.</p><p>At the heart of helping refugees is Finnish businessman and philanthropist Abraham Stiller. He will do everything he can to help Jewish refugees who have come to Finland and are being handed over from Finland to a concentration camp in Auschwitz. The film tells their story.<br>Director: Klaus Härö<br>Cast: Ville Virtanen, Nina Hukkinen, Rony Herman, Naemi Latzer, Kari Hietalahti, Peter Kanerva, Hannu-Pekka Björkman</p><p>Duration: 85 min<br>Language: Finnish, subtitles: Swedish</p>" }, "name": { "fi": "Yleisön suosikit: Ei koskaan yksin (12)", "sv": "Publikens favoriter: Aldrig ensam (12)", "en": "Audience Favourites: Never Alone (12)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67433/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67929", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494462, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-13T09:13:42.958438Z", "last_modified_time": "2026-01-13T09:13:42.958453Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783591.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494462/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-13T09:13:42.814958Z", "last_modified_time": "2026-03-20T01:13:02.785664Z", "date_published": null, "start_time": "2026-02-12T11:30:00Z", "end_time": "2026-02-12T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule viettämään ystävänpäiväviikkoa Kanneltaloon." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/603DA81B2AC6C875830BF08A92BF135E/Mummodisco", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/603DA81B2AC6C875830BF08A92BF135E/Mummodisco", "en": "http://www.kanneltalo.fi/en/events/event/603DA81B2AC6C875830BF08A92BF135E/Mummodisco" }, "description": { "fi": "<p>Tule viettämään ystävänpäiväviikkoa Kanneltaloon.</p><p>Mummodisko Kanneltalon Galleriassa ystävänpäivän aatonaattona 12.1. klo 13.30-14.45</p><p>Lämpimästi tervetuloa Kanneltalon Galleriaan Anne Vaskon Mummot!-näyttelyn yleisöavajaisiin, joita juhlitaan Mummodiscon merkeissä.</p><p>Tapahtuman juontaa näyttelijä Tuija Piepponen, DJ:nä toimii Mikko Haapalainen.</p><p>Paikka: Kanneltalo <br>Maksuton <br>Kieli: suomi, englanti</p>" }, "name": { "fi": "Mummodisco", "sv": "Mummodisco", "en": "Mummodisco" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67929/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68049", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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: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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494679, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-29T09:12:45.664604Z", "last_modified_time": "2026-01-29T09:12:45.664618Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785184.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494679/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-29T09:12:45.548303Z", "last_modified_time": "2026-03-20T01:13:02.635757Z", "date_published": null, "start_time": "2026-02-12T10:00:00Z", "end_time": "2026-02-12T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tuolijumppaa, seniorisirkusta, kukkakimppupaja, teatteriesitys, terveyspiste, digineuvontapiste ja paljon muuta – lämpimästi tervetuloa mukaan!", "sv": "Stolgymnastik, seniorcirkus, blombukettsverkstad, teaterföreställning, hälsopunkt, digital rådgivningspunkt och mycket mer – du är varmt välkommen med!", "en": "Chair gymnastics, senior circus, bouquet workshop, theatre performance, health point, digital helpdesk and much more – you are warmly welcome to join us!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6CDC8D2AF9F95F92A73DB5A585E9C4A6/Ystavallisyyden_iltapaiva_ikaihmisille", "sv": "http://www.stoa.fi/sv/evenemang/event/6CDC8D2AF9F95F92A73DB5A585E9C4A6/Vanlig_eftermiddag_for_aldre_", "en": "http://www.stoa.fi/en/events/event/6CDC8D2AF9F95F92A73DB5A585E9C4A6/Afternoon_of_friendliness_for_older_people_" }, "description": { "fi": "<p>Tuolijumppaa, seniorisirkusta, kukkakimppupaja, teatteriesitys, terveyspiste, digineuvontapiste ja paljon muuta – lämpimästi tervetuloa mukaan!</p><p>Ohjelmassa:<br>Klo 12 Tuolijumppa<br>Klo 12.30 Psykologi, psykoterapeutti Pirkko Lahti puhuu aiheesta \"Ystävällinen kohtaaminen – mielen hyvinvointia\"<br>Klo 13 Seniorisirkus-työpaja, opettajana Enrique Salas<br>Klo 13.15–14 Kukkakimppupaja – tule tekemään itsellesi kukkakimppu hävikkikukista<br>Klo 14 Q-yhteisöteatterin esitys</p><p>Lisäksi tapahtumassa on:</p><p>- Terveyspiste, jossa voit mm. mittauttaa verenpaineesi<br>- Digineuvontapiste, josta saat tietoa mm. Whatsappin käytöstä<br>- Toimijoiden esittelypisteitä<br>- Ystävällinen onnenpyörä, josta voit voittaa kivoja palkintoja</p><p>Tapahtuman järjestää Itä-Helsingin ikäverkostoon kuuluvien toimijoiden joukko.</p>", "sv": "<p>Stolgymnastik, seniorcirkus, blombukettsverkstad, teaterföreställning, hälsopunkt, digital rådgivningspunkt och mycket mer – du är varmt välkommen med!</p><p>Program: <br>Kl. 12 Stolgymnastik <br>Kl. 12.30 Psykolog, psykoterapeut Pirkko Lahti talar om ”Ett vänligt möte – sinnets välbefinnande” <br>Kl. 13 Seniorcirkus demo med Enrique Salas<br>Kl. 13.15–14 Blombukettsverkstad – kom och bind en egen blombukett av svinnblommor <br>Kl. 14.00 Q-samteaterns föreställning <br> <br>I evenemanget finns också: <br> <br>- En hälsopunkt där du bland annat kan få ditt blodtryck mätt <br>- En digital rådgivningspunkt, där du får information om hur du bland annat använder Whatsapp <br>- Aktörernas presentationspunkter <br>- Ett vänligt lyckohjul där du kan vinna fina priser<br> <br>Evenemanget ordnas av en grupp aktörer från Östra Helsingfors äldrenätverk.</p>", "en": "<p>Chair gymnastics, senior circus, bouquet workshop, theatre performance, health point, digital helpdesk and much more – you are warmly welcome to join us!</p><p>Programme: <br>12.00 Chair gymnastics <br>12.30 Psychologist, Psychotherapist Pirkko Lahti will speak on the topic of “Friendly encounters – mental wellbeing” <br>13.00 Senior circus workshop with Enrique Salas<br>13.15–14.00 Bouquet workshop – come and make your own bouquet from surplus flowers <br>14.00 Performance by Q-teatteri’s community theatre <br> <br>The event will also feature:<br> <br>- a health point where you can e.g. have your blood pressure measured <br>- a digital helpdesk where you can get information on e.g. how to use WhatsApp <br>- operators' presentation stands <br>- a friendly wheel of fortune where you can win nice prizes. <br> <br>The event is organised by a group of operators from the East Helsinki Age Network.</p>" }, "name": { "fi": "Ystävällisyyden iltapäivä ikäihmisille – Ystävällisten viikko", "sv": "Vänlig eftermiddag för äldre", "en": "Afternoon of friendliness for older people" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68049/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67422", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494062, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:50.376928Z", "last_modified_time": "2025-12-04T12:12:50.376946Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781123.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494062/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:50.292397Z", "last_modified_time": "2026-03-20T01:13:02.498796Z", "date_published": null, "start_time": "2026-02-12", "end_time": "2026-03-07", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Mummot! juhlistaa mummoutta kaikissa sen muodoissa – iloa, lämpöä, rohkeutta ja yhdessäoloa.", "sv": "Mummot! hyllar mormorskapet i alla dess former – glädje, värme, mod och samvaro.", "en": "‘Mummot!’ (Grandmas!) celebrates grandmotherhood in all its forms – joy, warmth, courage and togetherness." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9991904BBBB0257941121AB7100AD4EF/Anne_Vasko_Mummot_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9991904BBBB0257941121AB7100AD4EF/Anne_Vasko_Mummot_Mormodrar_", "en": "http://www.kanneltalo.fi/en/events/event/9991904BBBB0257941121AB7100AD4EF/Anne_Vasko_Mummot_" }, "description": { "fi": "<p>Mummot! juhlistaa mummoutta kaikissa sen muodoissa – iloa, lämpöä, rohkeutta ja yhdessäoloa.</p><p>Anne Vaskon gallerianäyttely perustuu kirjailija Reetta Niemelän ja kuvittaja Anne Vaskon Mummojen kirjaan! (S&S 2023), jossa mummot marssivat esiin iloisina, uteliaina ja täynnä elämänvoimaa.</p><p>Mummot! tuo kirjan maailman seinille: väriä, huumoria ja elämäniloa, mummouden monimuotoisuutta ja tahdonvoimaa. Täällä mummot keinuvat, kukkivat ja kulkevat kohti vapautta – myssyt vinossa, sydän avoinna.</p><p><b>Anne Vasko</b> on kuvittaja ja lastenkirjailija, joka on luonut visuaalisen maailman lukuisiin niin omiin kuin muiden kirjoittamiin lastenkirjoihin. Vaskon taide ammentaa arjen havainnoista, lapsen uteliaisuudesta ja ympäröivän yhteiskunnan ilmiöistä. Hän rakentaa maailmoja, joissa kuvalla on tarinan kaltainen kaari. Vaskon kuvissa yhdistyvät käsinpiirretty ja digitaalinen ilmaisu, joissa tekstuuri, rytmi ja muoto rakentavat tarinaa yhtä vahvasti kuin sanat. Hänen maailmansa on tunnistettavan poeettinen – samalla herkkä ja humoristinen, usein myös ympäristön ja luonnon merkityksiä pohtiva.</p><p>Vasko on kuvittanut ja kirjoittanut lukuisia palkittuja lastenkirjoja, joista monet ovat käännetty useille kielille. Hänen teoksiaan on julkaissut mm. Etana Editions, Tammi, WSOY, Schildts& Söderstöms, Nubeocho, Art House.</p>", "sv": "<p>Mummot! hyllar mormorskapet i alla dess former – glädje, värme, mod och samvaro.</p><p>Anne Vaskos galleriutställning baserar sig på boken Mummojen kirja (S&S 2023) av författaren Reetta Niemelä och illustratören Anne Vasko, där mormödrarna marscherar fram som glada, nyfikna och fulla av livskraft.</p><p>Mummot! visar bokens värld på väggarna: färg, humor och livsglädje, mormorsrollens mångfald och viljestyrka. Här gungar mormödrarna, de blommar och går mot friheten – med mössorna på sned och öppna hjärtan.</p><p>Anne Vasko är en illustratör och barnboksförfattare som har skapat visuella världar till många barnböcker, både egna och andras. Vaskos konst är inspirerad av vardagliga iakttagelser, ett barns nyfikenhet och fenomen i det omgivande samhället.</p><p>Hon bygger upp världar där bilden har en båge, som en berättelse. Vaskos bilder kombinerar handtecknade och digitala uttryck, där texturen, rytmen och formen bygger upp berättelsen lika starkt som orden. Hennes värld är karakteristiskt poetisk – samtidigt känslig och humoristisk, och reflekterar ofta över miljöns och naturens betydelse.</p><p>Vasko har illustrerat och skrivit ett stort antal prisbelönta barnböcker, varav många har översatts till flera språk. Hennes verk har getts ut av bland andra Etana Editions, Tammi, WSOY, Schildts& Söderstöms, Nubeocho och Art House.</p><p>Fritt inträde.</p>", "en": "<p>‘Mummot!’ (Grandmas!) celebrates grandmotherhood in all its forms – joy, warmth, courage and togetherness.</p><p>Anne Vasko's gallery exhibition is based on the book ‘Mummojen kirja!’ (S&S 2023) by author Reetta Niemelä and illustrator Anne Vasko, where grandmothers come out happy, curious and full of vitality.</p><p>‘Mummot!’ decorates the walls of the gallery with the world of books: colour, humour and joie de vivre, the diversity and willpower of grandmotherhood. Here, grandmothers sway, bloom and walk towards freedom – beanies askew, hearts open.</p><p>Anne Vasko is an illustrator and children's author who has created a visual world for numerous children's books, both her own and those written by others. Vasko's art is inspired by everyday observations, a child's curiosity and the phenomena of the society around them.</p><p>She builds worlds where images have story-like arcs. Vasko's images combine hand-drawn and digital expression, where texture, rhythm and form build a story as potently as words. Her world is recognisably poetic – at once sensitive and humorous, often reflecting on the meaning of the environment and nature.</p><p>Vasko has illustrated and written numerous award-winning children's books, many of which have been translated into several languages. Her works have been published by Etana Editions, Tammi, WSOY, Schildts & Söderstöms, Nubeocho and Art House, to name a few.</p><p>Free entry.</p>" }, "name": { "fi": "Anne Vasko: Mummot!", "sv": "Anne Vasko: Mummot! (Mormödrar!)", "en": "Anne Vasko: Mummot!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67422/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }