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=312
{ "meta": { "count": 6934, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=313", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=311" }, "data": [ { "id": "kulke:61104", "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: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:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5185, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:47.386834Z", "last_modified_time": "2023-10-09T13:30:47.386860Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737454.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5185/?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": "2023-10-09T13:30:46.606802Z", "last_modified_time": "2023-11-14T06:13:26.149904Z", "date_published": null, "start_time": "2023-10-20T12: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": "Monet sukupolvet ovat rakastaneet tätä ajatonta klassikkoa ja sen kunnioitusta herättävää animaatiota." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78465452C2FBC34C496F3BA62C6C333D/Bambi_7_" }, "description": { "fi": "<p>Monet sukupolvet ovat rakastaneet tätä ajatonta klassikkoa ja sen kunnioitusta herättävää animaatiota.</p><p>Elämää mullistavassa seikkailussa Bambi lähtee parhaiden ystäviensä Rumpalin ja Kukan kanssa tutkimaan metsän ihmeitä ja haasteita, sekä täyttämään kohtalonsa metsän prinssinä. Täynnä huumoria ja sydäntä oleva Bambi on edelleen perheiden suosikki.<br> <br>Ikäraja: 7<br>Kesto: 70 min<br>Puhuttu suomeksi</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "name": { "fi": "Bambi (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61104/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61103", "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: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:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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:u4804001050", "sub_events": [], "images": [ { "id": 5184, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:45.384028Z", "last_modified_time": "2023-10-09T13:30:45.384048Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737585.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5184/?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": "2023-10-09T13:30:45.094688Z", "last_modified_time": "2023-11-14T06:13:26.080132Z", "date_published": null, "start_time": "2023-10-20T10:00:00Z", "end_time": "2023-10-20T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "12-vuotias Miina sekoaa, kun kuuluisa hiphop-tanssija ED Win muuttaa kaupunkiin ja aloittaa hänen koulussaan.", "sv": "12 åriga Mina blir bli blixtförälskad när hiphop-dansaren ED Win flyttar till stan och börjar i samma skola." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EF25DF99422E1CE8CC4C4779DCED2C22/Syysloman_ilmaisleffa_Dancing_queen_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EF25DF99422E1CE8CC4C4779DCED2C22/Hostlovsbio_Dancing_queen_7_" }, "description": { "fi": "<p>12-vuotias Miina sekoaa, kun kuuluisa hiphop-tanssija ED Win muuttaa kaupunkiin ja aloittaa hänen koulussaan.</p><p>Miina rakastuu ja kun ED ilmoittaa perustavansa uuden tanssiryhmän kaupungin tanssikilpailua varten, Miina päättä mennä koe-esiintymiseen. Ongelma on vain, että hän ei osaa tanssia.</p><p>Dancing Queen on feel-good-elokuva koko perheelle. Elokuva rakkaudesta, tanssista ja siitä että pitää joskus uskaltaa heittäytyä tuntemattomaan saadakseen sen mitä haluaa.</p>", "sv": "<p>12 åriga Mina blir bli blixtförälskad när hiphop-dansaren ED Win flyttar till stan och börjar i samma skola.</p><p>Ed berättar att han vill starta en ny dansgrupp som ska ställa upp i en stor tävling. Mina beslutar på direkten att hon ska försöka komma med. Det är bara ett problem: Hon kan inte dansa.</p><p>Dancing Queen är en feelgood-film för hela familjen. En film om kärlek, dans och att våga kasta sig ut i det okända för att få det man vill ha.</p>" }, "name": { "fi": "Syysloman ilmaisleffa: Dancing queen (7)", "sv": "Höstlovsbio: Dancing queen (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61103/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60529", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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:u4804001050", "sub_events": [], "images": [ { "id": 4430, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:46.431052Z", "last_modified_time": "2023-09-07T14:24:46.431073Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731323.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4430/?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": "2023-09-07T14:24:46.280344Z", "last_modified_time": "2023-11-14T06:13:25.545637Z", "date_published": null, "start_time": "2023-10-19T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Morris-kissa kiertää rinta rottingilla kaupungista toiseen ratkomassa yllättäen ilmeneviä rottaongelmia, kömpelö pillipiipari Keith vanavedessään.", "sv": "Den makalöse Maurice är en berättelse om katten Maurice som reser från stad till stad och erbjuder sig stoltserande att lösa plötsliga råttproblem.", "en": "‘The Amazing Maurice’ is the story of Morris the cat, who travels from town to town with his head held high to solve unexpected rat problems, with Keith the clumsy piper in tow." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/53C61F82AC9256D9BCB099F07B9A6935/Syyslomaleffa_Mahtava_Morris_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/53C61F82AC9256D9BCB099F07B9A6935/Hostlovsfilm_Den_makalose_Maurice_7_", "en": "http://www.malmitalo.fi/en/events/event/53C61F82AC9256D9BCB099F07B9A6935/Autumn_holiday_film_The_Amazing_Maurice_7_" }, "description": { "fi": "<p>Morris-kissa kiertää rinta rottingilla kaupungista toiseen ratkomassa yllättäen ilmeneviä rottaongelmia, kömpelö pillipiipari Keith vanavedessään.</p><p>Kun Keith lurittelee huilullaan, rotat marssivat pois kiitollisten kyläläisten riemuksi. Kyläläiset tosin eivät koskaan saa tietää, että yllättävän oppineet rotat ovat mukana juonessa. Morris, Keith ja rottalauma käärivät myhäillen palkkiorahat taskuihinsa.</p><p>Homma toimii mainiosti, kunnes yllättävä huijareiden joukko saapuu kylään. Siellä he kohtaavat satuja ja tarinoita rakastavan kirjatoukka Malician ja sekalainen seurakunta päätyy ratkomaan yhdessä kylän outoa mysteeriä. Missä ovat kaikki paikalliset rotat?</p><p>Mahtava Morris perustuu fantasiakirjailijan Terry Pratchettin Carnegie-palkittuun lastenkirjaan Mahtava Morris ja sivistyneet siimahännät.</p><p>Kesto: 93 min<br>Ikäraja: 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Den makalöse Maurice är en berättelse om katten Maurice som reser från stad till stad och erbjuder sig stoltserande att lösa plötsliga råttproblem.</p><p>Hans resesällskap är den klumpiga flöjtblåsaren Keith.</p><p>Längd: 93 min <br>Åldersgrän: 7<br>Språk: Finska</p><p>Fritt inträde!</p>", "en": "<p>‘The Amazing Maurice’ is the story of Morris the cat, who travels from town to town with his head held high to solve unexpected rat problems, with Keith the clumsy piper in tow.</p><p>Duration: 93 min <br>Age limit: 7<br>Language: Finnish</p><p>Free entry!</p>" }, "name": { "fi": "Syyslomaleffa: Mahtava Morris (7)", "sv": "Höstlovsfilm: Den makalöse Maurice (7)", "en": "Autumn holiday film: The Amazing Maurice (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60529/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60528", "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: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:u4804001050", "sub_events": [], "images": [ { "id": 4429, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:46.000689Z", "last_modified_time": "2023-09-07T14:24:46.000718Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731711.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4429/?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": "2023-09-07T14:24:45.759236Z", "last_modified_time": "2023-11-14T06:13:25.469965Z", "date_published": null, "start_time": "2023-10-19T08:00:00Z", "end_time": "2023-10-19T10: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": "Hupsut pomppuötökät piiloutuvat boksiin!", "sv": "De tokiga skuttande småkrypen gömmer sig i asken!", "en": "Silly bugs hide in a box!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B7FAFEE64D994ECABC789BC368A2BE0F/Syyslomatyopaja_Otokkapiilo_piilootokka", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B7FAFEE64D994ECABC789BC368A2BE0F/Hostlovsverkstad_Otokkapiilo_piilootokka", "en": "http://www.malmitalo.fi/en/events/event/B7FAFEE64D994ECABC789BC368A2BE0F/Autumn_holiday_workshop_Bug_hide_hiding_bug" }, "description": { "fi": "<p>Hupsut pomppuötökät piiloutuvat boksiin!</p><p>Taittele taskukokoinen rasia paperista ja talleta rasiaan aivan yllättävä öttiäinen!</p><p>Työpajan suunnittelu ja toteutus: Runoropinoita</p><p>Malmitalon aulassa</p><p>Vapaa pääsy!</p>", "sv": "<p>De tokiga skuttande småkrypen gömmer sig i asken!</p><p>Vik en pappersask i fickstorlek och spara en överraskande varelse i den!</p>", "en": "<p>Silly bugs hide in a box!</p><p>Fold a pocket-sized box out of paper and store a surprising little bug in the box!</p>" }, "name": { "fi": "Syyslomatyöpaja: Ötökkäpiilo – piiloötökkä", "sv": "Höstlovsverkstad: Ötökkäpiilo – piiloötökkä", "en": "Autumn holiday workshop Bug hide – hiding bug" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60528/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61151", "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: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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:u4804001050", "sub_events": [], "images": [], "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": "2023-10-17T08:17:38.858157Z", "last_modified_time": "2023-11-14T06:13:25.020744Z", "date_published": null, "start_time": "2023-10-18T11:00:00Z", "end_time": "2023-10-18T11:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C29531E1C22801E0D6DB80AF9E8884F1/Tutustu_Kekalainen_Companyn_AVOIN_Tila_Esitykseen" }, "description": null, "name": { "fi": "Tutustu Kekäläinen Companyn AVOIN Tila Esitykseen" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61151/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61090", "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: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: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:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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:u4804001050", "sub_events": [], "images": [ { "id": 5177, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:37.311230Z", "last_modified_time": "2023-10-09T13:30:37.311255Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736307.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5177/?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": "2023-10-09T13:30:37.166201Z", "last_modified_time": "2023-11-14T06:13:24.951565Z", "date_published": null, "start_time": "2023-10-18T10: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": "Ronjan syntymä oli yhtä suurta juhlaa. Salamat leimusivat ja ukkosen jylinä kiiri halki vuorten ja metsien.", "sv": "Den natt rövarhövdingen Mattis dotter Ronja föds drar ett väldigt oväder över Mattisskogen. Så otäckt är det att endast de grymma Vildvittrorna kan vistas ute." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DA2BB1DB498C9A8B313127E8AACFEA8B/Syyslomaleffa_Ronja_Rovardotter_7_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/DA2BB1DB498C9A8B313127E8AACFEA8B/Hostlovsbio_Ronja_Rovardotter_7_" }, "description": { "fi": "<p>Ronjan syntymä oli yhtä suurta juhlaa. Salamat leimusivat ja ukkosen jylinä kiiri halki vuorten ja metsien.</p><p>Ryöväripäällikkö Mattis oli haljeta onnesta! Mattisin suku jatkuisi ja Ronjasta tulisi uusi ryöväripäällikkö. Niin hän ainakin luuli. Hän ei nimittäin tiennyt, että samana yönä syntyi toinenkin ryöväripäällikkö...</p><p>Maa: Ruotsi 1984<br>Genre: Koko perheen elokuva <br>Ohjaus: Tage Danielsson<br>Kesto n. 2 h ja 20 min.<br>Puhumme ruotsia<br>Tekstitys: ruotsi<br>Ikäsuositus alkaen 7 vuotta<br>Vapaa pääsy <br>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa</p>", "sv": "<p>Den natt rövarhövdingen Mattis dotter Ronja föds drar ett väldigt oväder över Mattisskogen. Så otäckt är det att endast de grymma Vildvittrorna kan vistas ute.</p><p>Blixtarna korsar den becksvarta himlen – och plötsligt slår åskan ned och klyver den mäktiga Mattisborgen i två delar.</p><p>Trots sin dramatiska ankomst växer Ronja upp till en ganska fridsam liten rövarflicka. Men modig är hon och när hon blivit stor nog skickas hon ut i Mattisskogen för att lära känna alla faror som lurar där. Här finns grådvärgar och rumpnissar, den farliga älven och det hemska Djävulsgapet. Men den största faran känner inte ens Mattis till – i skogen finns också Birk, son till Mattis ärkefiende Borka… Och Mattis som trodde att Borkaätten var på väg att dö ut! Inte blir det bättre av att Borka och hans rövarband bosatt sig i den del av Mattisborgen som ligger på andra sidan Djävulsgapet. Den gamla fejden blossar upp igen, men till de båda hövdingarnas förtret vägrar barnen att delta. Istället blir de bästa vänner och när det upptäcks blir det omöjligt att bo kvar i borgen.</p><p>Ronja och Birk väljer att ge sig ut i Mattisskogen där de bor i en gammal björngrotta och lever på det naturen ger. Ännu är det sommar, men hur ska det gå när vintern kommer? Och hur ska Mattis överleva sorgen över att ha förlorat sin älskade Ronja? Kanske måste han till slut följa den kloke Skalle-Pers råd: att försonas med Borka. Mattis slits mellan sin längtan efter Ronja och sitt hat mot Borkaätten. Och Ronja, hon har ärvt sin fars envishet och ger inte vika för något.</p><p>Land: Sverige 1984<br>Genre: Familjefilm<br>Regi: Tage Danielsson <br>Längd: 2 h 20 min.<br>Språk: svenska<br>Text: svenska<br>Åldersrekommendation: 7 år<br>Fritt inträde<br>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>" }, "name": { "fi": "Syyslomaleffa: Ronja Rövardotter (7)", "sv": "Höstlovsbio: Ronja Rövardotter (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61090/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60526", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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:u4804001050", "sub_events": [], "images": [ { "id": 4426, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:42.630207Z", "last_modified_time": "2023-09-07T14:24:42.630229Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731290.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4426/?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": "2023-09-07T14:24:42.473830Z", "last_modified_time": "2023-11-14T06:13:24.878765Z", "date_published": null, "start_time": "2023-10-18T10: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": "Valtakunnan etsityin ja hurmaavin varas Flynn Rider piiloutuu syrjäiseen torniin.", "sv": "Rikets mest eftersökta och charmanta tjuv Flynn Rider gömmer sig i ett ensamt torn, där han träffar Rapunzel, en vacker och ettrig flicka vars 20 meter långa, gyllene hårsvall ger henne magiska krafter.", "en": "Flynn Rider, the most wanted and charming thief in the kingdom, hides in a remote tower and meets Rapunzel, a beautiful and feisty girl with superpowers thanks to her 20-metre-long golden hair." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6DA981C5060E6A8B953275D72BCD1231/Syyslomaleffa_Kaksin_karkuteilla_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6DA981C5060E6A8B953275D72BCD1231/Hostlovsfilm_Trassel_7_", "en": "http://www.malmitalo.fi/en/events/event/6DA981C5060E6A8B953275D72BCD1231/Autumn_holiday_film_Tangled_7_" }, "description": { "fi": "<p>Valtakunnan etsityin ja hurmaavin varas Flynn Rider piiloutuu syrjäiseen torniin.</p><p>Siellä hän tapaa Tähkäpään, kauniin ja kipakan tytön, jolla on 20-metristen kultaisten kutriensa ansiosta supervoimia.</p><p>Kesto: 100 min<br>Ikäraja: 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Rikets mest eftersökta och charmanta tjuv Flynn Rider gömmer sig i ett ensamt torn, där han träffar Rapunzel, en vacker och ettrig flicka vars 20 meter långa, gyllene hårsvall ger henne magiska krafter.</p><p>Längd: 100 min<br>Åldersgräns: 7<br>Språk: finska</p><p>Fritt inträde!</p>", "en": "<p>Flynn Rider, the most wanted and charming thief in the kingdom, hides in a remote tower and meets Rapunzel, a beautiful and feisty girl with superpowers thanks to her 20-metre-long golden hair.</p><p>Duration: 100 min<br>Age limit: 7<br>Language: Finnish</p><p>Free entry!</p>" }, "name": { "fi": "Syyslomaleffa: Kaksin karkuteillä (7)", "sv": "Höstlovsfilm: Trassel (7)", "en": "Autumn holiday film: Tangled (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60526/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60525", "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: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:u4804001050", "sub_events": [], "images": [ { "id": 4425, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:42.257367Z", "last_modified_time": "2023-09-07T14:24:42.257398Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731710.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4425/?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": "2023-09-07T14:24:42.103297Z", "last_modified_time": "2023-11-14T06:13:24.803986Z", "date_published": null, "start_time": "2023-10-18T08:00:00Z", "end_time": "2023-10-18T10: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": "Värikkäät jätskitikkukoppikset valtaavat askartelupöydän. Tervetuloa luomaan oma upea kuoriaisesi!", "sv": "De färggranna skalbaggarna tar över hela pysselbordet. Välkommen att skapa din egen fantastiska skalbagge!", "en": "Colourful ice cream stick beetles take over the craft table. Come and create your own fabulous beetle!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F1848B7FF188C8F40E901658D6237544/Syyslomatyopaja_Jatskitikkukoppikset", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F1848B7FF188C8F40E901658D6237544/Hostlovsverkstad_Jatskitikkukoppikset", "en": "http://www.malmitalo.fi/en/events/event/F1848B7FF188C8F40E901658D6237544/Autumn_holiday_workshop_Ice_cream_stick_beetles" }, "description": { "fi": "<p>Värikkäät jätskitikkukoppikset valtaavat askartelupöydän. Tervetuloa luomaan oma upea kuoriaisesi!</p><p>Löytyykö siltä sävelsiivet ja kukkasin kuvitettu kuori? Vai saako koppis koristeeksi tarinoita kirjan sivuilta? Työpajassa käytetään kierrätysmateriaaleja.</p><p>Työpajan suunnittelu ja toteutus: Runoropinoita</p><p>Malmitalon aulassa<br>Vapaa pääsy!</p>", "sv": "<p>De färggranna skalbaggarna tar över hela pysselbordet. Välkommen att skapa din egen fantastiska skalbagge!</p><p>Har din skalbagge vingar fulla av noter och ett blommande skal? Eller pyntar du den med berättelser från en bok? I verkstaden används återvunna material.</p>", "en": "<p>Colourful ice cream stick beetles take over the craft table. Come and create your own fabulous beetle!</p><p>Does it have musical wings and a floral illustrated shell? Or will you decorate it with stories from the pages of a book? We will use recycled materials in this workshop.</p>" }, "name": { "fi": "Syyslomatyöpaja: Jätskitikkukoppikset", "sv": "Höstlovsverkstad: Jätskitikkukoppikset", "en": "Autumn holiday workshop: Ice cream stick beetles" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60525/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60986", "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: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: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:99/?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:u4804001050", "sub_events": [], "images": [ { "id": 5174, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:33.642331Z", "last_modified_time": "2023-10-09T13:30:33.642350Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737352.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5174/?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": "2023-10-09T13:30:33.495323Z", "last_modified_time": "2023-11-14T06:13:24.650433Z", "date_published": null, "start_time": "2023-10-18T07:00:00Z", "end_time": "2023-10-18T11:40: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": "Valtakunnallista Satupäivää vietetään Annantalossa satukirjoja tehden, tutustumalla Kekäläinen Companyn Avoin tila -teokseen ja katsomalla pikkuväelle mieluisia elokuvia. Vapaa pääsy!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/59C11561CAD7FB7F9404FE0942CB574F/Satupaiva_Annantalossa" }, "description": { "fi": "<p>Valtakunnallista Satupäivää vietetään Annantalossa satukirjoja tehden, tutustumalla Kekäläinen Companyn Avoin tila -teokseen ja katsomalla pikkuväelle mieluisia elokuvia. Vapaa pääsy!</p><p>ke 18.10. klo 10–12 <u><a href=\"https://www.annantalo.fi/fi/tapahtumat/event/B4ADF280CD86FD0A177C81C2C8AD01FC/Naperokino__Mielikuvitus\">Naperokino: Mielikuvitus</a></u></p><p><b>Kirjailijavierailu: Käpykolon väkeä</b><br>Klo 10.30-11.15<br>Tervetuloa tutustumaan Käpykolon asukkaisiin!<br> <br>Satupäivänä 18.10. Käpykolon väkeä -lastenkirjan tekijät Leena Parkkinen ja Zagros Manuchar vierailevat Annantalolla. Tule kuulemaan, miten he rakensivat Käpykolon miniatyyrimaailman. Pääset myös tutustumaan kirjan nukkehahmoihin.</p><p>Tilaisuus on suunniteltu 3-8-vuotiaille lapsille aikuisen seurassa.<br><u><a href=\"https://kulkeilmo.hel.fi/enrolmentclient/info.aspx?Key=B86613502FE7FF8A8ED99F52086C6E24\">Ilmoittaudu mukaan</a></u> HUOM! VARAATHAN PAIKAN KAIKILLE OSALLISTUJILLE (esim.yksi aikuinen ja yksi lapsi vievät kaksi paikkaa)</p><p><b>Satukirja</b><br>Nonstop työpaja on auki kello 11.30–13.30 ja 14.30–16.30 (tila: kuva 2 ja käytävä sen edessä)</p><p>Tule tekemään oma satukirja japanilaisella kirjansidontamenetelmällä. Kirjan sivuilta löytyy yllättäviä ja hauskoja tarinoiden alkuja ja vinkkejä kerrontaan, jotka saduttavat tekijänsä luomaan omia tarinoita ja tallentaa ne muistiin.</p><p>Saduttajan ohje: Kerro satu; kirjaan sen ylös juuri sellaisena kuin sen kerrot.</p><p>Työpaja on tarkoitettu kaikenikäisille, alle kouluikäiset aikuisen kanssa.</p><p><b>Tutustuminen Avoin tila -esityksen maailmaan</b><br>klo 14–14.40 (tila: Juhlasali)</p><p>Kekäläinen & Companyn <i>Avoin tila</i> on filosofinen tanssiteos kouluikäisille ja heidän aikuisilleen. Satupäivänä pääsemme kurkistamaan nabbteerin esinemaailmassa seikkailevaan tanssijaan.</p><p>Avoin tila -esitykset ovat Annantalossa 19., 20.ja 21.10. Lisätietoja <u><a href=\"https://www.annantalo.fi/fi/tapahtumat/?q=Avoin%20tila&st=2023-09-15&et=2024-06-15&el=46&show=20\">täältä</a></u></p>" }, "name": { "fi": "Satupäivä Annantalossa – Syysloma" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60986/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60937", "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:p16327/?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:u4804001050", "sub_events": [], "images": [ { "id": 5175, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:34.100587Z", "last_modified_time": "2023-10-09T13:30:34.100616Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737168.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5175/?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": "2023-10-09T13:30:33.856426Z", "last_modified_time": "2023-11-14T06:13:24.572637Z", "date_published": null, "start_time": "2023-10-18T07:00:00Z", "end_time": "2023-10-18T09: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": "Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!", "en": "Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B4ADF280CD86FD0A177C81C2C8AD01FC/Naperokino_Mielikuvitus", "sv": "http://www.annantalo.fi/sv/evenemang/event/B4ADF280CD86FD0A177C81C2C8AD01FC/Knattebion_Fantasi", "en": "http://www.annantalo.fi/en/events/event/B4ADF280CD86FD0A177C81C2C8AD01FC/Naperokino_toddler_cinema_Imagination" }, "description": { "fi": "<p>Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>0–3-vuotiaiden Naperokino palaa ohjelmistoon syksyllä 2023! Rento, mukava esityspaikka ja -tilanne mahdollistavat vaipanvaihdon, syöttämisen/imettämisen tai vaikkapa pienet päiväunet lyhäreiden lomassa.</p><p>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen ottamaan vastaan ja katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas painottuu pienimmillekin sopiviin sanattomiin animaatioihin, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja.</p><p>Naperokino on suunnattu kotiäideille ja –isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ke 11.10., 22.11. ja 13.12. pääset paikan päällä myös tapaamaan ja halaamaan Naperokinossa vierailevaa Myyrää, jonka seikkailuita voit seurata tänä syksynä myös Annantalon somessa!</p><p>Näytöksillä on joka viikko vaihtuva teema.</p><p>Kieli: suomi<br>Ikäsuositus: 0-3-vuotiaille vanhempiensa kanssa<br>Tila: 1. kerroksen oleskelutila</p>", "sv": "<p>Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!</p><p>De minsta barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se även för en liten stund i taget. En avslappnad, bekväm plats för filmvisningen gör det möjligt att byta blöjor, mata/amma barnet eller t.ex. ta en liten tupplur under de korta filmerna.</p><p>Syftet är att visa barnet filmer av hög kvalitet och gradvis vänja hen vid att ta emot och titta på långa barnfilmer på biografer. Under den första halvan av visningen som varar två timmar ligger fokusen på animerade filmer utan tal och på den andra halvan visas det favoriter med tal.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Ons 11.10, 22.11. och 13.12 på plats kan du också möta och krama Mullvaden som besöker Knattebion. Mullvadens äventyr kan du följa under hösten också i Annegårdens sociala medier!</p><p>Föreställningarna har ett varierande tema varje vecka. Den här veckan är temat fantasi!</p><p>Mer information från kultural producent, tel. +358 40 188 3416</p>", "en": "<p>Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!</p><p>The cinema for toddlers, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while. The relaxed, comfortable venue and setting allow nappy changes, feeding/breastfeeding, or even little naps between short films.</p><p>The goal is to show children high-quality films and gradually get them used to engaging with and watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on wordless animations suitable for even the smallest children, and the second hour will feature favourites with spoken dialogue.</p><p>Naperokino is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>On Wed Oct 11, Nov 22 and Dec 13 you also get to meet and hug Naperokino’s guest Mole, whose adventures you can also follow this autumn on Annantalo’s social media!</p><p>The screenings have a different theme each week. This week, it’s imagination!</p><p>For more information please contact cultural produces +358 40 188 3416</p>" }, "name": { "fi": "Naperokino: Mielikuvitus", "sv": "Knattebion: Fantasi", "en": "Naperokino (toddler cinema): Imagination" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60937/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60524", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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:u4804001050", "sub_events": [], "images": [ { "id": 4424, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:41.831885Z", "last_modified_time": "2023-09-07T14:24:41.831907Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731289.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4424/?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": "2023-09-07T14:24:40.854233Z", "last_modified_time": "2023-11-14T06:13:24.201209Z", "date_published": null, "start_time": "2023-10-17T10: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": "Luca on nuoren pojan aikuistumistarina jäätelön, pastan ja skootteriajeluiden parissa erään unohtumattoman kesän aikana.", "sv": "Luca är en uppväxtberättelse om en ung pojke som upplever en oförglömlig sommar full av glass, pasta och skoterturer.", "en": "‘Luca’ is a young boy’s coming-of-age story centred around ice cream, pasta and scooter rides during one unforgettable summer." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/35A078AC2B81BA2FD4CDDDCD6F3A1458/Syyslomaleffa_Luca_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/35A078AC2B81BA2FD4CDDDCD6F3A1458/Hostlovsfilm_Luca_7_", "en": "http://www.malmitalo.fi/en/events/event/35A078AC2B81BA2FD4CDDDCD6F3A1458/Autumn_holiday_film_Luca_7_" }, "description": { "fi": "<p>Luca on nuoren pojan aikuistumistarina jäätelön, pastan ja skootteriajeluiden parissa erään unohtumattoman kesän aikana.</p><p>Italian Rivieralle kauniiseen merenrantakaupunkiin sijoittuvassa Disneyn ja Pixarin alkuperäiselokuvassa Luca-poika seikkailee yhdessä ystävänsä Alberton kanssa, mutta kaiken hauskan uhkana on syvä salaisuus: he ovat merihirviöitä toisesta, merenalaisesta maailmasta.</p><p>Lucan on ohjannut Oscar-ehdokas <b>Enrico Casarosa</b> (La Luna) ja tuottanut <b>Andrea Warren</b> (Lava, Autot 3).</p><p>Kesto: 95 min<br>Ikäraja: 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Luca är en uppväxtberättelse om en ung pojke som upplever en oförglömlig sommar full av glass, pasta och skoterturer.</p><p>Luca delar dessa äventyr med sin vän, Alberto, men allt roligt hotas av en dold hemlighet: de är sjömonster från en annan värld under vattenytan.</p><p>Längd: 95 min <br>Åldersgräns: 7<br>Språk: finska</p>", "en": "<p>‘Luca’ is a young boy’s coming-of-age story centred around ice cream, pasta and scooter rides during one unforgettable summer.</p><p>Luca goes on adventures with his friend Alberto, but underneath all the fun is a deep secret: they are sea monsters from another world, under the sea.</p><p>Duration: 95 min <br>Age limit: 7<br>Language: Finnish</p>" }, "name": { "fi": "Syyslomaleffa: Luca (7)", "sv": "Höstlovsfilm: Luca (7)", "en": "Autumn holiday film: Luca (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60524/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60757", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/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:u4804001050", "sub_events": [], "images": [ { "id": 4423, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:39.927935Z", "last_modified_time": "2023-09-07T14:24:39.927954Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735821.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4423/?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": "2023-09-07T14:24:39.251995Z", "last_modified_time": "2023-11-14T06:13:24.126967Z", "date_published": null, "start_time": "2023-10-17T09:00:00Z", "end_time": "2023-10-17T11: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": "Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?", "sv": "Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?", "en": "Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/D14775BC657BBE003BF3D658ECE6C45A/Mita_kuuluu_Chile_", "sv": "http://www.caisa.fi/sv/evenemang/event/D14775BC657BBE003BF3D658ECE6C45A/Hur_ar_det_Chile_", "en": "http://www.caisa.fi/en/events/event/D14775BC657BBE003BF3D658ECE6C45A/How_Are_You_Chile_" }, "description": { "fi": "<p>Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?</p><p>Työpajan sisältö on saanut innoituksensa Club Gabriel Mistral para niños lastenkerhosta. Club Gabriel Mistral oli chileläispakolaisten perustama lastenkerho Suomessa. Sen toiminta sijoittui 70-luvun lopusta 2000-luvun alkuun. Kerhossa yhdessä tekeminen, leikki ja musiikki, toimivat kulttuurin ja espanjan kielen välittäjinä toisen polven chileläisille ja myöhemmin muillekin Latinalaisen Amerikan kulttuurista kiinnostuneille perheille.</p><p>Lasten taidetyöpajassa sukellamme suomalaischileläiseen historiaan ja Suomeen asti kantautuvaan chileläiseen kulttuuriin. Suomalaischileläisten taidekasvattajien johdolla rakennamme oman panhuilun tai run run -hyrrän. Musisoimme yhdessä ja tutustumme Caisassa olevaan Chile50-valokuvanäyttelyyn.</p><p>Ohjaaja: Aino Parada<br>Lisätietoja: teemu.savikurki@hel.fi<br>Kesto: 2,5 h<br>Ikäsuositus: 10–12-vuotiaille<br>Kieli: suomi, tarvittaessa espanja<br>Maksuton<br>Ryhmäkoko: maks. 10 osallistujaa/työpaja<br>Ilmoittautuminen:<br>Maanantai 16.10.2023 klo 12–14.30. Linkki: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tiistai 17.10.2023 klo 12–14.30. Linkki: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>", "sv": "<p>Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?</p><p>I konstverkstaden för barn dyker vi ner i den finsk-chilenska historian och den chilenska kulturen som når ända till Finland. Under ledning av finsk-chilenska konstpedagoger bygger vi vår egen panflöjt eller run run-snurra. Vi musicerar tillsammans och bekantar oss med fotoutställningen Chile50 som visas i Caisa.</p><p>Instruktör: Aino Parada<br>Mera info: teemu.savikurki@hel.fi<br>Längd: 2,5 t.<br>Åldersrekommendation: 10–12<br>Språk: finska<br>Kostnadsfri</p><p>Anmälan:<br>Mån. 16.10 kl. 12–14.30: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tis. 17.10 kl. 12–14.30: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>", "en": "<p>Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?</p><p>In this children’s art workshop, we will dive into the Finnish-Chilean history and the Chilean culture that reaches all the way to Finland. Under the guidance of Finnish-Chilean art educators, we will build our own panpipes or run run spinning tops. We will play music together and explore the Chile50 photo exhibition at Caisa.</p><p>Instructor: Aino Parada<br>More information: teemu.savikurki@hel.fi<br>Duration: 2.5 h<br>Age recommendation: 12 to 10<br>Language: Finnish</p><p>Registration:<br>Monday 16 October 12–14.30: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tuesday 17 October 12–14.30: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>" }, "name": { "fi": "Mitä kuuluu, Chile? – Chile50-näyttelyyn liittyvä taidetyöpaja 10–12-vuotiaille", "sv": "Hur är det, Chile? – Konstverkstad för barn i åldern 10–12 år i anslutning till utställningen Chile50", "en": "How Are You, Chile? – Art workshop related to the Chile50 exhibition for children aged 10–12" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60757/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60523", "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: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:u4804001050", "sub_events": [], "images": [ { "id": 4422, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:38.849339Z", "last_modified_time": "2023-09-07T14:24:38.849361Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731709.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4422/?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": "2023-09-07T14:24:38.705937Z", "last_modified_time": "2023-11-14T06:13:24.051379Z", "date_published": null, "start_time": "2023-10-17T08:00:00Z", "end_time": "2023-10-17T10: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": "Metsäneläinten pyykkipäivänä tehdään pyykkipoikaeläimiä!", "sv": "På skogsdjurens tvättdag skapar vi djur av klädnypor!", "en": "Let’s make animals from clothes pegs on wild animals’ laundry day!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CDFF52037D25BCC0EE684537AF60D146/Syyslomatyopaja_Metsanelainten_pyykkipaiva", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CDFF52037D25BCC0EE684537AF60D146/Hostlovsverkstad_Skogsdjurens_tvattdag", "en": "http://www.malmitalo.fi/en/events/event/CDFF52037D25BCC0EE684537AF60D146/Autumn_holiday_workshop_Wild_animals_laundry_day" }, "description": { "fi": "<p>Metsäneläinten pyykkipäivänä tehdään pyykkipoikaeläimiä!</p><p>Askartele nallenmörrikkä, pieni pupunen, harmaankirjava hiirulainen tai joku muu mieleisesi eläinihanuus.</p><p>Suunnittelu ja toteutus: Runoropinoita</p><p>Työpaja on Malmitalon aulassa, vapaa pääsy!</p>", "sv": "<p>På skogsdjurens tvättdag skapar vi djur av klädnypor!</p><p>Pyssla en lurvig nalle, en liten kanin, en gråspräcklig liten mus eller något annat underbart djur som du gillar.</p>", "en": "<p>Let’s make animals from clothes pegs on wild animals’ laundry day!</p><p>Create a teddy bear, a little bunny, a grey mouse or any other animal you like.</p>" }, "name": { "fi": "Syyslomatyöpaja: Metsäneläinten pyykkipäivä", "sv": "Höstlovsverkstad: Skogsdjurens tvättdag", "en": "Autumn holiday workshop Wild animals’ laundry day" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60523/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60756", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/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": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4421, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:38.472477Z", "last_modified_time": "2023-09-07T14:24:38.472507Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735823.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4421/?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": "2023-09-07T14:24:38.293748Z", "last_modified_time": "2023-11-14T06:13:23.906696Z", "date_published": null, "start_time": "2023-10-17T06:00:00Z", "end_time": "2023-10-17T08: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": "Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?", "sv": "Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?", "en": "Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/16AA2DD13358B0A426483645327C4928/Mita_kuuluu_Chile_", "sv": "http://www.caisa.fi/sv/evenemang/event/16AA2DD13358B0A426483645327C4928/Hur_ar_det_Chile_", "en": "http://www.caisa.fi/en/events/event/16AA2DD13358B0A426483645327C4928/How_Are_You_Chile_" }, "description": { "fi": "<p>Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?</p><p>Työpajan sisältö on saanut innoituksensa Club Gabriel Mistral para niños lastenkerhosta. Club Gabriel Mistral oli chileläispakolaisten perustama lastenkerho Suomessa. Sen toiminta sijoittui 70-luvun lopusta 2000-luvun alkuun. Kerhossa yhdessä tekeminen, leikki ja musiikki, toimivat kulttuurin ja espanjan kielen välittäjinä toisen polven chileläisille ja myöhemmin muillekin Latinalaisen Amerikan kulttuurista kiinnostuneille perheille.</p><p>Lasten taidetyöpajassa sukellamme suomalaischileläiseen historiaan ja Suomeen asti kantautuvaan chileläiseen kulttuuriin. Suomalaischileläisten taidekasvattajien johdolla rakennamme oman panhuilun tai run run -hyrrän. Musisoimme yhdessä ja tutustumme Caisassa olevaan Chile50-valokuvanäyttelyyn.</p><p>Ohjaaja: Aino Parada<br>Lisätietoja: teemu.savikurki@hel.fi<br>Kesto: 2,5 h<br>Ikäsuositus: 7–9-vuotiaille<br>Kieli: suomi, tarvittaessa espanja<br>Maksuton<br>Ryhmäkoko: maks. 10 osallistujaa/työpaja<br>Ilmoittautuminen:<br>Maanantai 16.10.2023 klo 9–11.30. Linkki: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tiistai 17.10.2023 klo 9–11.30. Linkki: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>", "sv": "<p>Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?</p><p>I konstverkstaden för barn dyker vi ner i den finsk-chilenska historian och den chilenska kulturen som når ända till Finland. Under ledning av finsk-chilenska konstpedagoger bygger vi vår egen panflöjt eller run run-snurra. Vi musicerar tillsammans och bekantar oss med fotoutställningen Chile50 som visas i Caisa.</p><p>Instruktör: Aino Parada<br>Mera info: teemu.savikurki@hel.fi<br>Längd: 2,5 t.<br>Åldersrekommendation: 7–9<br>Språk: finska<br>Kostnadsfri</p><p>Anmälan:<br>Mån. 16.10 kl. 9–11.30: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tis. 17.10 kl. 9–11.30: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>", "en": "<p>Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?</p><p>In this children’s art workshop, we will dive into the Finnish-Chilean history and the Chilean culture that reaches all the way to Finland. Under the guidance of Finnish-Chilean art educators, we will build our own panpipes or run run spinning tops. We will play music together and explore the Chile50 photo exhibition at Caisa.</p><p>Instructor: Aino Parada<br>More information: teemu.savikurki@hel.fi<br>Duration: 2.5 h<br>Age recommendation: 7 to 9<br>Language: Finnish</p><p>Registration:<br>Monday 16 October 9–11.30: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tuesday 17 October 9–11.30: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>" }, "name": { "fi": "Mitä kuuluu, Chile? – Chile50-näyttelyyn liittyvä taidetyöpaja 7–9-vuotiaille", "sv": "Hur är det, Chile? – Konstverkstad för barn i åldern 7–9 år i anslutning till utställningen Chile50", "en": "How Are You, Chile? – Art workshop related to the Chile50 exhibition for children aged 7–9" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60756/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60755", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/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:u4804001050", "sub_events": [], "images": [ { "id": 4418, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:35.143843Z", "last_modified_time": "2023-09-07T14:24:35.143874Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735820.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4418/?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": "2023-09-07T14:24:34.791046Z", "last_modified_time": "2023-11-14T06:13:23.687304Z", "date_published": null, "start_time": "2023-10-16T09:00:00Z", "end_time": "2023-10-16T11: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": "Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?", "sv": "Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?", "en": "Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C555146495B9D3D9767092B49327A0B6/Mita_kuuluu_Chile_", "sv": "http://www.caisa.fi/sv/evenemang/event/C555146495B9D3D9767092B49327A0B6/Hur_ar_det_Chile_", "en": "http://www.caisa.fi/en/events/event/C555146495B9D3D9767092B49327A0B6/How_Are_You_Chile_" }, "description": { "fi": "<p>Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?</p><p>Työpajan sisältö on saanut innoituksensa Club Gabriel Mistral para niños lastenkerhosta. Club Gabriel Mistral oli chileläispakolaisten perustama lastenkerho Suomessa. Sen toiminta sijoittui 70-luvun lopusta 2000-luvun alkuun. Kerhossa yhdessä tekeminen, leikki ja musiikki, toimivat kulttuurin ja espanjan kielen välittäjinä toisen polven chileläisille ja myöhemmin muillekin Latinalaisen Amerikan kulttuurista kiinnostuneille perheille.</p><p>Lasten taidetyöpajassa sukellamme suomalaischileläiseen historiaan ja Suomeen asti kantautuvaan chileläiseen kulttuuriin. Suomalaischileläisten taidekasvattajien johdolla rakennamme oman panhuilun tai run run -hyrrän. Musisoimme yhdessä ja tutustumme Caisassa olevaan Chile50-valokuvanäyttelyyn.</p><p>Ohjaaja: Aino Parada<br>Lisätietoja: teemu.savikurki@hel.fi<br>Kesto: 2,5 h<br>Ikäsuositus: 10–12-vuotiaille<br>Kieli: suomi, tarvittaessa espanja<br>Maksuton<br>Ryhmäkoko: maks. 10 osallistujaa/työpaja<br>Ilmoittautuminen:<br>Maanantai 16.10.2023 klo 12–14.30. Linkki: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tiistai 17.10.2023 klo 12–14.30. Linkki: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>", "sv": "<p>Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?</p><p>I konstverkstaden för barn dyker vi ner i den finsk-chilenska historian och den chilenska kulturen som når ända till Finland. Under ledning av finsk-chilenska konstpedagoger bygger vi vår egen panflöjt eller run run-snurra. Vi musicerar tillsammans och bekantar oss med fotoutställningen Chile50 som visas i Caisa.</p><p>Instruktör: Aino Parada<br>Mera info: teemu.savikurki@hel.fi<br>Längd: 2,5 t.<br>Åldersrekommendation: 10–12<br>Språk: finska<br>Kostnadsfri</p><p>Anmälan:<br>Mån. 16.10 kl. 12–14.30: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tis. 17.10 kl. 12–14.30: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>", "en": "<p>Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?</p><p>In this children’s art workshop, we will dive into the Finnish-Chilean history and the Chilean culture that reaches all the way to Finland. Under the guidance of Finnish-Chilean art educators, we will build our own panpipes or run run spinning tops. We will play music together and explore the Chile50 photo exhibition at Caisa.</p><p>Instructor: Aino Parada<br>More information: teemu.savikurki@hel.fi<br>Duration: 2.5 h<br>Age recommendation: 12 to 10<br>Language: Finnish</p><p>Registration:<br>Monday 16 October 12–14.30: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tuesday 17 October 12–14.30: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>" }, "name": { "fi": "Mitä kuuluu, Chile? – Chile50-näyttelyyn liittyvä taidetyöpaja 10–12-vuotiaille", "sv": "Hur är det, Chile? – Konstverkstad för barn i åldern 10–12 år i anslutning till utställningen Chile50", "en": "How Are You, Chile? – Art workshop related to the Chile50 exhibition for children aged 10–12" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60755/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60297", "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:288/?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: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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?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:u4804001050", "sub_events": [], "images": [ { "id": 4417, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:34.541485Z", "last_modified_time": "2023-09-07T14:24:34.541520Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734731.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4417/?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": "2023-09-07T14:24:34.374044Z", "last_modified_time": "2023-11-14T06:13:23.603608Z", "date_published": null, "start_time": "2023-10-16", "end_time": "2023-10-19", "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": "Kurssin aikana lapset pääsevät tutustumaan suunnittelijan työhön. Kurssilla piirretään, suunnitellaan, muovataan ja rakennetaan.", "sv": "Under kursen får barnen bekanta sig med designerns arbete. På kursen får deltagarna teckna, designa, forma och bygga.", "en": "During the course, children will be introduced to the work of a designer. The course will involve drawing, designing, shaping and building." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F52A30F47C3C7BF9FD16EF8DBBE2D543/REDESIGN-kurssi_TAYNNA", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F52A30F47C3C7BF9FD16EF8DBBE2D543/Hostlovskursen_REDESIGN_FULLBOKAT", "en": "http://www.vuotalo.fi/en/events/event/F52A30F47C3C7BF9FD16EF8DBBE2D543/REDESIGN_Autumn_holiday_course_FULLY_BOOKED" }, "description": { "fi": "<p>Kurssin aikana lapset pääsevät tutustumaan suunnittelijan työhön. Kurssilla piirretään, suunnitellaan, muovataan ja rakennetaan.</p><p>Suunnitteluprosessi etenee inspiraatiosta, ideoinnin kautta toteutukseen. Kurssilla opitaan visuaalisesta viestinnästä tekemällä oma symbolikartasto ja logo.</p><p>Kurssin aikana saadaan kaksi tehtävänantoa eli briefiä. Ensimmäisessä briefissä suunnitellaan mehiläisten inspiroima kahvilakonsepti ja toisessa briefissä muotoillaan oman tuotteen prototyyppi ja tehdään tuotteelle visuaalinen käyttöohje.</p><p>Kurssin aikana tehdään erilaisia tehtäviä ja hauskoja harjoituksia. Kurssille suunnitellut monistepohjat tukevat oppimista. Lasten on mahdollista osallistua leikkimielisiin kisoihin, joissa pisteet jaetaan makeisten muodossa. Kurssilla tehdään flow-harjoituksia, joiden tarkoitus on auttaa löytämään omat supervoimat ja auttaa rauhoittumisessa ja keskittymisessä.</p><p>REDESIGN toteutetaan englanninkielisenä. Opetusta on kurssipäivinä klo 10–14.</p><p>Ilmoita koululainen kurssille: salla.fornaro@hel.fi tai 09 310 26154, 040 537 1520</p><p>Kohderyhmä: 3.–6.-luokkalaiset<br>Hinta: 0 €<br>Kieli: englanti (suomi)<br>Ohjaaja: Milla Koivisto / Manual Productions</p>", "sv": "<p>Under kursen får barnen bekanta sig med designerns arbete. På kursen får deltagarna teckna, designa, forma och bygga.</p><p>Designprocessen går från inspiration via idéarbete till utförande. På kursen lär sig deltagarna visuell kommunikation genom att skapa en egen symbolkarta och logotyp. Under kursen ges deltagarna två uppgiftsbeskrivningar, så kallade brief. I den första ska de designa ett cafékonsept inspirerat av bin och i den andra designar de en prototyp av sin produkt och skapar en visuell bruksanvisning för produkten.</p><p>Under kursen görs olika uppgifter och roliga övningar. Som stöd för lärandet finns stenciler som satts samman för kursen. Barnen kan delta i lekfulla tävlingar där poängen ges i form av godis. Under kursen görs flowövningar som syftar till att hitta de egna superkrafterna och hjälpa barnen att hitta lugnet och koncentrationen. Språket på Redesign är engelska.</p><p>För 3:e-6:e klassare<br>Pris: 0 €<br>Språk: engelska (finska) <br>Kursinstruktör: Milla Koivisto / Manual Productions</p><p>Anmäl studenten till kursen: salla.fornaro@hel.fi eller 09 310 26154, 040 537 1520</p>", "en": "<p>During the course, children will be introduced to the work of a designer. The course will involve drawing, designing, shaping and building.</p><p>The design process will go from inspiration, through ideation, to realisation. The course will teach the participants about visual communication by creating their own symbol map and logo. During the course, the participants will receive two briefs. The first brief is to design a café concept inspired by bees and the second brief is to design a prototype of a product and create a visual user manual for the product.</p><p>The course will include a variety of exercises and amusing activities. The multiple handouts designed for the course will support learning. The children will have the opportunity to participate in playful competitions where points will be awarded in the form of sweets. The course will feature flow exercises to help the participants discover their own superpowers as well as to calm down and focus. The REDESIGN course is taught in English.</p><p>For children in 3th–6th grade<br>Price: 0 €<br>Language: English (Finnish) <br>Instructor: Milla Koivisto / Manual Productions</p><p>Register the student for the course: salla.fornaro@hel.fi or 09 310 26154, 040 537 1520</p>" }, "name": { "fi": "REDESIGN-kurssi | TÄYNNÄ – Syysloma", "sv": "Höstlovskursen REDESIGN | FULLBOKAT", "en": "REDESIGN Autumn holiday course | FULLY BOOKED" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60297/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60765", "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:301/?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:602/?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: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: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": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4416, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:34.136776Z", "last_modified_time": "2023-09-07T14:24:34.136797Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736373.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4416/?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": "2023-09-07T14:24:33.985800Z", "last_modified_time": "2023-11-14T06:13:23.532817Z", "date_published": null, "start_time": "2023-10-16T07: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": "16.–20.10.2023 ma–pe klo 10–13" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/311EA310FAA2F23BEA716E1A02CB12D6/Arkkitehtuurikurssi_Unelmien_taloja_ja_huonetiloja_TAYNNA" }, "description": { "fi": "<p>16.–20.10.2023 ma–pe klo 10–13</p><p>Syyslomakurssilla pääset suunnittelemaan ja rakentamaan omia unelmien huoneita ja mielikuvituksellisia taloja käyttäen erilaisia materiaaleja. Samalla tutustut suunnittelun ja arkkitehtuurin peruskäsitteisiin.</p><p>Opettajana TaM, kuvataideopettaja Katja Koponen<br>Hinta: 0 €<br>Ikäsuositus: alakoululaisille<br>Ilmoittaudu mukaan 1.9. alkaen: salla.fornaro@hel.fi tai soita 040 5371520.</p>" }, "name": { "fi": "Arkkitehtuurikurssi: Unelmien taloja ja huonetiloja | TÄYNNÄ – Syyslomakurssi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60765/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60754", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/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:u4804001050", "sub_events": [], "images": [ { "id": 4415, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:33.730136Z", "last_modified_time": "2023-09-07T14:24:33.730163Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735822.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4415/?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": "2023-09-07T14:24:32.857996Z", "last_modified_time": "2023-11-14T06:13:23.453706Z", "date_published": null, "start_time": "2023-10-16T06:00:00Z", "end_time": "2023-10-16T08: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": "Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?", "sv": "Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?", "en": "Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F6B3C772211B9A79E2E0758A301FE7E0/Mita_kuuluu_Chile_", "sv": "http://www.caisa.fi/sv/evenemang/event/F6B3C772211B9A79E2E0758A301FE7E0/Hur_ar_det_Chile_", "en": "http://www.caisa.fi/en/events/event/F6B3C772211B9A79E2E0758A301FE7E0/How_Are_You_Chile_" }, "description": { "fi": "<p>Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?</p><p>Työpajan sisältö on saanut innoituksensa Club Gabriel Mistral para niños lastenkerhosta. Club Gabriel Mistral oli chileläispakolaisten perustama lastenkerho Suomessa. Sen toiminta sijoittui 70-luvun lopusta 2000-luvun alkuun. Kerhossa yhdessä tekeminen, leikki ja musiikki, toimivat kulttuurin ja espanjan kielen välittäjinä toisen polven chileläisille ja myöhemmin muillekin Latinalaisen Amerikan kulttuurista kiinnostuneille perheille.</p><p>Lasten taidetyöpajassa sukellamme suomalaischileläiseen historiaan ja Suomeen asti kantautuvaan chileläiseen kulttuuriin. Suomalaischileläisten taidekasvattajien johdolla rakennamme oman panhuilun tai run run -hyrrän. Musisoimme yhdessä ja tutustumme Caisassa olevaan Chile50-valokuvanäyttelyyn.</p><p>Ohjaaja: Aino Parada<br>Lisätietoja: teemu.savikurki@hel.fi<br>Kesto: 2,5 h<br>Ikäsuositus: 7–9-vuotiaille<br>Kieli: suomi, tarvittaessa espanja<br>Maksuton<br>Ryhmäkoko: maks. 10 osallistujaa/työpaja<br>Ilmoittautuminen:<br>Maanantai 16.10.2023 klo 9–11.30. Linkki: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tiistai 17.10.2023 klo 9–11.30. Linkki: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>", "sv": "<p>Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?</p><p>I konstverkstaden för barn dyker vi ner i den finsk-chilenska historian och den chilenska kulturen som når ända till Finland. Under ledning av finsk-chilenska konstpedagoger bygger vi vår egen panflöjt eller run run-snurra. Vi musicerar tillsammans och bekantar oss med fotoutställningen Chile50 som visas i Caisa.</p><p>Instruktör: Aino Parada<br>Mera info: teemu.savikurki@hel.fi<br>Längd: 2,5 t.<br>Åldersrekommendation: 7–9<br>Språk: finska<br>Kostnadsfri</p><p>Anmälan:<br>Mån. 16.10 kl. 9–11.30: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tis. 17.10 kl. 9–11.30: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>", "en": "<p>Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?</p><p>In this children’s art workshop, we will dive into the Finnish-Chilean history and the Chilean culture that reaches all the way to Finland. Under the guidance of Finnish-Chilean art educators, we will build our own panpipes or run run spinning tops. We will play music together and explore the Chile50 photo exhibition at Caisa.</p><p>Instructor: Aino Parada<br>More information: teemu.savikurki@hel.fi<br>Duration: 2.5 h<br>Age recommendation: 7 to 9<br>Language: Finnish</p><p>Registration:<br>Monday 16 October 9–11.30: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tuesday 17 October 9–11.30: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>" }, "name": { "fi": "Mitä kuuluu, Chile? – Chile50-näyttelyyn liittyvä taidetyöpaja 7–9-vuotiaille", "sv": "Hur är det, Chile? – Konstverkstad för barn i åldern 7–9 år i anslutning till utställningen Chile50", "en": "How Are You, Chile? – Art workshop related to the Chile50 exhibition for children aged 7–9" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60754/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59818", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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: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:u4804001050", "sub_events": [], "images": [ { "id": 4413, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:30.927135Z", "last_modified_time": "2023-09-07T14:24:30.927167Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730356.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4413/?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": "2023-09-07T14:24:30.667039Z", "last_modified_time": "2023-11-14T06:13:23.237839Z", "date_published": null, "start_time": "2023-10-15T10:00:00Z", "end_time": "2023-10-15T12: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": "Kohta kääntyy käsi – ehkä myös silmä! Taideneuvolan perinteisessä koko perheen työpajapäivässä hypätään käsittämättömiin juttuihin.", "sv": "Snart vänder handen – kanske också ögat! Under Konstrådgivningens traditionella verkstadsdag för hela familjen hoppar vi in i obegripliga grejer.", "en": "This is a great opportunity to try your hand at new things! Jump into the unknown during the traditional Art Clinic’s workshop day for the whole family." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0339431B45610F157722825258FA0C69/Kaden_kaanteessa_", "sv": "http://www.annantalo.fi/sv/evenemang/event/0339431B45610F157722825258FA0C69/Kaden_kaanteessa_", "en": "http://www.annantalo.fi/en/events/event/0339431B45610F157722825258FA0C69/Kaden_kaanteessa_" }, "description": { "fi": "<p>Kohta kääntyy käsi – ehkä myös silmä! Taideneuvolan perinteisessä koko perheen työpajapäivässä hypätään käsittämättömiin juttuihin.</p><p>Pajoissa pääset kokeilemaan miten muotoutuu huopa, kuinka toimii katapultti, millainen pesä on tuulella ja kulkeeko valo kehyksestä. Myös Annantalon näyttely ”Ihmeellinen kone” avautuu.</p><p>Ja kaikki tämä kädenkäänteessä!</p><p>Kaikkiin päivän työpajoihin on vapaa pääsy. Tarkempi ohjelma alla.</p><p>Tapahtuman järjestävät yhdessä Annantalo ja vapaaehtoisten Äly vapaa -yhteisö.</p><p>Ikäsuositus: kaikenikäisille, lapset alle 8 v. aikuisen kanssa.<br>Työskentelykieli: suomi</p><p><b>Työpajat ja ohjelma:</b></p><p><b> Klovni K</b> klo 12.45-15.00 (2.krs käytävä)<br>Kuinka palloilla voi jongleerata? Klovni K näyttää! Ja temppuilee ja jekuttaa.</p><p><b>Byggaa stadii</b> klo 13–15.30 (eteläinen lasigalleria)<br>Rakenna oma korttelisi Aallon puista!<br>Tapahtuman jälkeen toiminnallinen näyttely 2. kerroksen eteläisessä lasigalleriassa 16.–21.10.</p><p><b>Ohoh! Ahah!-pikkuvalopaja</b> klo 13-15 valotyöskentelyä ja klo 15.10-15.30 diashow (kuva 1 luokka)<br>Luvassa valon kokeellista ja taianomaista tutkimista. Syntyy yllättävä elämys – käden käänteessä – ja pienestä tulee suuren suurta! Tutut, arkipäiväiset materiaalit muuttuvat valon voimalla salaperäisiksi kuviksi ja vanhat valokoneet, kuten diaprojektorit, pääsevät kaappien kätköistä hommiin!</p><p><b>Pahviseireeni</b> klo 13–15.30 (2.krs käytävä)<br>Pahvilaatikoita, teippiä, saksia ja värejä! Annantalon 2. kerroksen käytävälle rakentuu omituinen suuri pahviseireeni joka seilaa houkuttelevana ja moneen suuntaan kurkottavana käytävän keskellä. Onko seireenillä monta päätä? Missä sen kädet ovat? Voiko pyrstön alta kömpiä?</p><p><b>Pieni pehmeä pramea pallero!</b> klo 13–15.30 (tekstiililuokka)<br>Siis, huovutetaan pallo lampaanvillasta! Huovutusvilla on tuoksuva, värikäs ja pehmeä. Luodaan pallo villasta, joka kastellaan mäntysuopavedellä. Pallo huovutetaan käsin hieromalla, hellästi ja kiireettömästi.</p><p><b>Pultti</b> klo 13–15.00 (grafiikanluokka)<br>Tuomaroitava katapulttikisa kaikenikäisille. <br>Melko perinteiset palkinnot. Ohjaajina ammusmestari Kati Pulttinen & ratapäällikkö Lento Ratanen.</p><p><b>Tuulentupa</b> klo 13–15.30 (kuva 2-luokka)<br>Pajassa tehdään käden käänteessä metsän taikaa ja kesän muistoja. Kesäkukkia, käpyjä, kaisloja, kiviä oksia, sammalta ynnä muuta!</p><p><b>Ihmeellinen kone-näyttely</b> klo 13-16 (galleria)<br>Alakerran gallerioihin tapahtuman yhteydessä avautuvassa näyttelyssä tutkitaan taidetta, joka on tavalla tai toisella liikkeessä!</p><p><b>Huom! Pajoihin viimeiset osallistujat otetaan sisään klo 15.00</b></p><p>Tapahtuman aikana rakastetun Skidilä-kahvilan pop up -pikkusisar <b>Skidimpi cafe</b> tarjoilee legendaarisen hyviä Skidilän korvapuusteja (v), kahvia, mehua ja pientä suolaista purtavaa! Avoinna klo 12–15.30. Maksuvatavat: käteinen, Pivo ja Mobilepay.</p>", "sv": "<p>Snart vänder handen – kanske också ögat! Under Konstrådgivningens traditionella verkstadsdag för hela familjen hoppar vi in i obegripliga grejer.</p><p>I verkstäderna får du testa hur en katapult fungerar, hur filt blir till, hur ett bo för vinden ser ut och hur ljuset färdas ur ramen. Och allt detta i en handvändning!</p>", "en": "<p>This is a great opportunity to try your hand at new things! Jump into the unknown during the traditional Art Clinic’s workshop day for the whole family.</p><p>In the workshops, you will have the chance to try out how a catapult works, how a blanket is made, what a nest for the wind looks like and how light passes through frames. And all this will happen with a wave of the hand!</p>" }, "name": { "fi": "Käden käänteessä! – Taideneuvolan työpajapäivä", "sv": "Käden käänteessä! – Konstrådgivningens verkstadsdag", "en": "Käden käänteessä! – Art Clinic’s workshop day" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59818/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61081", "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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5165, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:18.594525Z", "last_modified_time": "2023-10-09T13:30:18.594571Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737448.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5165/?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": "2023-10-09T13:30:18.455983Z", "last_modified_time": "2023-11-14T06:13:22.704487Z", "date_published": null, "start_time": "2023-10-14T12:00:00Z", "end_time": "2023-10-14T13: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": "Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/195CA93ADBD8F6855224BF244AC0FB3A/Muumipeikko_ja_pyrstotahti_S_" }, "description": { "fi": "<p>Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!</p><p>Eräänä sateisena iltana Muumilaakson rauhaisaan idylliin saapuu filosofiksi esittäytyvä Piisamirotta ennustamaan koko maapalloa kohtaavaa katastrofia. Yhtäkkiä kesä ei olekaan enää niin kuin ennen. Muumipeikon, Nipsun ja Pikku Myyn on lähdettävä vaikeakulkuiseen seikkailuun tähtitornivuoren huipulle selvittämään, onko maailmanloppu todella tulossa.</p><p>Elämän palaaminen uomiinsa edellyttää Muumilaakson väeltä ennennäkemätöntä sankaruutta. Matkalla kohdataan jännittäviä vaaroja, mutta myös luonnon ihmeitä ja uskomattomia aarteita – ja solmitaan korvaamattomia uusia ystävyyksiä. Tarinassa tavataan myös seikkailija Nuuskamuikkunen sekä viisas keksijä Niisku ja hänen siskonsa Niiskuneiti.</p><p>Vahvistunein joukoin kotiin Muumilaaksoon palattuaan on ystävyksillä entistäkin paremmat eväät niin pyörremyrskyiltä kuin pyrstötähdiltä suojautumiseen ja koko Muumi-perheen pelastamiseen. Tarvitaan vain kekseliäisyyttä, yhteishenkeä ja valmiutta auttaa apua tarvitsevia, jotta kaikki pysyvät turvassa merkillisiltä luonnonilmiöiltä.</p>" }, "name": { "fi": "Muumipeikko ja pyrstötähti (S) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61081/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }