Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&keyword=yso%3Ap4354&page=5
{ "meta": { "count": 6933, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=6", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=4" }, "data": [ { "id": "kulke:67656", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/taika-box-louhi/", "sv": "https://www.lippu.fi/artist/taika-box-louhi/", "en": "https://www.lippu.fi/artist/taika-box-louhi/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493955, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-28T16:13:01.413282Z", "last_modified_time": "2025-11-28T16:13:01.413296Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782300.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493955/?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-11-28T16:13:01.317564Z", "last_modified_time": "2026-03-20T01:13:21.065926Z", "date_published": null, "start_time": "2026-02-28T12: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": "Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.", "sv": "Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.", "en": "Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6E516266DA62B02730A7393C88626487/TaikaBox_Louhi", "sv": "http://www.annantalo.fi/sv/evenemang/event/6E516266DA62B02730A7393C88626487/TaikaBox_Louhi", "en": "http://www.annantalo.fi/en/events/event/6E516266DA62B02730A7393C88626487/TaikaBox_Louhi" }, "description": { "fi": "<p>Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.</p><p>Ikääntynyt Louhi-mummo palaa muistoissaan lapsuuteen ja aikaan, jolloin hänestä tuli Pohjolan peloton suojelija ja taikavoimien haltija. Tanssin, musiikin, laulujen, loitsujen ja interaktiivisen projisoinnin siivin avautuvat tarut Tuonelan Joutsenesta, Hiiden Hirvestä ja Suomuhauesta – kolmesta maagisesta olennosta, jotka palkitsivat Louhi-tytön rohkeuden voimilla, joilla hän kohosi lopulta Pohjolan kansan johtajaksi.<br> <br>Kalevalaisten myyttien sykkeestä kumpuava esitys elävöittää ikiaikaisen perinteen ja tuo sen lähelle nykypäivän katsojaa.</p><p>Kieli: suomi <br>Kesto: 35min<br>Ikäsuositus: 4-10 v<br> <br>Koreografia ja ohjaus: Tanja Råman<br>Tanssi, tarinankerronta ja laulut: Marjo Kiukaanniemi<br>Ääni-, valo- ja interaktiivinen toteutus: John Collingswood<br>Tuotanto: TaikaBox ry<br>Teos on luotu Pohjois-Pohjanmaan rahaston tuella</p>", "sv": "<p>Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.</p><p>Gamla mormor Louhi återvänder i sina minnen till barndomen och den tid när hon blev Pohjolas orädda beskyddare och bärare av magiska krafter. Med hjälp av dans, musik, sånger, trollformler och interaktiva projektioner berättas historierna om Tuonelas svan, Hiisis älg och jättegäddan – tre magiska varelser som belönade flickan Louhis mod med krafter som till slut gjorde henne till ledare för Pohjolas folk.<br> <br>Föreställningen, som är inspirerad av Kalevala-myterna, väcker den gamla traditionen till liv och för den nära den moderna publiken.</p><p>Språk: finska <br>Längd: 35 min.<br>Åldersrekommendation: 6–12 år<br> <br>Koreografi och regi: Tanja Råman<br>Dans, berättelser och sånger: Marjo Kiukaanniemi<br>Ljud, ljus och interaktiv implementering: John Collingswood<br>Produktion: TaikaBox ry<br>Verket har skapats med stöd av Norra Österbottens fond</p>", "en": "<p>Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself.</p><p>A grandmother revisits her childhood and tells us about the time when she was gifted with magical powers that would change her life forever. Through dance, music, songs, spells, and interactive projections, she shares stories of the Swan of Tuonela, the Elk of the Forest, and the Finnish Pike – three magical beings who rewarded young Louhi’s courage with powers that would ultimately help her rise to become the leader of the people of Pohjola.</p><p>Inspired by characters from the epic Kalevala, and pulsing with mythic energy, the performance brings ancient traditions to life and makes them resonate for today’s audience.</p><p>Language: Finnish<br>Duration: 35 min<br>Age recommendation: 6-12</p><p>Choreography & Direction: Tanja Råman<br>Dance, Storytelling & Singing: Marjo Kiukaanniemi<br>Sound, Lighting & Interactive Design: John Collingswood<br>Production: TaikaBox ry<br>The work was created with support from Finnish Cultural Foundation – Northern Ostrobothnia</p>" }, "name": { "fi": "TaikaBox: Louhi", "sv": "TaikaBox: Louhi", "en": "TaikaBox: Louhi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67656/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67655", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/taika-box-louhi/", "sv": "https://www.lippu.fi/artist/taika-box-louhi/", "en": "https://www.lippu.fi/artist/taika-box-louhi/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493954, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-28T16:13:01.048571Z", "last_modified_time": "2025-11-28T16:13:01.048586Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782299.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493954/?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-11-28T16:13:00.957519Z", "last_modified_time": "2026-03-20T01:13:20.929819Z", "date_published": null, "start_time": "2026-02-28T10: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": "Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.", "sv": "Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.", "en": "Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FAF83F649F07B33974BEC4AF680D73D6/TaikaBox_Louhi", "sv": "http://www.annantalo.fi/sv/evenemang/event/FAF83F649F07B33974BEC4AF680D73D6/TaikaBox_Louhi", "en": "http://www.annantalo.fi/en/events/event/FAF83F649F07B33974BEC4AF680D73D6/TaikaBox_Louhi" }, "description": { "fi": "<p>Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.</p><p>Ikääntynyt Louhi-mummo palaa muistoissaan lapsuuteen ja aikaan, jolloin hänestä tuli Pohjolan peloton suojelija ja taikavoimien haltija. Tanssin, musiikin, laulujen, loitsujen ja interaktiivisen projisoinnin siivin avautuvat tarut Tuonelan Joutsenesta, Hiiden Hirvestä ja Suomuhauesta – kolmesta maagisesta olennosta, jotka palkitsivat Louhi-tytön rohkeuden voimilla, joilla hän kohosi lopulta Pohjolan kansan johtajaksi.<br> <br>Kalevalaisten myyttien sykkeestä kumpuava esitys elävöittää ikiaikaisen perinteen ja tuo sen lähelle nykypäivän katsojaa.</p><p>Kieli: suomi <br>Kesto: 35min<br>Ikäsuositus: 4-10 v<br> <br>Koreografia ja ohjaus: Tanja Råman<br>Tanssi, tarinankerronta ja laulut: Marjo Kiukaanniemi<br>Ääni-, valo- ja interaktiivinen toteutus: John Collingswood<br>Tuotanto: TaikaBox ry<br>Teos on luotu Pohjois-Pohjanmaan rahaston tuella</p>", "sv": "<p>Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.</p><p>Gamla mormor Louhi återvänder i sina minnen till barndomen och den tid när hon blev Pohjolas orädda beskyddare och bärare av magiska krafter. Med hjälp av dans, musik, sånger, trollformler och interaktiva projektioner berättas historierna om Tuonelas svan, Hiisis älg och jättegäddan – tre magiska varelser som belönade flickan Louhis mod med krafter som till slut gjorde henne till ledare för Pohjolas folk.<br> <br>Föreställningen, som är inspirerad av Kalevala-myterna, väcker den gamla traditionen till liv och för den nära den moderna publiken.</p><p>Språk: finska <br>Längd: 35 min.<br>Åldersrekommendation: 6–12 år<br> <br>Koreografi och regi: Tanja Råman<br>Dans, berättelser och sånger: Marjo Kiukaanniemi<br>Ljud, ljus och interaktiv implementering: John Collingswood<br>Produktion: TaikaBox ry<br>Verket har skapats med stöd av Norra Österbottens fond</p>", "en": "<p>Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself.</p><p>A grandmother revisits her childhood and tells us about the time when she was gifted with magical powers that would change her life forever. Through dance, music, songs, spells, and interactive projections, she shares stories of the Swan of Tuonela, the Elk of the Forest, and the Finnish Pike – three magical beings who rewarded young Louhi’s courage with powers that would ultimately help her rise to become the leader of the people of Pohjola.</p><p>Inspired by characters from the epic Kalevala, and pulsing with mythic energy, the performance brings ancient traditions to life and makes them resonate for today’s audience.</p><p>Language: Finnish<br>Duration: 35 min<br>Age recommendation: 6-12</p><p>Choreography & Direction: Tanja Råman<br>Dance, Storytelling & Singing: Marjo Kiukaanniemi<br>Sound, Lighting & Interactive Design: John Collingswood<br>Production: TaikaBox ry<br>The work was created with support from Finnish Cultural Foundation – Northern Ostrobothnia</p>" }, "name": { "fi": "TaikaBox: Louhi", "sv": "TaikaBox: Louhi", "en": "TaikaBox: Louhi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67655/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67449", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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" }, { "@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": 1494073, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T13:12:55.557187Z", "last_modified_time": "2025-12-04T13:12:55.557203Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781375.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-04T13:12:55.448375Z", "last_modified_time": "2026-03-20T01:13:20.706968Z", "date_published": null, "start_time": "2026-02-28T10:00:00Z", "end_time": "2026-02-28T14: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": "Koko perheen viittomakielinen ilmaistapahtuma Helsingissä!", "sv": "Gratis evenemang på teckenspråk för hela familjen i Helsingfors!", "en": "A free event for the whole family in sign language in Helsinki!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/54DC97FDBB7DFBEFE1EBEF669E0B2672/HELsign_2026_Viittomakielinen_kulttuuritapahtuma", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/54DC97FDBB7DFBEFE1EBEF669E0B2672/HELsign_2026_Ett_kulturevenemang_pa_teckensprak", "en": "http://www.kanneltalo.fi/en/events/event/54DC97FDBB7DFBEFE1EBEF669E0B2672/HELsign_2026_Cultural_event_in_sign_language" }, "description": { "fi": "<p>Koko perheen viittomakielinen ilmaistapahtuma Helsingissä!</p><p>Tervetuloa viettämään hauska päivä 28.2.2026 klo 12–16 Kanneltalolle.</p><p>Luvassa on mielenkiintoista tekemistä ja ohjelmaa kaikenikäisille. Tule mukaan nauttimaan tunnelmasta ja keväisestä menosta!</p><p>Kanneltalon ovet avataan klo 11.30 ja ohjelmaa on tarjolla klo 12–16</p><p>Saliohjelma<br>Klo 12.15 Miguel Peltomaa & Sara Väre - Live Podcast<br>Klo 13.00 Teatteriryhmä Valokalat<br>Klo 14.30 Deaf Lions haastattelu<br>Klo15.00 Tietovisa</p><p>Vapaa pääsy</p><p>Yhteistyössä Humak, Kanneltalo, Kuurojen Liittoja ja Viittovat perheet ry.</p>", "sv": "<p>Gratis evenemang på teckenspråk för hela familjen i Helsingfors!</p><p>Välkommen till en rolig dag på Gamlasgården den 28 februari 2026 kl. 12–16.<br>Där utlovas intressanta aktiviteter och program för alla åldrar. Kom med och njut av stämningen och våren!</p><p>Kanneltalon ovet avataan klo 11.30 ja ohjelmaa on tarjolla klo 12–16</p><p>Saliohjelma<br>Klo 12.15 Miguel Peltomaa & Sara Väre - Live Podcast<br>Klo 13.00 Teatteriryhmä Valokalat<br>Klo 14.30 Deaf Lions haastattelu<br>Klo15.00 Tietovisa</p><p>Yhteistyössä Humak, Kanneltalo, Kuurojen Liittoja ja Viittovat perheet ry.</p><p>Fritt inträde</p>", "en": "<p>A free event for the whole family in sign language in Helsinki!</p><p>Come along and spend a fun day on 28 February 2026 from 12.00–16.00 at Kanneltalo.<br>There will be interesting activities and a programme for all ages. Come along and enjoy the atmosphere and spring activities!</p><p>Kanneltalon ovet avataan klo 11.30 ja ohjelmaa on tarjolla klo 12–16</p><p>Saliohjelma<br>Klo 12.15 Miguel Peltomaa & Sara Väre - Live Podcast<br>Klo 13.00 Teatteriryhmä Valokalat<br>Klo 14.30 Deaf Lions haastattelu<br>Klo15.00 Tietovisa</p><p>Yhteistyössä Humak, Kanneltalo, Kuurojen Liittoja ja Viittovat perheet ry.</p><p>Free entry</p>" }, "name": { "fi": "HELsign 2026 – Viittomakielinen kulttuuritapahtuma", "sv": "HELsign 2026 – Ett kulturevenemang på teckenspråk", "en": "HELsign 2026 – Cultural event in sign language" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67449/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67497", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?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": 1494645, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-27T08:13:00.233390Z", "last_modified_time": "2026-01-27T08:13:00.233410Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781604.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494645/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-27T08:13:00.144327Z", "last_modified_time": "2026-03-20T01:13:20.595976Z", "date_published": null, "start_time": "2026-02-28T09:00:00Z", "end_time": "2026-02-28T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/230927E0E7D4B562A3BD87B0143473B8/Annantalon_taidelauantai_Nastat_kortit", "sv": "http://www.annantalo.fi/sv/evenemang/event/230927E0E7D4B562A3BD87B0143473B8/Annegardens_konstlordag", "en": "http://www.annantalo.fi/en/events/event/230927E0E7D4B562A3BD87B0143473B8/Annantalo_Art_Saturday_Pin_Me_a_Picture" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Nastat kortit</b></p><p>Pistele reikiä paperikorttiin luodaksesi kauniita pitsimäisiä kuvioita. Rauhallista ja piikikästä puuhaa!<br> <br>Alle kouluikäisille aikuisen kanssa.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaa Chloé Mahy.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p>Gör hål i ett papperskort för att skapa vackra spetsliknande mönster. En rogivande och lite stickig aktivitet!<br> <br>För barn under 7 år i sällskap av en vuxen.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen led av Chloé Mahy.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Pin Me a Picture</b></p><p>Punch holes on a paper card to create beautiful lacey patterns. Soothing and prickly business!</p><p>For kids under 7 with an adult.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by Chloé Mahy.</p><p>A warm welcome to Annantalo on Saturdays!</p>" }, "name": { "fi": "Annantalon taidelauantai: Nastat kortit", "sv": "Annegårdens konstlördag", "en": "Annantalo Art Saturday: Pin Me a Picture" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67497/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67957", "has_user_editable_resources": false, "location": null, "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: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/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": 1494434, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-09T13:12:57.639011Z", "last_modified_time": "2026-01-09T13:12:57.639021Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783780.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494434/?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-09T13:12:57.498447Z", "last_modified_time": "2026-03-20T01:13:20.288726Z", "date_published": null, "start_time": "2026-02-28T08:30:00Z", "end_time": "2026-06-06T08: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": "Tervetuloa viettämään kiireetöntä vapaa aikaa tanssin, leikin ja lähiluonnon parissa! Työpaja on suunnattu noin 5-6 v. lapsille oman aikuisen kanssa.", "sv": "Välkommen till en avkopplande stund med dans, lek och den lokala naturen!", "en": "Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2609E0526F6FA0AE1C7FA55D8A74EC29/Tanssi-_ja_luontotyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2609E0526F6FA0AE1C7FA55D8A74EC29/Dans-_och_naturverkstader", "en": "http://www.vuotalo.fi/en/events/event/2609E0526F6FA0AE1C7FA55D8A74EC29/Dance_and_nature_workshops" }, "description": { "fi": "<p>Tervetuloa viettämään kiireetöntä vapaa aikaa tanssin, leikin ja lähiluonnon parissa! Työpaja on suunnattu noin 5-6 v. lapsille oman aikuisen kanssa.</p><p>Arjen keskellä on välillä vaikea löytää hetkiä vain olla yhdessä ja leikkiä tai vaikkapa mennä tutustumaan lähimetsään. Työpajat tarjoavat mahdollisuuden eri-ikäisille ihmisille, aikuisille ja lapsille, viettää kiireetöntä ja vapaata aikaa ja olla yhdessä tanssin, leikin ja lähiluonnon parissa.</p><p>Työpajoissa keskitytään erityisesti leikkimiseen ja yhdessä liikkumiseen tanssillisten tehtävien kautta. Työpajojen aiheet kulkevat mielikuvitus leikeistä tarinoihin, peleihin, metsässä kulkemiseen ja tutkimiseen yhdessä.</p><p>Työpajat ovat osa Koneen säätiön rahoittamaa Helsingin yliopiston Tietämisen taide -hanketta, jossa kehitämme yhteistyössä tutkijoiden ja tanssitaiteilijoiden kanssa kehollisia, intuitiivisia ja kuvitteellisia tietämisen tapoja. Hanke kehittää demokraattisia ja osallistavia menetelmiä, joissa leikki, kehollisuus ja luonto ovat tärkeitä tietämisen lähteitä.</p><p>Osallistuessasi työpajoihin sinulla on halutessasi mahdollisuus olla mukana tutkimuksessa. Lisätietoja tutkimuksesta: anna.rainio@helsinki.fi</p><p>Työpaja ei vaadi aikaisempaa tanssitaustaa tai -kokemusta. Työpajat ohjataan suomeksi ja tarvittaessa käytämme myös ruotsin ja englannin kieltä.</p><p>Työpajat pidetään Vuotalolla Pikkusalissa sekä Vuosaaren alueen lähimetsissä. Työpajoihin ilmoittautuneet saavat tarkemmat tiedot kokoontumispaikoista ennen kurssin alkua.</p><p>Ilmoittautuminen tapahtuu sähköpostitse osoitteeseen<br>artofknowing2025@gmail.com</p><p>Ilmoittautumisen yhteydessä kerro:<br>Osallistujien nimi / nimet<br>Puhelinnumero<br>Ryhmä, johon osallistutaan</p><p>Vapaa pääsy</p><p>Työpajoja ohjaavat tanssitaiteilija-tanssipedagogi Jenni Koistinen ja tanssitaiteilija-koreografi Virva Talonen.</p><p>Tule mukaan lauantaisin klo 10.30–11.45!<br>Päivämäärät: 28.2., 7.3., 14.3., 21.3., 28.3., 11.4., 18.4., 25.4., 9.5., 16.5, 23.5 ja 6.6.2026.</p><p>HUOM! Kaikkien ryhmien yhteinen viimeinen kerta on poikkeuksellisesti la 6.6.26 klo 10.30–12.</p><p>Järjestämme tanssi- ja luontotyöpajoja myös 7-12-vuotiaille lapsille oman aikuisen kanssa torstaisin 26.2.–28.5. klo 17.30–18.15 sekä kaikenikäisille torstaisin 26.2.–28.5. klo 18.30-19.45.</p>", "sv": "<p>Välkommen till en avkopplande stund med dans, lek och den lokala naturen!</p><p>Mitt i vardagen kan det vara svårt att hitta stunder för att bara vara tillsammans och leka eller gå på upptäcktsfärd i den lokala skogen. Verkstäderna erbjuder en möjlighet för personer i olika åldrar, vuxna och barn, att umgås fritt och utan stress, dansa, leka och njuta av den lokala naturen.</p><p>I verkstäderna fokuserar vi särskilt på lek och att röra oss tillsammans genom dansuppgifter. Verkstädernas teman rör sig från fantasilekar till berättelser, spel, promenader i naturen och gemensamt utforskande.</p><p>Verkstäderna ingår i Helsingfors universitets projekt Tietämisen taide, som finansieras av Kone-stiftelsen och där vi utvecklar kroppsliga, intuitiva och tänkta sätt att veta i samarbete med forskare och danskonstnärer. Projektet utvecklar demokratiska och inkluderande metoder där lek, kroppslighet och natur är viktiga källor till kunskap.</p><p>När du deltar i verkstäderna har du möjlighet att delta i forskningsprojektet om du vill. Mer information om forskningsprojektet: anna.rainio@helsinki.fi <br>Kursen kräver ingen tidigare bakgrund inom dans eller erfarenhet av dans. Kursen leds på finska, och vid behov använder vi också svenska och engelska.</p><p>Verkstäderna hålls i Lilla salen i Nordhuset och i närliggande skogar i Nordsjö.</p><p>De anmälda till verkstäderna får närmare information om var de ska samlas innan kursen börjar.</p><p>LEDARE FÖR VERKSTÄDERNA: Verkstäderna leds av danskonstnären och -pedagogen Jenni Koistinen samt danskonstnären och koreografen Virva Talonen.</p><p><b>Anmälan sker via e-post till adressen:</b> artofknowing2025@gmail.com</p><p>I samband med anmälan, vänligen uppge:<br>Deltagarens namn / deltagarnas namn<br>Telefonnummer<br>Den grupp som man anmäler sig till</p><p>Vi ordnar dans- och naturworkshops även för deltagare i alla åldrar på torsdagar 26.2.–28.5. kl. 18.30–19.45 samt för barn i åldern 5–6 år tillsammans med en egen vuxen på lördagar 28.2.–6.6. kl. 10.30–11.45.</p><p>OBS! Alla gruppers gemensamma sista träff hålls undantagsvis lördagen den 6.6.26 kl. 10.30–12.</p>", "en": "<p>Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!</p><p>In the busyness of everyday life, it can be hard to find moments to just be together and play, or perhaps go explore the local forest. These workshops offer an opportunity for people of all ages, adults and children alike, to spend some unhurried and free time together, dancing, playing and enjoying the local nature.</p><p>The workshops will focus particularly on playing and moving together through dance-related activities. The workshop themes range from imagination play to stories, games, walking in the woods and exploring things together.</p><p>The workshops are part of the University of Helsinki’s Art of Knowing project, funded by the Kone Foundation, in which we work with researchers and dance artists to develop bodily, intuitive and imaginary ways of knowing. The project develops democratic and participatory methods in which play, bodiliness and nature are important sources of knowing.</p><p>If you participate in the workshops, you can also take part in a survey if you wish. For more information on the survey, please contact: anna.rainio@helsinki.fi</p><p>No previous dance background or experience is required for attending the course. The course is instructed in Finnish, and we also speak Swedish and English where necessary.</p><p>The workshops will be held in the Small Hall room of Vuotalo and in the nearby forests of Vuosaari.</p><p>Those registered for the workshops will receive more information about the assembly places before the course starts.</p><p>WORKSHOP INSTRUCTORS: The workshops will be instructed by dance artist and educator Jenni Koistinen and dance artist and choreographer Virva Talonen.</p><p>Registration takes place by email to the following address:</p><p><b>When registering, please provide: </b><br>artofknowing2025@gmail.com</p><p>Participant’s name / participants’ names<br>Phone number<br>The group you are registering for</p><p>We also organise dance and nature workshops for all ages on Thursdays from 26 Feb to 28 May, from 6:30 pm to 7:45 pm, as well as workshops for 5–6-year-old children together with their own adult on Saturdays from 28 Feb to 6 June, from 10:30 am to 11:45 am.</p><p>NOTE! The final session for all groups will exceptionally be held together on Saturday 6 June 2026, from 10:30 am to 12:00 pm.</p>" }, "name": { "fi": "Tanssi- ja luontotyöpajat – Aikuiset ja n. 5-6 v.lapset", "sv": "Dans- och naturverkstäder – Vuxna och barn 5–6 år.", "en": "Dance and nature workshops – Adults and children aged 5–6" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67957/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67662", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493953, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-28T16:13:00.636473Z", "last_modified_time": "2025-11-28T16:13:00.636494Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782306.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493953/?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-11-28T16:13:00.531590Z", "last_modified_time": "2026-03-20T01:13:19.143957Z", "date_published": null, "start_time": "2026-02-27T08: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": "Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.", "sv": "Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.", "en": "Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/00EC701CB875C5E24665F7CCB6AC4279/TaikaBox_Louhi", "sv": "http://www.annantalo.fi/sv/evenemang/event/00EC701CB875C5E24665F7CCB6AC4279/TaikaBox_Louhi", "en": "http://www.annantalo.fi/en/events/event/00EC701CB875C5E24665F7CCB6AC4279/TaikaBox_Louhi" }, "description": { "fi": "<p>Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.</p><p>Ikääntynyt Louhi-mummo palaa muistoissaan lapsuuteen ja aikaan, jolloin hänestä tuli Pohjolan peloton suojelija ja taikavoimien haltija. Tanssin, musiikin, laulujen, loitsujen ja interaktiivisen projisoinnin siivin avautuvat tarut Tuonelan Joutsenesta, Hiiden Hirvestä ja Suomuhauesta – kolmesta maagisesta olennosta, jotka palkitsivat Louhi-tytön rohkeuden voimilla, joilla hän kohosi lopulta Pohjolan kansan johtajaksi.<br> <br>Kalevalaisten myyttien sykkeestä kumpuava esitys elävöittää ikiaikaisen perinteen ja tuo sen lähelle nykypäivän katsojaa.</p><p>Kieli: suomi <br>Kesto: 35min<br>Ikäsuositus: 6–12 v<br> <br>Koreografia ja ohjaus: Tanja Råman<br>Tanssi, tarinankerronta ja laulut: Marjo Kiukaanniemi<br>Ääni-, valo- ja interaktiivinen toteutus: John Collingswood<br>Tuotanto: TaikaBox ry<br>Teos on luotu Pohjois-Pohjanmaan rahaston tuella</p><p>Esitys on suunnattu kouluryhmille, paikkavaraukset 27.1. klo 8 alkaen Kultuksesta: https://kultus.hel.fi/fi</p>", "sv": "<p>Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.</p><p>Gamla mormor Louhi återvänder i sina minnen till barndomen och den tid när hon blev Pohjolas orädda beskyddare och bärare av magiska krafter. Med hjälp av dans, musik, sånger, trollformler och interaktiva projektioner berättas historierna om Tuonelas svan, Hiisis älg och jättegäddan – tre magiska varelser som belönade flickan Louhis mod med krafter som till slut gjorde henne till ledare för Pohjolas folk.<br> <br>Föreställningen, som är inspirerad av Kalevala-myterna, väcker den gamla traditionen till liv och för den nära den moderna publiken.</p><p>Språk: finska <br>Längd: 35 min.<br>Åldersrekommendation: 6–12 år<br> <br>Koreografi och regi: Tanja Råman<br>Dans, berättelser och sånger: Marjo Kiukaanniemi<br>Ljud, ljus och interaktiv implementering: John Collingswood<br>Produktion: TaikaBox ry<br>Verket har skapats med stöd av Norra Österbottens fond</p>", "en": "<p>Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself.</p><p>A grandmother revisits her childhood and tells us about the time when she was gifted with magical powers that would change her life forever. Through dance, music, songs, spells, and interactive projections, she shares stories of the Swan of Tuonela, the Elk of the Forest, and the Finnish Pike – three magical beings who rewarded young Louhi’s courage with powers that would ultimately help her rise to become the leader of the people of Pohjola.</p><p>Inspired by characters from the epic Kalevala, and pulsing with mythic energy, the performance brings ancient traditions to life and makes them resonate for today’s audience.</p><p>Language: Finnish<br>Duration: 35 min<br>Age recommendation: 6-12</p><p>Choreography & Direction: Tanja Råman<br>Dance, Storytelling & Singing: Marjo Kiukaanniemi<br>Sound, Lighting & Interactive Design: John Collingswood<br>Production: TaikaBox ry<br>The work was created with support from Finnish Cultural Foundation – Northern Ostrobothnia</p><p>The performance is aimed at school groups, reservations are available from 8 am on January 27th: https://kultus.hel.fi/fi</p>" }, "name": { "fi": "TaikaBox: Louhi – koululaisryhmille", "sv": "TaikaBox: Louhi – for skolgrupper", "en": "TaikaBox: Louhi – for school groups" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67662/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67661", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493952, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-28T16:13:00.291451Z", "last_modified_time": "2025-11-28T16:13:00.291472Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782305.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493952/?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-11-28T16:13:00.177412Z", "last_modified_time": "2026-03-20T01:13:18.974983Z", "date_published": null, "start_time": "2026-02-27T07: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": "Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.", "sv": "Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.", "en": "Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D4E3A0CC8406FC87A191124B527C0F06/TaikaBox_Louhi", "sv": "http://www.annantalo.fi/sv/evenemang/event/D4E3A0CC8406FC87A191124B527C0F06/TaikaBox_Louhi", "en": "http://www.annantalo.fi/en/events/event/D4E3A0CC8406FC87A191124B527C0F06/TaikaBox_Louhi" }, "description": { "fi": "<p>Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.</p><p>Ikääntynyt Louhi-mummo palaa muistoissaan lapsuuteen ja aikaan, jolloin hänestä tuli Pohjolan peloton suojelija ja taikavoimien haltija. Tanssin, musiikin, laulujen, loitsujen ja interaktiivisen projisoinnin siivin avautuvat tarut Tuonelan Joutsenesta, Hiiden Hirvestä ja Suomuhauesta – kolmesta maagisesta olennosta, jotka palkitsivat Louhi-tytön rohkeuden voimilla, joilla hän kohosi lopulta Pohjolan kansan johtajaksi.<br> <br>Kalevalaisten myyttien sykkeestä kumpuava esitys elävöittää ikiaikaisen perinteen ja tuo sen lähelle nykypäivän katsojaa.</p><p>Kieli: suomi <br>Kesto: 35min<br>Ikäsuositus: 6–12 v<br> <br>Koreografia ja ohjaus: Tanja Råman<br>Tanssi, tarinankerronta ja laulut: Marjo Kiukaanniemi<br>Ääni-, valo- ja interaktiivinen toteutus: John Collingswood<br>Tuotanto: TaikaBox ry<br>Teos on luotu Pohjois-Pohjanmaan rahaston tuella</p><p>Esitys on suunnattu kouluryhmille, paikkavaraukset 27.1. klo 8 alkaen Kultuksesta: https://kultus.hel.fi/fi</p>", "sv": "<p>Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.</p><p>Gamla mormor Louhi återvänder i sina minnen till barndomen och den tid när hon blev Pohjolas orädda beskyddare och bärare av magiska krafter. Med hjälp av dans, musik, sånger, trollformler och interaktiva projektioner berättas historierna om Tuonelas svan, Hiisis älg och jättegäddan – tre magiska varelser som belönade flickan Louhis mod med krafter som till slut gjorde henne till ledare för Pohjolas folk.<br> <br>Föreställningen, som är inspirerad av Kalevala-myterna, väcker den gamla traditionen till liv och för den nära den moderna publiken.</p><p>Språk: finska <br>Längd: 35 min.<br>Åldersrekommendation: 6–12 år<br> <br>Koreografi och regi: Tanja Råman<br>Dans, berättelser och sånger: Marjo Kiukaanniemi<br>Ljud, ljus och interaktiv implementering: John Collingswood<br>Produktion: TaikaBox ry<br>Verket har skapats med stöd av Norra Österbottens fond</p>", "en": "<p>Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself.</p><p>A grandmother revisits her childhood and tells us about the time when she was gifted with magical powers that would change her life forever. Through dance, music, songs, spells, and interactive projections, she shares stories of the Swan of Tuonela, the Elk of the Forest, and the Finnish Pike – three magical beings who rewarded young Louhi’s courage with powers that would ultimately help her rise to become the leader of the people of Pohjola.</p><p>Inspired by characters from the epic Kalevala, and pulsing with mythic energy, the performance brings ancient traditions to life and makes them resonate for today’s audience.</p><p>Language: Finnish<br>Duration: 35 min<br>Age recommendation: 6-12</p><p>Choreography & Direction: Tanja Råman<br>Dance, Storytelling & Singing: Marjo Kiukaanniemi<br>Sound, Lighting & Interactive Design: John Collingswood<br>Production: TaikaBox ry<br>The work was created with support from Finnish Cultural Foundation – Northern Ostrobothnia</p><p>The performance is aimed at school groups, reservations are available from 8 am on January 27th: https://kultus.hel.fi/fi</p>" }, "name": { "fi": "TaikaBox: Louhi – koululaisryhmille", "sv": "TaikaBox: Louhi – för skolgrupper", "en": "TaikaBox: Louhi – for school groups" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67661/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67251", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "10 € / 6 €", "sv": "10 € / 6 €", "en": "10 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494286, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T12:14:09.348503Z", "last_modified_time": "2025-12-22T12:14:09.348518Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778836.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494286/?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-22T12:14:09.196791Z", "last_modified_time": "2026-03-20T01:13:13.262884Z", "date_published": null, "start_time": "2026-02-21T12: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": "Teatteri Rollon 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ä!", "sv": "I Teateri Rollos Köpöttäjät får publiken träffa Traskarna!", "en": "Köpöttäjät by Theatre Rollo lets the audience experience plodding, yapping, squatting and plenty of baggy trousers!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8D5CECB0AB82C009164F3999261E8852/Teatteri_Rollo_Kopottajat", "sv": "http://www.annantalo.fi/sv/evenemang/event/8D5CECB0AB82C009164F3999261E8852/Teatteri_Rollo_Kopottajat", "en": "http://www.annantalo.fi/en/events/event/8D5CECB0AB82C009164F3999261E8852/Theatre_Rollo_Kopottajat_Plodders" }, "description": { "fi": "<p>Teatteri Rollon 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ä!</p><p>Köpöttäjät köpöttää ja toisillensa höpöttää. Välil joutuu kököttää, kun housut aina lököttää.<br>Jos köpöttäjä nököttää, niin toiset silloin mököttää.<br>Mistä tulee, minne menee Köpöttäjät nää?<br>Se kyllä sulle selviää, vaik köpö oli loru tää!</p><p>TULE MUKAAN KÖKÖTTÄMÄÄN!</p><p>Ohjaus: Sanna Monto<br>Käsikirjoitus: työryhmä<br>Esiintyjät: Visa Heinonen, Janne Immonen, Sanna Monto / Iiro Ristola<br>Musiikki: Janne Immonen<br>Lavastus: Kati Lamppu<br>Puvustus: Niina Huovinen<br>Tekniikka: Juha Skukin<br> <br>Teatteri Rollon sanaton esitys<br>Ikäsuositus: 3–9-vuotiaat<br>Esityksen kesto: 35 minuuttia</p><p>Huomaattehan, että Annantalon Taidelauantain avoin paja on auki klo 11-14. Ehkä haluatte tulla hyvissä ajoin taiteilemaan ja katsomaan esitystä?</p><p>Liput: 10 € / 6 €<br>Lippuvaraukset ennakkoon: rollo@rollo.fi sekä puoli tunti ennen esitystä ovelta.</p>", "sv": "<p>I Teateri Rollos Köpöttäjät får publiken träffa Traskarna!</p><p>Traskarna traskar och snaskar och plaskar. Slänger och dänger och byxorna hänger.<br> Tar traskaren en lur kan någon snart bli sur.<br> Var kommer traskarna ifrån och vart är de på väg?<br> Det får du snart veta!<br>KOM MED OCH TRASKA!<br> <br>Regi: Sanna Monto<br>Manus: arbetsgrupp<br>På scenen: Visa Heinonen, Janne Immonen, Sanna Monto / Iiro Ristola<br>Musik: Janne Immonen<br>Iscensättning: Kati Lamppu<br>Kostymering: Niina Huovinen<br>Teknik: Juha Skukin<br> <br>Ordlös föreställning av Teatteri Rollo<br>Åldersrekommendation: 3–9-åringar<br>Föreställningens längd: cirka 30 minuter<br> <br>Biljetter: 10 € / 6 €<br> Boka biljett: rollo@rollo.fi och vid dörren en halv timme före föreställningen.</p><p>Obs! På Annegården organiseras Öpnna för alla Konstlördagar kl. 11-14. kanske vill skapa konst och sen titta på teater?</p>", "en": "<p>Köpöttäjät by Theatre Rollo lets the audience experience plodding, yapping, squatting and plenty of baggy trousers!</p><p>“Plodders keep plodding and mouths keep flapping. Sometimes you gotta squat to keep your trousers up.<br> If a plodder keeps still, others feel ill.<br> Where do these Plodders come from and where do they go?<br> This little ditty was nonsense, but we’ll let you know!”<br>JOIN THE FUN AND PLOD WITH US!<br> <br>Directed by: Sanna Monto<br>Manuscript: working group<br>Performers: Visa Heinonen, Janne Immonen, Sanna Monto / Iiro Ristola<br>Music: Janne Immonen<br>Staging: Kati Lamppu<br>Costume design: Niina Huovinen<br>Tech: Juha Skukin<br> <br>Non-verbal performance by Theatre Rollo<br>Recommended age: 3-9-year-olds<br>Duration: approximately 30 minutes<br> <br>Tickets: €10/€6<br> Advance booking of tickets: rollo@rollo.fi and at the door thirty minutes before the show.</p><p>Note! In Annantalo there is an Art Saturday open for all. Maybe you´d like to come earlier, work in a workshop and then watch the performance?</p>" }, "name": { "fi": "Teatteri Rollo: Köpöttäjät", "sv": "Teatteri Rollo: Köpöttäjät", "en": "Theatre Rollo Köpöttäjät – Plodders" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67251/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67496", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?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": 1494288, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T13:14:03.140827Z", "last_modified_time": "2025-12-22T13:14:03.140848Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781603.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494288/?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-22T13:14:03.023796Z", "last_modified_time": "2026-03-20T01:13:13.141064Z", "date_published": null, "start_time": "2026-02-21T09:00:00Z", "end_time": "2026-02-21T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1F5D550069EF1AB758B5711D7BBA08BD/Annantalon_taidelauantai_Aarrejahti", "sv": "http://www.annantalo.fi/sv/evenemang/event/1F5D550069EF1AB758B5711D7BBA08BD/Annegardens_konstlordagar_Skattjakt", "en": "http://www.annantalo.fi/en/events/event/1F5D550069EF1AB758B5711D7BBA08BD/Annantalo_Art_Saturdays_Treasure_hunt" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Aarrejahti</b></p><p>Mikä on sinun aarteesi? Miten hyvä piilottaja olet? Työpajassa tehdään omalle aarteelle salaperäinen rasia, sekä sen luo johdattava tarunhohtoinen aarrekartta! Pääset piirtämään eri välineillä ja tutkimaan kuinka paperiin loihditaan ajan patinaa. Saat kotiin vietäväksi välineet jännittävään aarrejahtileikkiin.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p><p>P.S. Annnasalissa vierailee Teatteri Rollo: Köpöttäjät esitys klo 14!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Skattjakt</b><br>Vad är din skatt? Hur bra är du på att gömma saker? I verkstaden tillverkar du en mystisk låda för din skatt och en sagoomspunnen skattkarta som leder till den! Du får rita med olika redskap och utforska hur man ger papper patina. Du får med dig verktyg hem för en spännande skattjakt.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.<br>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p><p>P.S. Teatteri Rollo besöker Annansali kl.14 med Köpöttäjät föreställningen ( ordlös)</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b> Treasure hunt</b><br>What is your treasure? How good are you at hiding things? At this workshop, you will get to make a mysterious box for your treasure and a legendary treasure map that leads to it! You will get to draw with different media and explore how you can create a patina of time on paper. After the workshop, you will have the equipment for an exciting treasure hunt game at home!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises.</p><p>The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p><p>P.S. In Annansali at 2 pm Köpöttäjät by Teatteri Rollo, a wordless humoristic play.</p>" }, "name": { "fi": "Annantalon taidelauantai: Aarrejahti", "sv": "Annegårdens konstlördagar: Skattjakt", "en": "Annantalo Art Saturdays: Treasure hunt" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67496/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68011", "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: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" }, { "@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": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494710, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-03T17:12:54.807138Z", "last_modified_time": "2026-02-03T17:12:54.807152Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784332.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494710/?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-03T17:12:54.676382Z", "last_modified_time": "2026-03-20T01:13:11.608214Z", "date_published": null, "start_time": "2026-02-20T10:00:00Z", "end_time": "2026-02-20T14: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": "Italian Rivieralle sijoittuvassa animaatioelokuvassa ystävykset Luca ja Alberto viettävät unohtumattoman kesän, johon kuuluu jäätelöä, pastaa ja skootteriajeluja. Ystävyksillä on kuitenkin suuri salaisuus: he ovat oikeasti vedenalaisesta maailmasta kotoisin olevia merihirviöitä.", "sv": "Med handlingen förlagd till den italienska rivieran berättar denna animerade långfilm historien om bästa vännerna Luca och Alberto, som tillbringar en oförglömlig sommar med gelato, pasta och skoterturer. Men vännerna har en stor hemlighet: de är i själva verket sjömonster från en undervattensvärld.", "en": "Set in the Italian Riviera, this animated feature tells the story of best friends Luca and Alberto who spend an unforgettable summer with gelato, pasta, and scooter rides. However, the friends share a big secret: they are in fact sea monsters from an underwater world." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0F915979337A9E16EBC26665C8C4E4AA/Lomakino_Luca", "sv": "http://www.annantalo.fi/sv/evenemang/event/0F915979337A9E16EBC26665C8C4E4AA/Lomakino_Luca", "en": "http://www.annantalo.fi/en/events/event/0F915979337A9E16EBC26665C8C4E4AA/Lomakino_Luca" }, "description": { "fi": "<p>Italian Rivieralle sijoittuvassa animaatioelokuvassa ystävykset Luca ja Alberto viettävät unohtumattoman kesän, johon kuuluu jäätelöä, pastaa ja skootteriajeluja. Ystävyksillä on kuitenkin suuri salaisuus: he ovat oikeasti vedenalaisesta maailmasta kotoisin olevia merihirviöitä.</p><p><b>Lomakinon elokuva: Luca (2021)</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>Med handlingen förlagd till den italienska rivieran berättar denna animerade långfilm historien om bästa vännerna Luca och Alberto, som tillbringar en oförglömlig sommar med gelato, pasta och skoterturer. Men vännerna har en stor hemlighet: de är i själva verket sjömonster från en undervattensvärld.</p><p><b>Sportlovsbio: Luca</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>Set in the Italian Riviera, this animated feature tells the story of best friends Luca and Alberto who spend an unforgettable summer with gelato, pasta, and scooter rides. However, the friends share a big secret: they are in fact sea monsters from an underwater world.</p><p><b>Holiday cinema: Luca</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: Luca", "sv": "Lomakino: Luca", "en": "Lomakino: Luca" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68011/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67774", "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": 1494161, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T11:13:38.311535Z", "last_modified_time": "2025-12-09T11:13:38.311556Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780407.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494161/?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-09T11:13:38.243361Z", "last_modified_time": "2026-03-20T01:13:11.499800Z", "date_published": null, "start_time": "2026-02-20T08:00:00Z", "end_time": "2026-02-20T11: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/C29D466D541F5096F25FE322A00D70D3/Rantaunelmia", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C29D466D541F5096F25FE322A00D70D3/Stranddrommar", "en": "http://www.vuotalo.fi/en/events/event/C29D466D541F5096F25FE322A00D70D3/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:67774/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67773", "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": 1494160, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T11:13:38.041951Z", "last_modified_time": "2025-12-09T11:13:38.041966Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780406.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494160/?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-09T11:13:37.980879Z", "last_modified_time": "2026-03-20T01:13:10.866749Z", "date_published": null, "start_time": "2026-02-19T13:00:00Z", "end_time": "2026-02-19T16: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/FB8A1A74E6C086CF66CD95665D881AF3/Rantaunelmia", "sv": "http://www.vuotalo.fi/sv/evenemang/event/FB8A1A74E6C086CF66CD95665D881AF3/Stranddrommar", "en": "http://www.vuotalo.fi/en/events/event/FB8A1A74E6C086CF66CD95665D881AF3/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:67773/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67556", "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": 1494193, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-11T10:13:13.444306Z", "last_modified_time": "2025-12-11T10:13:13.444325Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781711.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494193/?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-10T11:12:47.154475Z", "last_modified_time": "2026-03-20T01:13:10.747082Z", "date_published": null, "start_time": "2026-02-19T13: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": "Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.", "sv": "Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.", "en": "The modern mammal city, Zootopia, is a city like no other." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/70FA768275E3B3C7B5A3CB7D08413D5E/Talvilomaleffa_Zootropolis_-_Elainten_kaupunki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/70FA768275E3B3C7B5A3CB7D08413D5E/Sportlovsbio_Zootropolis_7_", "en": "http://www.malmitalo.fi/en/events/event/70FA768275E3B3C7B5A3CB7D08413D5E/Winter_holiday_movie_Zootopia_7_" }, "description": { "fi": "<p>Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.</p><p>Se on maailman eläinten sulatusuuni, jossa kaikki norsusta päästäiseen asuvat yhdessä kaupunginosissa kuten elegantti Sahara Square ja viileä Tundratown. Mutta kun aina positiivinen konstaapeli Judy Hopps (Iina Kuustonen) saapuu Zootropolikseen, hän tajuaa, ettei ole helppoa olla ensimmäinen kaniini kaupungin poliisivoimien suurten ja karskien eläinten joukossa.</p><p>Näyttääkseen, mistä hänet on tehty, päättää Judy ratkaista hankalan jutun. Mysteerin ratkaiseminen tosin vaatii, että hän tekee yhteistyötä suulaan ja ovelan Nick Wilde (Ilkka Villi) -nimisen ketun kanssa.</p><p>Kesto: 108 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.</p><p>Staden är en smältdegel för världens djur, där allt från elefanter till näbbmöss bor tillsammans i kvarter som eleganta Sahara Square och coola Tundratown. Men när den alltid positiva konstapeln Judy Hopps (Iina Kuustonen) anländer till Zootropolis inser hon att det inte är lätt att vara den första kaninen bland de stora, tuffa djuren i stadens polisstyrka. <br>För att visa vad hon går för bestämmer sig Judy för att lösa ett knepigt fall. För att lösa mysteriet måste hon dock samarbeta med en pratsam och listig räv vid namn Nick Wilde (Ilkka Villi).</p><p>Längd: 108 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>", "en": "<p>The modern mammal city, Zootopia, is a city like no other.</p><p>It's the animal melting pot of the world, where everything from elephants to lions live together in neighbourhoods such as the elegant Sahara Square and cool Tundratown. But when the ever-positive Officer Judy Hopps (Iina Kuustonen) arrives at Zootropolis, she realises it's not easy being the first rabbit among the large, rugged animals of the city's police force. <br>To show what she's made of, Judy decides to solve a tricky case. Solving the mystery, however, requires Judy to team up with a mouthy and cunning fox named Nick Wilde (Ilkka Villi).</p><p>Duration: 108 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Zootropolis - Eläinten kaupunki (7)", "sv": "Sportlovsbio: Zootropolis (7)", "en": "Winter holiday movie: Zootopia (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67556/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67555", "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": 1494171, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T11:12:46.940907Z", "last_modified_time": "2025-12-10T11:12:46.940922Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781710.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494171/?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-10T11:12:46.876465Z", "last_modified_time": "2026-03-20T01:13:10.623207Z", "date_published": null, "start_time": "2026-02-19T11: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": "Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.", "sv": "Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.", "en": "The modern mammal city, Zootopia, is a city like no other." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6B293BE9D0EEB1AAAAAF9B68B9EF01F6/Talvilomaleffa_Zootropolis_-_Elainten_kaupunki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6B293BE9D0EEB1AAAAAF9B68B9EF01F6/Sportlovsbio_Zootropolis_7_", "en": "http://www.malmitalo.fi/en/events/event/6B293BE9D0EEB1AAAAAF9B68B9EF01F6/Winter_holiday_movie_Zootopia_7_" }, "description": { "fi": "<p>Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.</p><p>Se on maailman eläinten sulatusuuni, jossa kaikki norsusta päästäiseen asuvat yhdessä kaupunginosissa kuten elegantti Sahara Square ja viileä Tundratown. Mutta kun aina positiivinen konstaapeli Judy Hopps (Iina Kuustonen) saapuu Zootropolikseen, hän tajuaa, ettei ole helppoa olla ensimmäinen kaniini kaupungin poliisivoimien suurten ja karskien eläinten joukossa.</p><p>Näyttääkseen, mistä hänet on tehty, päättää Judy ratkaista hankalan jutun. Mysteerin ratkaiseminen tosin vaatii, että hän tekee yhteistyötä suulaan ja ovelan Nick Wilde (Ilkka Villi) -nimisen ketun kanssa.</p><p>Kesto: 108 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.</p><p>Staden är en smältdegel för världens djur, där allt från elefanter till näbbmöss bor tillsammans i kvarter som eleganta Sahara Square och coola Tundratown. Men när den alltid positiva konstapeln Judy Hopps (Iina Kuustonen) anländer till Zootropolis inser hon att det inte är lätt att vara den första kaninen bland de stora, tuffa djuren i stadens polisstyrka. <br>För att visa vad hon går för bestämmer sig Judy för att lösa ett knepigt fall. För att lösa mysteriet måste hon dock samarbeta med en pratsam och listig räv vid namn Nick Wilde (Ilkka Villi).</p><p>Längd: 108 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>", "en": "<p>The modern mammal city, Zootopia, is a city like no other.</p><p>It's the animal melting pot of the world, where everything from elephants to lions live together in neighbourhoods such as the elegant Sahara Square and cool Tundratown. But when the ever-positive Officer Judy Hopps (Iina Kuustonen) arrives at Zootropolis, she realises it's not easy being the first rabbit among the large, rugged animals of the city's police force. <br>To show what she's made of, Judy decides to solve a tricky case. Solving the mystery, however, requires Judy to team up with a mouthy and cunning fox named Nick Wilde (Ilkka Villi).</p><p>Duration: 108 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Zootropolis - Eläinten kaupunki (7)", "sv": "Sportlovsbio: Zootropolis (7)", "en": "Winter holiday movie: Zootopia (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67555/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68010", "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: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" }, { "@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": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494709, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-03T16:13:44.110521Z", "last_modified_time": "2026-02-03T16:13:44.110537Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784331.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494709/?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-03T16:13:43.981214Z", "last_modified_time": "2026-03-20T01:13:10.490533Z", "date_published": null, "start_time": "2026-02-19T10:00:00Z", "end_time": "2026-02-19T14: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": "Paddington seikkailee -elokuvassa Paddington ja Brownin perhe vierailevat Lucy-tädin luona ja tempaantuvat jännittävään seikkailuun, joka vie heidät Amazonin sademetsiin ja Perun vuoristoon.", "sv": "I Paddington i Peru besöker Paddington och familjen Brown faster Lucy, bara för att dras med i ett spännande äventyr som tar dem till Amazonas regnskog och Perus berg.", "en": "In Paddington in Peru, Paddington and the Brown family visit Aunt Lucy only to be swept up in thrilling adventure that takes them into the Amazon rainforest and to the mountains of Peru." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F45EA52F252DBB30F7BCCDBB3E3D6D6E/Lomakino_Paddington_seikkailee_", "sv": "http://www.annantalo.fi/sv/evenemang/event/F45EA52F252DBB30F7BCCDBB3E3D6D6E/Lomakino_Paddington_i_Peru", "en": "http://www.annantalo.fi/en/events/event/F45EA52F252DBB30F7BCCDBB3E3D6D6E/Lomakino_Paddington_in_Peru" }, "description": { "fi": "<p>Paddington seikkailee -elokuvassa Paddington ja Brownin perhe vierailevat Lucy-tädin luona ja tempaantuvat jännittävään seikkailuun, joka vie heidät Amazonin sademetsiin ja Perun vuoristoon.</p><p><b>Lomakinon elokuva: Paddington seikkailee (2024)</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>I Paddington i Peru besöker Paddington och familjen Brown faster Lucy, bara för att dras med i ett spännande äventyr som tar dem till Amazonas regnskog och Perus berg.</p><p><b>Sportlovsbio: Paddington i Peru </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>", "en": "<p>In Paddington in Peru, Paddington and the Brown family visit Aunt Lucy only to be swept up in thrilling adventure that takes them into the Amazon rainforest and to the mountains of Peru.</p><p><b>Holiday cinema: Paddington in Peru</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: Paddington seikkailee", "sv": "Lomakino: Paddington i Peru", "en": "Lomakino: Paddington in Peru" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68010/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67560", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p4354/?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": 1494299, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:42.536084Z", "last_modified_time": "2025-12-23T09:13:42.536100Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781719.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494299/?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-23T09:13:42.445377Z", "last_modified_time": "2026-03-20T01:13:10.383592Z", "date_published": null, "start_time": "2026-02-19T08:00:00Z", "end_time": "2026-02-19T11: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": "Talvilomaleffoista inspiroituneissa 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/EF79F0A9BA99798DF532A1FD7B912F80/Elainpoliisit_-taidepaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EF79F0A9BA99798DF532A1FD7B912F80/Konstverkstaden_Elainpoliisit", "en": "http://www.malmitalo.fi/en/events/event/EF79F0A9BA99798DF532A1FD7B912F80/Art_workshop_animal_police" }, "description": { "fi": "<p>Talvilomaleffoista inspiroituneissa maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.</p><p>Tässä pajassa koulutetaan pieniä eläinpoliiseja Zootropolis-elokuvan hengessä. Tule askartelemaan oma poliisihattusi, tietysti eläimen korvilla koristeltuna!</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>I denna verkstad utbildas små djurpoliser i samma anda som i filmen Zootropolis. Kom och tillverka en egen polishatt, naturligtvis dekorerad med djuröron!</p><p>Verkstadens språk: finska</p><p>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>This workshop will train little animal police officers in the spirit of the film Zootropolis. Come and craft your own police hat – decorated with animal ears, of course!</p><p>Workshop language: Finnish</p><p>Free entry!</p>" }, "name": { "fi": "Eläinpoliisit -taidepaja", "sv": "Konstverkstaden Eläinpoliisit", "en": "Art workshop: animal police" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67560/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67772", "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": 1494159, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T11:13:37.730896Z", "last_modified_time": "2025-12-09T11:13:37.730926Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780405.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494159/?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-09T11:13:37.612041Z", "last_modified_time": "2026-03-20T01:13:09.889698Z", "date_published": null, "start_time": "2026-02-18T13:00:00Z", "end_time": "2026-02-18T16: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/2D1E2CBF1A68D759D4E5FF0C3B269B30/Rantaunelmia", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2D1E2CBF1A68D759D4E5FF0C3B269B30/Stranddrommar", "en": "http://www.vuotalo.fi/en/events/event/2D1E2CBF1A68D759D4E5FF0C3B269B30/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:67772/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67554", "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": 1494170, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T11:12:46.626194Z", "last_modified_time": "2025-12-10T11:12:46.626209Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781708.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494170/?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-10T11:12:46.545343Z", "last_modified_time": "2026-03-20T01:13:09.610669Z", "date_published": null, "start_time": "2026-02-18T13: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": "Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.", "sv": "Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning", "en": "Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/241A391A95BDC4E641A3A203524FA155/Talvilomaleffa_Lumikki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/241A391A95BDC4E641A3A203524FA155/Sportlovsbio_Snovit_7_", "en": "http://www.malmitalo.fi/en/events/event/241A391A95BDC4E641A3A203524FA155/Winter_holiday_movie_Snow_White_7_" }, "description": { "fi": "<p>Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.</p><p>Taianomainen musiikkiseikkailu kiidättää katsojat takaisin ajattomaan tarinaan, jonka rakastettuihin hahmoihin lukeutuvat Ujo, Viisas, Vilkas, Jörö, Lystikäs, Unelias ja Nuhanenä.</p><p>Disneyn uuden elokuvan Lumikki on ohjannut Marc Webb ja tuottaneet Marc Platt ja Jared LeBoff sekä vastaavana tuottajana Callum McDougall. Uusia lauluja elokuvaan ovat tehneet Benj Pasek ja Justin Paul.</p><p>Kesto: 109 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning</p><p>Detta magiska musikaliska äventyr tar tittarna tillbaka till en tidlös berättelse med älskade karaktärer som Kloker, Butter, Glader, Blyger, Trötter, Prosit och Toker.</p><p>Disneys nya Snövit är regisserad av Marc Webb och producerad av Marc Platt och Jared LeBoff, med Callum McDougall som ansvarig producent. Nya låtar till filmen har skrivits av Benj Pasek och Justin Paul.</p><p>Längd: 109 min. <br>Åldersgräns: K-7<br>Språk: finskt tal</p><p>Fritt inträde!</p>", "en": "<p>Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen.</p><p>This magical musical adventure takes viewers back to the timeless story with beloved characters including Bashful, Doc, Happy, Grumpy, Dopey, Sleepy, and Sneezy.</p><p>Disney's new Snow White is directed by Marc Webb and produced by Marc Platt and Jared LeBoff, with Callum McDougall as the executive producer. New songs for the film have been written by Benj Pasek and Justin Paul.</p><p>Duration: 109 min <br>Age rating: 7<br>Language: spoken in Finnish</p><p>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Lumikki (7)", "sv": "Sportlovsbio: Snövit (7)", "en": "Winter holiday movie: Snow White (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67554/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67553", "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": 1494169, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T11:12:46.284883Z", "last_modified_time": "2025-12-10T11:12:46.284899Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781707.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494169/?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-10T11:12:46.183470Z", "last_modified_time": "2026-03-20T01:13:09.457341Z", "date_published": null, "start_time": "2026-02-18T11: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": "Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.", "sv": "Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning.", "en": "Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1AF0D5B7B68B47FA9EC5158F49AC4DAB/Talvilomaleffa_Lumikki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1AF0D5B7B68B47FA9EC5158F49AC4DAB/Sportlovsbio_Snovit_7_", "en": "http://www.malmitalo.fi/en/events/event/1AF0D5B7B68B47FA9EC5158F49AC4DAB/Winter_holiday_movie_Snow_White_7_" }, "description": { "fi": "<p>Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.</p><p>Taianomainen musiikkiseikkailu kiidättää katsojat takaisin ajattomaan tarinaan, jonka rakastettuihin hahmoihin lukeutuvat Ujo, Viisas, Vilkas, Jörö, Lystikäs, Unelias ja Nuhanenä.</p><p>Disneyn uuden elokuvan Lumikki on ohjannut Marc Webb ja tuottaneet Marc Platt ja Jared LeBoff sekä vastaavana tuottajana Callum McDougall. Uusia lauluja elokuvaan ovat tehneet Benj Pasek ja Justin Paul.</p><p>Kesto: 109 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning.</p><p>Detta magiska musikaliska äventyr tar tittarna tillbaka till en tidlös berättelse med älskade karaktärer som Kloker, Butter, Glader, Blyger, Trötter, Prosit och Toker.</p><p>Disneys nya Snövit är regisserad av Marc Webb och producerad av Marc Platt och Jared LeBoff, med Callum McDougall som ansvarig producent. Nya låtar till filmen har skrivits av Benj Pasek och Justin Paul.</p><p>Längd: 109 min. <br>Åldersgräns: K-7<br>Språk: finskt tal</p><p>Fritt inträde!</p>", "en": "<p>Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen.</p><p>This magical musical adventure takes viewers back to the timeless story with beloved characters including Bashful, Doc, Happy, Grumpy, Dopey, Sleepy, and Sneezy.</p><p>Disney's new Snow White is directed by Marc Webb and produced by Marc Platt and Jared LeBoff, with Callum McDougall as the executive producer. New songs for the film have been written by Benj Pasek and Justin Paul.</p><p>Duration: 109 min <br>Age rating: 7<br>Language: spoken in Finnish</p><p>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Lumikki (7)", "sv": "Sportlovsbio: Snövit (7)", "en": "Winter holiday movie: Snow White (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67553/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68009", "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: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" }, { "@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": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494708, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-03T16:13:43.361723Z", "last_modified_time": "2026-02-03T16:13:43.361740Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784330.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494708/?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-03T16:13:43.204041Z", "last_modified_time": "2026-03-20T01:13:09.201720Z", "date_published": null, "start_time": "2026-02-18T10:00:00Z", "end_time": "2026-02-18T14: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": "Hunajaa etsiskelevä Puh ystävineen lähtee seikkailuun löytääkseen Ihaan kadonneen hännän ja pelastaakseen Risto Reippaan salaperäiseltä hirviöltä. (S)", "sv": "Medan de letar efter honung ger sig Puh och hans vänner ut på ett äventyr för att hitta I-ors försvunna svans och rädda Kristoffer Robin från ett okänt monster.", "en": "While searching for honey, Pooh and his friends embark on an adventure to find Eeyore's missing tail and rescue Christopher Robin from an unknown monster." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8C2E1A7271196FE9AE5B7061176ABFC0/Lomakino_Nalle_Puhin_Elokuva_2011_", "sv": "http://www.annantalo.fi/sv/evenemang/event/8C2E1A7271196FE9AE5B7061176ABFC0/Lomakino_Nalle_Puhs_Film_2011_", "en": "http://www.annantalo.fi/en/events/event/8C2E1A7271196FE9AE5B7061176ABFC0/Lomakino_Winnie_The_Pooh_2011_" }, "description": { "fi": "<p>Hunajaa etsiskelevä Puh ystävineen lähtee seikkailuun löytääkseen Ihaan kadonneen hännän ja pelastaakseen Risto Reippaan salaperäiseltä hirviöltä. (S)</p><p><b>Lomakinon elokuva: Nalle Puhin Elokuva (2011)</b><br>Kieli: suomi, tekstitys englanniksi, sallittu kaikenikäisille</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>Medan de letar efter honung ger sig Puh och hans vänner ut på ett äventyr för att hitta I-ors försvunna svans och rädda Kristoffer Robin från ett okänt monster.</p><p><b>Sportlovsbio: Nalle Puhs film</b><br>Språk: finska, undertexter på engelska, tillåten för alla</p><p>Visningar:</p><p>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>While searching for honey, Pooh and his friends embark on an adventure to find Eeyore's missing tail and rescue Christopher Robin from an unknown monster.</p><p><b>Holiday cinema: Winnie the Pooh</b><br>Language: Finnish, subtitled in English, suitable for all ages</p><p>Screenings:</p><p>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: Nalle Puhin Elokuva (2011)", "sv": "Lomakino: Nalle Puhs Film (2011)", "en": "Lomakino: Winnie The Pooh (2011)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68009/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }