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
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 ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=128
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=129", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=127" }, "data": [ { "id": "kulke:65101", "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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153091, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-27T11:14:29.251843Z", "last_modified_time": "2024-11-27T11:14:29.251937Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745815.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153091/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-27T11:14:29.210605Z", "last_modified_time": "2024-12-20T01:14:21.350553Z", "date_published": null, "start_time": "2024-12-11T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1EB9ACC467D1708A89F2F77A18BEB6EA/Crossing_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1EB9ACC467D1708A89F2F77A18BEB6EA/Crossing_7_", "en": "http://www.malmitalo.fi/en/events/event/1EB9ACC467D1708A89F2F77A18BEB6EA/Crossing_7_" }, "provider_contact_info": null, "short_description": { "fi": "Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle." }, "description": { "fi": "<p>Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle.</p><p>Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan. Rähjäinen naapurinpoika Achi väittää tietävänsä Teklan uuden osoitteen Istanbulissa.</p><p>Kaksikko ylittää rajan ja seilaa Bosporin salmen yli ajattomaan ja uskomattomaan Istanbuliin, missä totuudella on monet kasvot. Jostain löytyy apua aina kun tilanne tuntuu toivottomalta. Trans-oikeuksien puolesta kampanjoiva Evrim näyttää tuntevan kaikki, ja kaikki avaavat hänelle ovensa.</p><p>And Then We Danced -ohjaaja Levan Akin on kirjoittanut ja ohjannut paikan tuntua sykkivän tarinan, jossa syrjäisten kujien musiikki kuljettaa kaksikkoa yhä uusiin yhteisöihin. Tekla halusi ehkä kadota, mutta hän tuntuu olevan koko ajan yhä lähempänä.</p><p>Ruotsin ehdokas Pohjoismaiden neuvoston vuoden 2024 elokuvapalkinnon saajaksi.</p><p>Ikäraja: 7<br>Kesto: 106 min.<br>Ensi-ilta: 08.11.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>" }, "provider": null, "name": { "fi": "Crossing (7) – Kino Helios", "sv": "Crossing (7) – Kino Helios", "en": "Crossing (7) – Kino Helios" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65101/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65005", "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: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153042, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-16T13:14:59.507696Z", "last_modified_time": "2024-11-16T13:14:59.507713Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763387.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153042/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-16T13:14:59.469189Z", "last_modified_time": "2024-12-20T01:14:21.259198Z", "date_published": null, "start_time": "2024-12-11T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C25F8A7CE29C44079647C952D407397A/Mummola_7_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C25F8A7CE29C44079647C952D407397A/Mummola_7_", "en": "http://www.vuotalo.fi/en/events/event/C25F8A7CE29C44079647C952D407397A/Mummola_7_" }, "provider_contact_info": null, "short_description": { "fi": "Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.", "sv": "Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.", "en": "The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships." }, "description": { "fi": "<p>Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.</p><p>Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona. Kuten tavallista, isoisä Lasse (Tom Wentzel) juo liikaa, isoäiti Ella (Leena Uotila) on huolissaan kaikista ja sisarukset lankeavat vanhoihin riitoihinsa. Vain lapsilla tuntuu olevan kivaa. Joulun jälkeen jokainen lähtee omille teilleen ja palaa arkeen.</p><p>Tia Kouvon purevan humoristinen, elämänmakuinen elokuvadebyytti on tragikoominen tutkielma perhedynamiikasta, yksinäisyydestä ja yhdessäolosta — kuinka yritämme löytää yhteyden, mutta emme aina onnistu siinä.</p><p>Kesto: 115 min<br>K-7<br>Kieli: suomi, tekstitys ruotsiksi<br>Vapaa sisäänpääsy!<br>Ohjaaja: Tia Kouvo, 2023<br>Näyttelijät:Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä ja Jarkko Pajunen.</p>", "sv": "<p>Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.</p><p>Varje år vid jul besöker systrarna Susanna (Ria Kataja) och Helena (Elina Knihtilä) sina föräldrar med sina familjer. Som vanligt dricker morfar Lasse (Tom Wentzel) för mycket, mormor Ella (Leena Uotila) oroar sig för alla och syskonen faller in i sina gamla gräl. Bara barnen verkar ha roligt. Efter julen går alla skilda vägar och återgår till vardagen.</p><p>Tia Kouvos bitande humoristiska och livsbejakande filmdebut är en tragikomisk studie av familjedynamik, ensamhet och samvaro – hur vi försöker få kontakt men inte alltid lyckas.</p><p>Längd: 115 min.<br>F-7<br>Språk: finska, undertexter på svenska<br>Fri entré!<br>Regi: Tia Kouvo<br>I rollerna: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä och Jarkko Pajunen.</p>", "en": "<p>The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships.</p><p>The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships.</p><p>Every year at Christmas, sisters Susanna (Ria Kataja) and Helena (Elina Knihtilä) and their parents visit their parents. As usual, Grandpa Lasse (Tom Wentzel) drinks too much, Grandma Ella (Leena Uotila) is worried about everyone and the sisters fall back into their old quarrels. Only the children seem to be having fun. After Christmas, everyone goes their separate ways and to their everyday lives.</p><p>Tia Kouvo's bitingly humorous film debut is a tragicomic treatise on family dynamics, loneliness and togetherness — how we try to find a connection but don't always succeed.</p><p>Duration: 115 mins.<br>Age recommendation: 7+<br>Language: Finnish with subtitles in Swedish<br>Free entry!<br>Director: Tia Kouvo<br>Cast: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä and Jarkko Pajunen.</p>" }, "provider": null, "name": { "fi": "Mummola (7) – Keskiviikkokino", "sv": "Mummola (7) – Onsdagskino", "en": "Mummola (7) – Wednesday movie" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65005/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63579", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "25 €", "sv": "25 €", "en": "25 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-joulun-tuoksu-joulukonsertti-kanneltalo-19102697/", "sv": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-joulun-tuoksu-joulukonsertti-kanneltalo-19102697/", "en": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-joulun-tuoksu-joulukonsertti-kanneltalo-19102697/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152128, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-16T12:15:41.715462Z", "last_modified_time": "2024-08-16T12:15:41.715480Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751672.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152128/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-16T12:15:41.681018Z", "last_modified_time": "2024-12-20T01:14:21.141312Z", "date_published": null, "start_time": "2024-12-11T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5406261668F9CCD58CB8C40F7EEC5D37/Jore_Marjaranta_Olli_Ahvenlahti", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5406261668F9CCD58CB8C40F7EEC5D37/Jore_Marjaranta_Olli_Ahvenlahti", "en": "http://www.kanneltalo.fi/en/events/event/5406261668F9CCD58CB8C40F7EEC5D37/Jore_Marjaranta_Olli_Ahvenlahti" }, "provider_contact_info": null, "short_description": { "fi": "Virittäydytään jouluun! Konsertissa kuullaan tunnelmallisia ja koskettavia joululauluja.", "sv": "Vi kommer i julstämning! På konserten får vi höra stämningsfulla och älskade julsånger.", "en": "Let's get ready for Christmas! The concert will feature atmospheric and touching Christmas carols." }, "description": { "fi": "<p>Virittäydytään jouluun! Konsertissa kuullaan tunnelmallisia ja koskettavia joululauluja.</p><p>Leningrad Cowboys -yhtyeen keulahahmona tutuksi tullut kaunisääninen pop-tenori Jore Marjaranta on tehnyt mittavan soolouran laulaja-lauluntekijänä useiden albumien ja esiintymisten myötä.</p><p>Pianon ääreen istahtaa Olli Ahvenlahti, tuo television monista musiikkiohjelmista tuttu pianisti, säveltäjä ja kapellimestari, kotimaisen musiikkiviihteen grand old man.</p><p>Kaksikon Joulun tuoksu -konserttikokonaisuudessa kuullaan tunnelmallisia ja koskettavia joululauluja.</p><p>Kesto 1 t 50 min, sis. 20 min väliajan</p>", "sv": "<p>Vi kommer i julstämning! På konserten får vi höra stämningsfulla och älskade julsånger.</p><p>Den skönsjungande poptenoren Jore Marjaranta, som blev känd som frontfigur i bandet Leningrad Cowboys, har haft en omfattande solokarriär som sångare och låtskrivare med flera album och framträdanden.</p><p>Vid pianot sitter Olli Ahvenlahti, pianist, kompositör och dirigent, den finländska musikunderhållningens grand old man, känd från många musikprogram i TV.</p><p>Duons konsert Joulun tuoksu innefattar stämningsfulla och älskade julsånger.</p><p>Längd 1 h 50 min., inkl. en paus på 20 minuter</p>", "en": "<p>Let's get ready for Christmas! The concert will feature atmospheric and touching Christmas carols.</p><p>The beautiful pop-tenor of Jore Marjaranta, known for being the frontman of the Leningrad Cowboys, has forged an extensive solo career as a singer-songwriter with several albums and shows.</p><p>At the piano, we have Olli Ahvenlahti, pianist, composer and conductor familiar from many music shows on television, the grand old man of Finland’s music entertainment.</p><p>The duo's Christmas Concert will feature atmospheric and touching Christmas songs.</p><p>Duration 1 h 50 min, incl. 20 min intermission</p>" }, "provider": null, "name": { "fi": "Jore Marjaranta & Olli Ahvenlahti – Joulun tuoksu -konsertti", "sv": "Jore Marjaranta & Olli Ahvenlahti – Konsert – Joulun tuoksu, Doften av jul", "en": "Jore Marjaranta & Olli Ahvenlahti – Christmas Concert" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63579/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64932", "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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ismo-maailman-hauskin-ulkopuolinen-3764508/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-ismo-maailman-hauskin-ulkopuolinen-3764508/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-ismo-maailman-hauskin-ulkopuolinen-3764508/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152978, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-06T15:14:50.716424Z", "last_modified_time": "2024-11-06T15:14:50.716438Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745814.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152978/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-06T15:14:50.680274Z", "last_modified_time": "2024-12-20T01:14:20.961585Z", "date_published": null, "start_time": "2024-12-11T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/22C4DEE784E1F7D35CA23EDB2563A6CB/ISMO_-_Maailman_hauskin_ulkopuolinen_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/22C4DEE784E1F7D35CA23EDB2563A6CB/ISMO_-_Maailman_hauskin_ulkopuolinen_S_", "en": "http://www.malmitalo.fi/en/events/event/22C4DEE784E1F7D35CA23EDB2563A6CB/ISMO_-_Maailman_hauskin_ulkopuolinen_S_" }, "provider_contact_info": null, "short_description": { "fi": "ISMO - Maailman hauskin ulkopuolinen on elokuvaversio sanonnasta \"Vaikeuksien kautta voittoon\"." }, "description": { "fi": "<p>ISMO - Maailman hauskin ulkopuolinen on elokuvaversio sanonnasta \"Vaikeuksien kautta voittoon\".</p><p>Jyväskylässä varttunut Ismo Leikola on vilkkaalla mielikuvituksella varustettu ujo poika, jolla on vaikeuksia kuulua joukkoon. Parikymppisenä opiskelijana hän törmää Suomessa uuteen ilmaisumuotoon, stand up -komediaan, joka sopii hänelle täydellisesti. Ismo nousee nopeasti Suomen menestyneimmäksi stand up -esiintyjäksi, mutta se ei hänelle riitä. Ismo päättää lähteä luomaan uraa Yhdysvaltoihin, maailman tunnetuimpien koomikkojen kotimaahan.</p><p>Elokuva kertoo miten itsensä ulkopuoliseksi kokeva pienen paikkakunnan kasvatti kääntää erikoislaatuisensa supervoimaksi ja äärimmäisen kovalla työllä sekä itseensä uskomalla onnistuu nousemaan omaääniseksi ja rakastetuksi supertähdeksi.</p><p>Ikäraja: S<br>Kesto: 98 min.<br>Ensi-ilta: 1.11.2024</p>" }, "provider": null, "name": { "fi": "ISMO - Maailman hauskin ulkopuolinen (S) – Kino Helios", "sv": "ISMO - Maailman hauskin ulkopuolinen (S) – Kino Helios", "en": "ISMO - Maailman hauskin ulkopuolinen (S) – Kino Helios" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64932/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64437", "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: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/yso:p1235/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152198, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-23T08:15:24.405156Z", "last_modified_time": "2024-08-23T08:15:24.405179Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757206.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152198/?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": "2024-08-23T08:15:24.380230Z", "last_modified_time": "2024-12-20T01:14:20.783465Z", "date_published": null, "start_time": "2024-12-11T08:30:00Z", "end_time": "2024-12-11T09:20:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/231224548B21DE38659315261B9E6B08/Jouluinen_koulukino_Joulupukki_ja_noitarumpu", "sv": "http://www.vuotalo.fi/sv/evenemang/event/231224548B21DE38659315261B9E6B08/Jouluinen_koulukino_Joulupukki_ja_noitarumpu", "en": "http://www.vuotalo.fi/en/events/event/231224548B21DE38659315261B9E6B08/Jouluinen_koulukino_Joulupukki_ja_noitarumpu" }, "provider_contact_info": null, "short_description": { "fi": "Virittäydytään joulun tunnelmaan! Mauri Kunnaksen lämminhenkinen koko perheen animaatioelokuva täynnä jännitystä ja hauskoja yllätyksiä." }, "description": { "fi": "<p>Virittäydytään joulun tunnelmaan! Mauri Kunnaksen lämminhenkinen koko perheen animaatioelokuva täynnä jännitystä ja hauskoja yllätyksiä.</p><p>Lukiessaan joululahjatoiveita Joulupukki saa erikoisen kirjeen. Kaikki olettavat sen sisältävän joululahjatoiveen Vekara-nimiseltä lapselta. Joulupukki ei saa viestissä olevasta kuvasta selvää, joten hän päättää käydä yhdessä Nooran ja Villen kanssa näyttämässä kuvaa mestaritontuille. Samaan aikaan kylässä tapahtuu kummia, kun Joulupukkia vainoavat erilaiset oudot onnettomuudet. Mitä kummaa Korvatunturilla tapahtuu?</p><p>Elokuva valmistui vuonna 1996. <br> Kesto: 50 min <br>Kieli: suomi <br>Ikäraja: sallittu</p><p>Ryhmille ennakkoilmoittautumiset osoitteessa kultus.fi</p>", "sv": "<p>Låt oss hitta julstämningen! Mauri Kunnas varma animationsfilm för hela familjen, full av spänning och roliga överraskningar.</p><p>Längd: 50 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi</p>", "en": "<p>Let’s get into the Christmas spirit! Mauri Kunnas’ warm-hearted animated film for the whole family, full of excitement and great surprises.</p><p>Duration: 50 min<br>Language: Finnish<br>Registration for groups at kultus.fi</p>" }, "provider": null, "name": { "fi": "Jouluinen koulukino: Joulupukki ja noitarumpu", "sv": "Jouluinen koulukino: Joulupukki ja noitarumpu", "en": "Jouluinen koulukino: Joulupukki ja noitarumpu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64437/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64526", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152309, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-05T11:14:02.852954Z", "last_modified_time": "2024-09-05T11:14:02.852973Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749849.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152309/?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": "2024-09-05T11:14:02.836529Z", "last_modified_time": "2024-12-20T01:14:20.670354Z", "date_published": null, "start_time": "2024-12-11T08:00:00Z", "end_time": "2024-12-11T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A9851AB1584170A88D0CB265FAF3B7F6/Naperokino", "sv": "http://www.annantalo.fi/sv/evenemang/event/A9851AB1584170A88D0CB265FAF3B7F6/Knattebion", "en": "http://www.annantalo.fi/en/events/event/A9851AB1584170A88D0CB265FAF3B7F6/Toddler_cinema" }, "provider_contact_info": null, "short_description": { "fi": "Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.", "en": "Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while." }, "description": { "fi": "<p>Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokinossa esitetään lapsille laadukkaita elokuvia ja totutellaan heitä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</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>Ovella lapsia on tervehtimässä Pikku-Myyrä. Isoa Myyrää pääsee tapaamaan syyslomaviikolla ke 16.10. ja Lapsen oikeuksien päivänä ke 20.11.</p><p>Naperokinon näytöksillä on joka viikko vaihtuva teema.</p><p>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa<br>Kieli: suomi<br>Maksuton</p><p>Naperokinon teemat syksyllä 2024:</p><p>Ke 4.9.2024 Naperokino: Luonto ja eläimet<br>Ke 11.9.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 18.9.2024 Naperokino: seikkailu ja matka<br>Ke 25.9.2024 Naperokino: huolenpito ja rakkaus</p><p>Ke 2.10.2024 Naperokino: rohkeus ja auttaminen<br>Ke 9.10.2024 Naperokino: ystävät ja perhe<br>Ke 16.10.2024 Naperokino: luovuus ja taiteet<br>Ke 23.10.2024 Naperokino: luonto ja eläimet<br>Ke 30.10.2024 Naperokino: mielikuvitus</p><p>Ke 6.11.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 13.11.2024 Naperokino: seikkailu ja matka<br>Ke 20.11.2024 Naperokino: huolenpito ja rakkaus<br>Ke 27.11.2024 Naperokino: rohkeus ja auttaminen</p><p>Ke 4.12.2024 Naperokino: ystävät ja perhe<br>Ke 11.12.2024 Naperokino: luovuus ja taiteet<br>Ke 18.12.2024 Naperokino: luonto ja eläimet</p>", "sv": "<p>Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Den avslappnade, bekväma lokalen och situationen gör det möjligt att värma mat, mata/amma och introducera barnen till biografen i deras egen takt. Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Knattebion visar barnen filmer av hög kvalitet och vänjer dem gradvis vid att titta på långa barnfilmer på biografer. Den första halvan av visningen som varar två timmar består av animerade filmer utan tal och den andra halvan av favoritfilmer med tal. Vid sidan av filmerna är Knattebion en mötesplats för små barn och deras vuxna.</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>Barnen hälsas välkomna vid dörren av Lilla Mullvaden. Du kan träffa Stora Mullvaden under höstlovsveckan ons 16.10. och på Barnrättsdagen ons 20.11.</p><p>Temat för Knattebions föreställningar varierar varje vecka.</p><p>Åldersrekommendation: 0–3-åringar i sällskap med sina föräldrar<br>Språk: finska<br>Fritt inträde</p><p>Teman för Knattebion hösten 2024:</p><p>Ons 4.9.2024 Knattebion: Natur och djur<br>Ons 11.9.2024 Knattebion: samhälle och stad<br>Ons 18.9.2024 Knattebion: äventyr och resor<br>Ons 25.9.2024 Knattebion: omsorg och kärlek</p><p>Ons 2.10.2024 Knattebion: mod och att hjälpa andra<br>Ons 9.10.2024 Knattebion: vänner och familj<br>Ons 16.10.2024 Knattebion: kreativitet och konst<br>Ons 23.10.2024 Knattebion: natur och djur<br>Ons 30.10.2024 Knattebion: fantasi</p><p>Ons 6.11.2024 Knattebion: samhälle och stad<br>Ons 13.11.2024 Knattebion: äventyr och resor<br>Ons 20.11.2024 Knattebion: omsorg och kärlek<br>Ons 27.11.2024 Knattebion: mod och att hjälpa andra</p><p>Ons 4.12.2024 Knattebion: vänner och familj<br>Ons 11.12.2024 Knattebion: kreativitet och konst<br>Ons 18.12.2024 Knattebion: natur och djur</p>", "en": "<p>Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>A relaxed, comfortable venue and setting allows you to heat up food, feed or breastfeed, and introduce your child to cinema at their own pace. A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler cinema presents high-quality films for children and gradually get them used to watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue. Alongside the films, the Toddler Cinema serves as a meeting place for small children and their adults.</p><p>Toddler Cinema 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>Little Mole will greet the children at the door. Big Mole will be available to meet on Wednesday, 16 October during the autumn holiday week as well as on Children's Day, Wednesday, 20 November.</p><p>The Toddler Cinema screenings have a different theme each week.</p><p>Age recommendation: For 0–3-year-olds with parents<br>Language: Finnish<br>Free of charge</p><p>Toddler Cinema themes for autumn 2024:</p><p>Wed 04 Sept 2024 Toddler Cinema: Nature and Animals<br>Wed 11 Sept 2024 Toddler Cinema: Society and the City<br>Wed 18 Sept 2024 Toddler Cinema: Adventure and Travel<br>Wed 25 Sept 2024 Toddler Cinema: Care and Love</p><p>Wed 2 Oct 2024 Toddler Cinema: Courage and Helping Others<br>Wed 9 Oct 2024 Toddler Cinema: Friends and Family<br>Wed 16 Oct 2024 Toddler Cinema: Creativity and the Arts<br>Wed 23 Oct 2024 Toddler Cinema: Nature and Animals<br>Wed 30 Oct 2024 Toddler Cinema: The Imagination</p><p>Wed 06 Nov 2024 Toddler Cinema: Society and the City<br>Wed 13 Nov 2024 Toddler Cinema: Adventure and Travel<br>Wed 20 Nov 2024 Toddler Cinema: Care and Love<br>Wed 27 Nov 2024 Toddler Cinema: Courage and Helping Others</p><p>Wed 04 Dec 2024 Toddler Cinema: Friends and Family<br>Wed 11 Dec 2024 Toddler Cinema: Creativity and the Arts<br>Wed 18 Dec 2024 Toddler Cinema: Nature and Animals</p>" }, "provider": null, "name": { "fi": "Naperokino", "sv": "Knattebion", "en": "Toddler cinema" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64526/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63871", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152210, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-23T13:15:57.871536Z", "last_modified_time": "2024-08-23T13:15:57.871562Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753341.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152210/?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": "2024-08-23T13:15:57.842937Z", "last_modified_time": "2024-12-20T01:14:20.578778Z", "date_published": null, "start_time": "2024-12-11T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/82B5EDFCDEB03995F5142E6E88BA131E/Kuskit_Company_Superkehot" }, "provider_contact_info": null, "short_description": { "fi": "Superkehot on asiantuntijatietoon pohjautuva esitys 3–5-vuotiaiden lasten suhteesta omaan ja toisten kehoon. TÄYTEEN VARATTU" }, "description": { "fi": "<p>Superkehot on asiantuntijatietoon pohjautuva esitys 3–5-vuotiaiden lasten suhteesta omaan ja toisten kehoon. TÄYTEEN VARATTU</p><p>Se on syliä ja haleja, hassuttelua, höpöttelyä, nukkumista, heräämistä, nujuamista, hyppimistä, heilumista, juoksemista, tanssimista. Se on leikkiä, ja se on tärkeitä sanoja. Se on turvataitoja ja turvallista tahtomista, se on EI EI EI EI EI, se on KYLLÄ ja se on en tiedä...!</p><p>Se on se kaikkein tärkein – ikioma keho!</p><p>Vuoden 2024 Itu-palkittu esitys pohtii nukketeatterin keinoin kehoitsetunnon rakentumisen peruspalikoita, hellästi ja konkreettisesti.</p><p>Työryhmä:<br>Skenografia ja nuket: K Rasila<br>Dramaturgia ja ohjaus: Valto Kuuluvainen<br>Äänisuunnittelu: Maura Korhonen<br>Valosuunnitelu: Anna Pöllänen<br>Näyttämöllä: Eero Ojala ja Elisa Salo<br>Lopun superkehomusiikki: Sävellys Pasi Huttula, sovitus Maura Korhonen<br>Käsiohjelma: Leena Aronen<br>Esityskuva: Mikael Ahlfors ja K Rasila<br>Esityksen kesto 45 minuuttia</p><p>Vanhemmille tietosivusto: hyvakysymys.fi/lapsijaseksuaalisuus<br>Vanhemman vihkonen: https://www.vaestoliitto.fi/uploads/2020/11/bac46f71-vanhemmantietovihko-netti-2-20.pdf</p><p>Pikku Kakkosen videot: https://yle.fi/aihe/artikkeli/2019/06/05/pikku-kakkosessa-annetaan-kaikille-kehon-osille-nimi-ja-opetellaan</p><p>Ikäsuositus: 3–5-v<br>Kieli: suomi</p><p>Arkiaamuesityksiin ilmoittautuminen: kultus.fi perjantaista 1.11. klo 8 alkaen</p>" }, "provider": null, "name": { "fi": "Kuskit Company: Superkehot – Ilmoittautuminen kultus.fi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63871/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65031", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153064, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-20T15:14:30.872979Z", "last_modified_time": "2024-11-20T15:14:30.872999Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763597.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153064/?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": "2024-11-20T15:14:30.827856Z", "last_modified_time": "2024-12-20T01:14:20.492556Z", "date_published": null, "start_time": "2024-12-11", "end_time": "2025-03-01", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/68858C428473958085D3C8A6FF86F219/Kissoista_linnuista_kaloista_ja_ihmisista" }, "provider_contact_info": null, "short_description": { "fi": "Aulan taiteilijoiden Kissoista, linnuista, kaloista ja ihmisistä -yhteisnäyttely on nähtävissä Annantalon kahvilassa." }, "description": { "fi": "<p>Aulan taiteilijoiden Kissoista, linnuista, kaloista ja ihmisistä -yhteisnäyttely on nähtävissä Annantalon kahvilassa.</p><p>Eläimet, ihmiset ja kaikki heidän erikoiset tapansa ovat kiehtovia tutkimuskohteita kuvataiteessa. Teokset pursuavat värejä ja runsautta, ja niistä välittyy jokaisen Aulan taiteilijan oma, ainutkertainen taiteellisen ilmaisun polku. Teokset ovat syntyneet pääasiassa vuoden 2024 aikana, ja ne on toteutettu eri tekniikoin, mm. maalaamalla ja piirtämällä.</p><p>Näyttelyssä ovat mukana taiteilijat <b>Mariam Aloui</b>, <b>Karel Alunurm</b>, <b>Dari Dejev</b>, <b>Mia Haski</b>, <b>Ibrahim Korkmaz</b>, <b>Petra Kuisma</b>, <b>Tiina Lyytinen</b>, <b>Linnea Mettälä</b>, <b>Mervi Peltomaa</b>, <b>Minna Reilly</b>, <b>Tom Runeberg</b>, <b>Joel Rämö </b>, <b>Anna-Marija Sabo</b>, <b>Kiira Siikala</b>, <b>Veeti Sipponen</b> ja <b>Katrina Taylor</b>.</p><p>Näyttely on Annantalon kahvilassa ja avoinna Annantalon aukioloaikoina.</p><p>Vapaa pääsy.</p><p><b>Tervetuloa näyttelyn avajaisiin tiistaina 10.12. klo 13–14!</b></p><p>Aula on voittoa tavoittelematon yhdistys, jonka tavoitteena on auttaa erityistä tukea tarvitsevia ihmisiä oman elämän rakentamisessa. Aulan Taidestudiossa taiteilijoita rohkaistaan löytämään omannäköinen polku taiteelliselle ilmaisulle kannustamalla kokeilemaan uusia tekniikoita ja tuomaan omia vahvuuksia esiin. Taidestudion kautta voidaan myös mahdollistaa näyttelyitä ja luoda verkostoja.</p><p>Taidestudiossa työskentelee tällä hetkellä yhteensä 30 kunnianhimoista taiteilijaa, jotka pyrkivät jatkuvasti kehittymään ja osallistumaan näyttelytoimintaan sekä muihin taidemaailman merkittäviin tapahtumiin.</p>" }, "provider": null, "name": { "fi": "Kissoista, linnuista, kaloista ja ihmisistä – Aulan taiteilijat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65031/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64436", "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: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/yso:p1235/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152197, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-23T08:15:24.216153Z", "last_modified_time": "2024-08-23T08:15:24.216173Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757205.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152197/?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": "2024-08-23T08:15:24.177218Z", "last_modified_time": "2024-12-20T01:14:20.400755Z", "date_published": null, "start_time": "2024-12-11T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D60F447715334900662DEBDDAB6ED85D/Jouluinen_Skidikino_Lumiukko", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D60F447715334900662DEBDDAB6ED85D/Jouluinen_Skidikino_Lumiukko", "en": "http://www.vuotalo.fi/en/events/event/D60F447715334900662DEBDDAB6ED85D/Jouluinen_Skidikino_Lumiukko" }, "provider_contact_info": null, "short_description": { "fi": "Lumiukko on koskettava tarina pikkupojan ja lumiukon lämpimästä ystävyydestä ja yhteisistä leikeistä." }, "description": { "fi": "<p>Lumiukko on koskettava tarina pikkupojan ja lumiukon lämpimästä ystävyydestä ja yhteisistä leikeistä.</p><p>Lumisena jouluaattopäivänä sataa lunta. Pieni poika menee nauttimaan ulos lumisateesta ja tekee lumiukon. Lumiukon valmistuttua on hänen aika mennä nukkumaan. Hän ei kuitenkaan saa unta ja lähtee keskellä yötä katsomaan tekemäänsä lumiukkoa, joka herää pojan hämmästykseksi yhtäkkiä henkiin!</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Kesto: n. 30 min<br>ryhmille ilmoittautuminen: kultus.fi</p>", "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Anmälan för grupper på kultus.fi</p>", "en": "<p>Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website. The illustrated material tells a story about going to the cinema.</p><p>Duration: 30 min<br>Registration for daycare groups at Kultus!</p>" }, "provider": null, "name": { "fi": "Jouluinen Skidikino: Lumiukko", "sv": "Jouluinen Skidikino: Lumiukko", "en": "Jouluinen Skidikino: Lumiukko" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64436/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63826", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24,80 € / 30 € ovelta", "sv": "24,80 € / 30 € ovelta", "en": "24,80 € / 30 € ovelta" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/johanna-mikko-iivanainen-joulu-talven-tulilla-malmitalo-19106809/", "sv": "https://www.lippu.fi/event/johanna-mikko-iivanainen-joulu-talven-tulilla-malmitalo-19106809/", "en": "https://www.lippu.fi/event/johanna-mikko-iivanainen-joulu-talven-tulilla-malmitalo-19106809/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-18T08:13:38.891138Z", "last_modified_time": "2024-09-18T08:13:38.891154Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753147.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-18T08:13:38.854787Z", "last_modified_time": "2024-12-20T01:14:20.309899Z", "date_published": null, "start_time": "2024-12-10T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6298BFC7090DD555A8542F01958CE88E/Johanna_Mikko_Iivanainen_joulukonsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6298BFC7090DD555A8542F01958CE88E/Johanna_Mikko_Iivanainen_julkonsert", "en": "http://www.malmitalo.fi/en/events/event/6298BFC7090DD555A8542F01958CE88E/Johanna_and_Mikko_Iivanainen_Christmas_Concert" }, "provider_contact_info": null, "short_description": { "fi": "Johanna Iivanainen ja Mikko Iivanainen kutsuvat sinut rauhoittumaan talven tulille ja kohti joulua.", "sv": "Johanna Iivanainen och Mikko Iivanainen bjuder in dig att lugna dig ner vid vintereldar och inför julen.", "en": "Johanna Iivanainen and Mikko Iivanainen invite you to calm down in front of the winter fire before Christmas." }, "description": { "fi": "<p>Johanna Iivanainen ja Mikko Iivanainen kutsuvat sinut rauhoittumaan talven tulille ja kohti joulua.</p><p>Iivanaiset ovat valmistaneet kiertueelleen lämminhenkisen ohjelmiston perinteisistä joululauluista sekä uudemmista jouluisista sävelmistä.</p><p>Ohjelmistossa kuullaan mm. rauhallinen Mökit nukkuu lumiset, klassikoksi muodostunut Have Yourself A Merry Little Christmas ja oma kappale Talven tulilla, joka on tehty joulukiertuetta varten.</p><p>Tyylitajuinen, herkkä ja sielukas laulu ja soitto ovat tekemisen pohjana tällä jo yli kaksi vuosikymmentä toistensa kanssa musisoineella pariskunnalla.</p><p><b>Johanna Iivanainen</b> on tullut suurelle yleisölle tutuksi SuomiLOVE-ohjelman solistina v. 2014–2019. Johannan raikas, luonnollinen esiintyminen ja sävykkäät tulkinnat ovat saavuttaneet suuren suosion. Artistin monipuolisuus hätkähdyttää: levytyksiä jazzin, a cappellan, popin, dancen ja lastenmusiikin alueilta. Iivanaisen poikkeuksellisen kattava diskografia sisältää yli 50 levytystä.</p><p><b>Mikko Iivanainen</b> on monipuolinen kitarataituri, joka on tehnyt yhteistyötä vaimonsa Johannan lisäksi myös mm. Maria Kalaniemen, Timo Alakotilan, Edu Kettusen, Mika Kuokkasen ja Juhani Aaltosen kanssa. Suurella soundipaletilla maalaava kitarataiteilija on julkaissut kolme sooloalbumia: Progesävyisen ensemblealbumin Last Room (2014) sekä soolokitaralevyt A River Runs Through It (2020) ja Lullaby for Lost Souls (2023).</p><p>Kesto: 1h 15min, ei väliaikaa</p>", "sv": "<p>Johanna Iivanainen och Mikko Iivanainen bjuder in dig att lugna dig ner vid vintereldar och inför julen.</p><p>För sin turné har paret Iivanainen förberett ett varmt program med traditionella julsånger och nyare juliga melodier.</p><p>På konserterna hörs bland annat den lugna låten Mökit nukkuu lumiset, Have Yourself A Merry Little Christmas som blivit en klassiker och en egen låt Talven tulille som har skrivits för julturnén.</p><p>Elegant, känslig och själfull sång och musik utgör grunden för paret som har musicerat tillsammans redan över två årtionden.</p><p>Johanna Iivanainen har blivit känd för den stora allmänheten som solist i programmet SuomiLOVE 2014–2019. Johannas fräscha, naturliga uppträdande och melodiska tolkningar har blivit mycket populära. Artisten är häpnadsväckande mångsidig: inspelningar av jazz, a cappella, pop, dance och barnmusik. I Iivanainens exceptionellt omfattande diskografi ingår över 50 inspelningar.</p><p>Mikko Iivanainen är en mångsidig gitarrvirtuos som har samarbetat med sin fru Johanna och dessutom bland annat med Maria Kalaniemi, Timo Alakotila, Edu Kettunen, Mika Kuokkanen och Juhani Aaltonen. Gitarristen som målar med omfattande soundpalett har gett ut tre soloalbum: Ensemblealbumet med progenyanser Last Room (2014) och gitarrsoloalbumen A River Runs Through It (2020) och Lullaby for Lost Souls (2023).</p><p>Längd: 1h 15 min, ingen paus</p>", "en": "<p>Johanna Iivanainen and Mikko Iivanainen invite you to calm down in front of the winter fire before Christmas.</p><p>For their tour, the Iivanainens have prepared a warm-hearted repertoire of traditional Christmas carols and newer Christmassy tunes, including the peaceful ‘Mökit nukkuu lumiset’, the classic ‘Have Yourself A Merry Little Christmas’ and their own song written especially for this tour, ‘Talven tulilla’.</p><p>The couple have been making stylish, emotive and soulful music together for more than 20 years.</p><p>Johanna Iivanainen is best known by the general public as the soloist in the SuomiLOVE TV show from 2014 to 2019. Johanna’s fresh, natural stage appeal and rich interpretations have gained her great popularity. She is a strikingly versatile artist: she has recorded jazz, a cappella, pop, dance and children’s music. Iivanainen’s exceptionally comprehensive discography includes more than 50 recordings.</p><p>Mikko Iivanainen is a versatile guitar master who has collaborated not only with his wife Johanna, but also with Maria Kalaniemi, Timo Alakotila, Edu Kettunen, Mika Kuokkanen and Juhani Aaltonen, among others. Painting with a large sound palette, the guitar artist has released three solo albums: prog-style ensemble album Last Room (2014) and solo guitar albums A River Runs Through It (2020) and Lullaby for Lost Souls (2023).</p><p>Duration: 1h 15min, no interval</p>" }, "provider": null, "name": { "fi": "Johanna & Mikko Iivanainen – joulukonsertti", "sv": "Johanna & Mikko Iivanainen – julkonsert", "en": "Johanna and Mikko Iivanainen – Christmas Concert" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63826/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63915", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "45-47 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/18755090" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151329, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-31T14:12:59.546313Z", "last_modified_time": "2024-05-31T14:12:59.546330Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751914.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151329/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-31T14:12:59.500088Z", "last_modified_time": "2024-12-20T01:14:20.227361Z", "date_published": null, "start_time": "2024-12-10T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/88A217633C4D0E64640E3708546CA5F6/The_Ukulele_Orchestra_Of_Great_Britain_UK_" }, "provider_contact_info": null, "short_description": { "fi": "The Ukulele Orchestra Of Great Britain pitkästä aikaa Suomeen!" }, "description": { "fi": "<p>The Ukulele Orchestra Of Great Britain pitkästä aikaa Suomeen!</p><p>Rockin ja viihdemusiikin klassikoista ainutlaatuisiksi ukuleleversioiksi muuttava The Ukulele Orchestra Of Great Britain kiertää joulukuussa Suomea ja tarjoaa soitannollista suvereniteettiä ja kuivakkaa brittihuumoria!</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>" }, "provider": { "fi": "Nem Agency Oy" }, "name": { "fi": "The Ukulele Orchestra Of Great Britain (UK)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63915/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63828", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151448, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-13T10:13:05.614720Z", "last_modified_time": "2024-06-13T10:13:05.614739Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753149.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151448/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-13T10:13:05.585912Z", "last_modified_time": "2024-12-20T01:14:20.141248Z", "date_published": null, "start_time": "2024-12-10T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/077D8990293D4D8A40AD7273A252332D/Yhteislaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/077D8990293D4D8A40AD7273A252332D/Yhteislaulut", "en": "http://www.malmitalo.fi/en/events/event/077D8990293D4D8A40AD7273A252332D/Yhteislaulut" }, "provider_contact_info": null, "short_description": { "fi": "Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!", "sv": "De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!", "en": "The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!" }, "description": { "fi": "<p>Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.</p><p>Yhteislauluja järjestetään Malmitalon pienessä salissa kerran kuussa tiistaisin seuraavasti:</p><p>Ti 10.9. klo 17–18<br>Ti 8.10. klo 17–18<br>Ti 12.11. klo 17–18<br>Ti 10.12. klo 17–18</p><p>Tervetuloa mukaan!<br>Vapaa pääsy</p>", "sv": "<p>De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!</p><p>Här får alla sjunga härliga favoritlåtar av hjärtats lust under ledning av Jukka Okkonen och Pauli Kainulainen.</p><p>Allsången ordnas i den lilla salen i Malms kulturhus en gång i månaden på tisdagar.</p><p>Välkommen med!<br>Fritt inträde</p>", "en": "<p>The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to wonderful classics.</p><p>Sing-along sessions are held in the small hall of Malmitalo once a month on Tuesdays.</p><p>Welcome!<br>Free admission</p>" }, "provider": null, "name": { "fi": "Yhteislaulut", "sv": "Yhteislaulut", "en": "Yhteislaulut" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63828/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65001", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153047, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-19T08:14:41.536501Z", "last_modified_time": "2024-11-19T08:14:41.536519Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763389.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153047/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-19T08:14:41.495012Z", "last_modified_time": "2024-12-20T01:14:20.052862Z", "date_published": null, "start_time": "2024-12-10T15:00:00Z", "end_time": "2024-12-10T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/255699589437797B4B34074C13D043EB/Kantsun_kahvit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/255699589437797B4B34074C13D043EB/Kaffe_i_Kantsu", "en": "http://www.kanneltalo.fi/en/events/event/255699589437797B4B34074C13D043EB/Kantsu_coffee" }, "provider_contact_info": null, "short_description": { "fi": "Aiheena kestävä kehitys – Miten säästää rahaa ja luontoa omassa arjessa?", "sv": "Ämnet är hållbar utveckling – Hur spara pengar och miljön i vardagen?", "en": "The topic is sustainable development – How to save money and nature in your daily life?" }, "description": { "fi": "<p>Aiheena kestävä kehitys – Miten säästää rahaa ja luontoa omassa arjessa?</p><p>Aiheesta kertoo Terhi Takala Kestävät arjen valinnat -hankkeesta. Alustuksen jälkeen jatkamme keskustelua yhdessä.</p><p>Tule jakamaan parhaat vinkkisi! Tarjoamme kahvia, teetä ja pientä syötävää.</p><p>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton. Voit osallistua suomeksi tai englanniksi. Kantsun kahvit järjestää yhteistyössä alueen asukkaat, Kannelmäen D-asema ja Helsingin kaupunki.</p><p>Paikka: Kahvilan stage<br>Kesto: 2 tuntia<br>Maksuton, vapaa pääsy</p>", "sv": "<p>Ämnet är hållbar utveckling – Hur spara pengar och miljön i vardagen?</p><p>Terhi Takala från projektet Kestävät arjen valinnat (Hållbara vardagsval) berättar om ämnet. Efter introduktionen fortsätter vi diskussionen tillsammans. Kom och dela med dig av dina bästa tips. Kom och dela med dig av dina bästa tips! Vi bjuder på kaffe, te och litet tilltugg.</p><p>Du behöver inte anmäla dig och evenemanget är avgiftsfritt. Du kan delta på finska eller engelska. Kaffe i Kantsu ordnas i samarbete med invånarna i området, Kannelmäen D-asema och Helsingfors stad.</p><p>Plats: Kaféets stage<br>Längd: 2 timmar<br>Avgiftsfritt, fritt inträde</p>", "en": "<p>The topic is sustainable development – How to save money and nature in your daily life?</p><p>Terhi Takala from the Sustainable Everyday Choices project is here to tell you about this subject. After the introduction, we can continue the discussion together. Come and share your best tips. Come and share your best tips! We have coffee, tea and small bites.</p><p>Advance registration is not needed for this free event. You can participate in Finnish or English. Kantsu coffee is organised in cooperation with the area’s residents, Kannelmäki D-station and the City of Helsinki.</p><p>Location: Café stage<br>Duration: 2 hours<br>Free admission</p>" }, "provider": null, "name": { "fi": "Kantsun kahvit", "sv": "Kaffe i Kantsu", "en": "Kantsu coffee" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65001/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65006", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153045, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-18T14:14:41.614650Z", "last_modified_time": "2024-11-18T14:14:41.614676Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763422.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153045/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-18T14:14:41.568809Z", "last_modified_time": "2024-12-20T01:14:19.959164Z", "date_published": null, "start_time": "2024-12-10T14:00:00Z", "end_time": "2024-12-10T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0CE073E662D6B7DDD6F07161202021E/Puurojuhla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0CE073E662D6B7DDD6F07161202021E/Grotfest_", "en": "http://www.malmitalo.fi/en/events/event/D0CE073E662D6B7DDD6F07161202021E/Porridge_party_" }, "provider_contact_info": null, "short_description": { "fi": "Tip tap, nyt töppöstä toisensa eteen ja suunta kohti Malmitalon joulupuuroa.", "sv": "Tipp tapp, nu är det dags att tassa iväg mot julgröten på Malms kulturhus.", "en": "Tip tap, put one foot in front of the other and head to Malmitalo for Christmas porridge." }, "description": { "fi": "<p>Tip tap, nyt töppöstä toisensa eteen ja suunta kohti Malmitalon joulupuuroa.</p><p>Haluamme toivottaa kaikille hyvää joulua herkullisen joulupuuron myötä. Tule mukaan aterioimaan ja juhlimaan riemastuttavaa joulunaikaa kanssamme. <br> <br>Vapaa pääsy!</p><p><b>Ohjelma:</b></p><p><b>Aula</b><br>Puurotarjoilu 300 ensimmäiselle klo 16-19<br>Emma Kuntsin jouluista kantelemusiikkia klo 16-17 ja 18-19</p><p><b>Pieni sali</b><br>Joululauluja yhteislaulujen merkeissä Jukka Okkosen ja Pauli Kainulaisen johdolla klo 17-18</p><p><b>Kirjasto</b><br>Lasten jouluhetki: askarrellaan, etsitään tonttuja ja koristellaan kuusta! 16-19<br>Joulusatutuokiot perheen pienimmille klo 16, 17 ja 18.</p><p>Vapaa pääsy!</p><p>Puurojuhlan jälkeen Malmisalissa on maksullinen Johanna & Mikko Iivanaisen Joulu talven tulilla -konsertti. <a href=\"https://www.lippu.fi/event/johanna-mikko-iivanainen-joulu-talven-tulilla-malmitalo-19106809/\">Osta lippu konserttiin</a></p><p>Yhteistyössä Malmitalo ja Malmin kirjasto</p>", "sv": "<p>Tipp tapp, nu är det dags att tassa iväg mot julgröten på Malms kulturhus.</p><p>Vi vill önska alla en riktigt god jul med läcker julgröt. Kom och ät med oss och fira den härliga jultiden tillsammans med oss. <br> <br>Fritt inträde! Det finns gröt till cirka 300 personer.</p>", "en": "<p>Tip tap, put one foot in front of the other and head to Malmitalo for Christmas porridge.</p><p>We want to wish everyone a happy Christmas with delicious Christmas porridge. Join us for porridge and celebrate an exhilarating holiday season. <br> <br>Admission is free! Porridge is available for approx. 300 people.</p>" }, "provider": null, "name": { "fi": "Puurojuhla", "sv": "Grötfest", "en": "Porridge party" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65006/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64219", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151788, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T14:13:36.451065Z", "last_modified_time": "2024-07-22T14:13:36.451080Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755960.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151788/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T14:13:36.435458Z", "last_modified_time": "2024-12-20T01:14:19.877480Z", "date_published": null, "start_time": "2024-12-10T12:00:00Z", "end_time": "2024-12-10T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4E97A610DDF98C0C546961E9778FC9BD/Paivatanssit_", "sv": "http://www.stoa.fi/sv/evenemang/event/4E97A610DDF98C0C546961E9778FC9BD/Paivatanssit_", "en": "http://www.stoa.fi/en/events/event/4E97A610DDF98C0C546961E9778FC9BD/Paivatanssit_" }, "provider_contact_info": null, "short_description": { "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.", "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.", "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa." }, "description": { "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!<br>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi<br>Vapaa pääsy.</p>", "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde.</p>", "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>" }, "provider": null, "name": { "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "sv": "Päivätanssit – med Jussi Väänänen och Katja Koukkula", "en": "Päivätanssit – with Jussi Väänänen and Katja Koukkula" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64219/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63870", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151999, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-30T16:16:06.538841Z", "last_modified_time": "2024-07-30T16:16:06.538867Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753339.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151999/?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": "2024-07-30T16:16:06.507396Z", "last_modified_time": "2024-12-20T01:14:19.786892Z", "date_published": null, "start_time": "2024-12-10T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F7B29C829D18D58897A28C424E2ECBFE/Kuskit_Company_Superkehot" }, "provider_contact_info": null, "short_description": { "fi": "Superkehot on asiantuntijatietoon pohjautuva esitys 3–5-vuotiaiden lasten suhteesta omaan ja toisten kehoon. TÄYTEEN VARATTU" }, "description": { "fi": "<p>Superkehot on asiantuntijatietoon pohjautuva esitys 3–5-vuotiaiden lasten suhteesta omaan ja toisten kehoon. TÄYTEEN VARATTU</p><p>Se on syliä ja haleja, hassuttelua, höpöttelyä, nukkumista, heräämistä, nujuamista, hyppimistä, heilumista, juoksemista, tanssimista. Se on leikkiä, ja se on tärkeitä sanoja. Se on turvataitoja ja turvallista tahtomista, se on EI EI EI EI EI, se on KYLLÄ ja se on en tiedä...!</p><p>Se on se kaikkein tärkein – ikioma keho!</p><p>Vuoden 2024 Itu-palkittu esitys pohtii nukketeatterin keinoin kehoitsetunnon rakentumisen peruspalikoita, hellästi ja konkreettisesti.</p><p>Työryhmä:<br>Skenografia ja nuket: K Rasila<br>Dramaturgia ja ohjaus: Valto Kuuluvainen<br>Äänisuunnittelu: Maura Korhonen<br>Valosuunnitelu: Anna Pöllänen<br>Näyttämöllä: Eero Ojala ja Elisa Salo<br>Lopun superkehomusiikki: Sävellys Pasi Huttula, sovitus Maura Korhonen<br>Käsiohjelma: Leena Aronen<br>Esityskuva: Mikael Ahlfors ja K Rasila<br>Esityksen kesto 45 minuuttia</p><p>Vanhemmille tietosivusto: hyvakysymys.fi/lapsijaseksuaalisuus<br>Vanhemman vihkonen: https://www.vaestoliitto.fi/uploads/2020/11/bac46f71-vanhemmantietovihko-netti-2-20.pdf</p><p>Pikku Kakkosen videot: https://yle.fi/aihe/artikkeli/2019/06/05/pikku-kakkosessa-annetaan-kaikille-kehon-osille-nimi-ja-opetellaan</p><p>Ikäsuositus: 3–5-v<br>Kieli: suomi</p><p>Arkiaamuesityksiin ilmoittautuminen: kultus.fi perjantaista 1.11. klo 8 alkaen</p>" }, "provider": null, "name": { "fi": "Kuskit Company: Superkehot – Ilmoittautuminen kultus.fi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63870/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63895", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "47 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/club-for-five/club-for-five-jouluna-2024-3655862/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151690, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-11T12:14:19.269403Z", "last_modified_time": "2024-07-11T12:14:19.269429Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751899.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151690/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-25T08:12:54.637845Z", "last_modified_time": "2024-12-20T01:14:19.701464Z", "date_published": null, "start_time": "2024-12-09T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6AFAD630F3C73F7133CDB29F113D9FA8/CLUB_FOR_FIVE_Jouluna_2024" }, "provider_contact_info": null, "short_description": null, "description": { "fi": "<p>Perinteinen Club For Fiven JOULUNA -konsertti yllättää yleisönsä jälleen täysin uudella joulukattauksella. Rakastettu lauluyhtye taikoo joulun monet sävyt herkästä tunnelmoinnista virtuoottiseen ilotteluun ja nostaa juhlan odotuksen riemun ylimmilleen. Tule antautumaan joulun vietäväksi ja koe vuoden odotetuin konsertti.</p><p>Ikäraja: S<br> <br>Kesto n. 2 h 15 min, sisältää väliajan</p>" }, "provider": { "fi": "Helmi Promotion Oy" }, "name": { "fi": "CLUB FOR FIVE: Jouluna 2024" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63895/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63678", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151929, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-26T10:14:34.193513Z", "last_modified_time": "2024-07-26T10:14:34.193530Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752005.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151929/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-26T10:14:34.169227Z", "last_modified_time": "2024-12-20T01:14:19.526166Z", "date_published": null, "start_time": "2024-12-09T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CD8426417E51AAA7506E7762FDE66545/Kino_Kuutamo_Mummola_7_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CD8426417E51AAA7506E7762FDE66545/Kino_Kuutamo_Mummola_7_", "en": "http://www.kanneltalo.fi/en/events/event/CD8426417E51AAA7506E7762FDE66545/Kino_Kuutamo_Mummola_7_" }, "provider_contact_info": null, "short_description": { "fi": "Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.", "sv": "Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.", "en": "The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships." }, "description": { "fi": "<p>Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.</p><p>Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa illan elokuvaan klo 17–17.45. Luennon jälkeen klo 18 alkaa elokuvan ilmaisnäytös. Syksyn 2024 Kino Kuutamon elokuvasarja tutkii perhedynamiikkaa.</p><p>Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona. Kuten tavallista, isoisä Lasse (Tom Wentzel) juo liikaa, isoäiti Ella (Leena Uotila) on huolissaan kaikista ja sisarukset lankeavat vanhoihin riitoihinsa. Vain lapsilla tuntuu olevan kivaa. Joulun jälkeen jokainen lähtee omille teilleen ja palaa arkeen.</p><p>Tia Kouvon purevan humoristinen, elämänmakuinen elokuvadebyytti on tragikoominen tutkielma perhedynamiikasta, yksinäisyydestä ja yhdessäolosta — kuinka yritämme löytää yhteyden, mutta emme aina onnistu siinä.</p><p>Mummola sai vuoden 2024 Jussi-gaalassa yhteensä kolme Jussi-palkintoa: Vuoden elokuvan, Vuoden ohjaajan ja Vuoden käsikirjoituksen palkinnot. Mummola on Suomen Oscar-raadin ehdokas parhaaksi kansainväliseksi elokuvaksi.</p><p>”Mummola on Tia Kouvon hieno debyytti. Elokuva on kaikin puolin eheä ja onnistunut. Ohjaus on rauhallinen ja maadoittunut, mutta suurimmat kehut on säästettävä käsikirjoitukselle, josta näyttelijät saavat kaiken irti.” ★★★★ Jesse Raatikainen / Episodi</p><p>Valmistusvuosi: 2023<br>Ikäraja: 7 (sisältää väkivaltaa)<br>Pituus: 115 min.<br>Tekstitys: englanti<br>Käsikirjoitus ja ohjaus: Tia Kouvo<br>Näyttelijät: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä ja Jarkko Pajunen.<br>Vapaa pääsy</p><p>Yhteistyössä Helsingin työväenopiston kanssa.</p>", "sv": "<p>Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.</p><p>Filmhistorikern fil.dr. Harri Kilpi introducerar kvällens film kl. 17–17.45. Efter föreläsningen inleds den avgiftsfria visningen av filmen kl. 18.00. Kino Kuutamos filmserie hösten 2024 utforskar familjedynamik.</p><p>Varje år vid jul besöker systrarna Susanna (Ria Kataja) och Helena (Elina Knihtilä) sina föräldrar med sina familjer. Som vanligt dricker morfar Lasse (Tom Wentzel) för mycket, mormor Ella (Leena Uotila) oroar sig för alla och syskonen faller in i sina gamla gräl. Bara barnen verkar ha roligt. Efter julen går alla skilda vägar och återgår till vardagen.</p><p>Tia Kouvos bitande humoristiska och livsbejakande filmdebut är en tragikomisk studie av familjedynamik, ensamhet och samvaro – hur vi försöker få kontakt men inte alltid lyckas.</p><p>Mummola belönades med totalt tre Jussi-priser vid 2024 års Jussi-gala: Årets film, Årets regissör och Årets manus.</p><p>\"Mummola är en fantastisk debut för Tia Kouvo. Filmen är sammanhängande och lyckad i alla avseenden. Regin är lugn och jordnära, men det största berömmet måste reserveras för manuset, som skådespelarna får ut det mesta av.\" ★★★★ Jesse Raatikainen / Episodi</p><p>År: 2023<br>Åldersgräns: 7 (innehåller våld)<br>Längd: 115 min.<br>Undertexter: engelska<br>Manus och regi: Tia Kouvo<br>I rollerna: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä och Jarkko Pajunen.<br>Fritt inträde</p><p>I samarbete med Helsingfors finska arbetarinstitutet.</p>", "en": "<p>The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships.</p><p>Film history expert, PhD Harri Kilpi will introduce the film of the evening at 5-5:45 pm. After the introduction, the free screening of the film begins at 6 pm. The autumn 2024 Kino Kuutamo film series explores family dynamics.</p><p>Every year at Christmas, sisters Susanna (Ria Kataja) and Helena (Elina Knihtilä) and their parents visit their parents. As usual, Grandpa Lasse (Tom Wentzel) drinks too much, Grandma Ella (Leena Uotila) is worried about everyone and the sisters fall back into their old quarrels. Only the children seem to be having fun. After Christmas, everyone goes their separate ways and to their everyday lives.</p><p>Tia Kouvo's bitingly humorous film debut is a tragicomic treatise on family dynamics, loneliness and togetherness — how we try to find a connection but don't always succeed.</p><p>Mummola received a total of three Jussi awards at the Jussi Gala in 2024: Film of the Year, Director of the Year and Screenplay of the Year.</p><p>“Mummola is a fantastic debut by Tia Kouvo. The film is solid and successful in all respects. The direction is calm and grounded, but the script, which the actors make the most of, is definitely its most significant highlight.“★★★★Jesse Raatikainen / Episodi</p><p>Release year: 2023<br>Age limit: 7 (includes violence)<br>Length: 115 mins.<br>Subtitles: English<br>Script and direction: Tia Kouvo<br>Cast: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä and Jarkko Pajunen.<br>Free of charge</p><p>Film history expert PhD Harri Kilpi introduces the film at 17.00–17.45. The free screening of the film starts after the lecture at 18.00. The lecture is in Finnish.</p><p>In co-operation with Helsinki Finnish Adult Education Centre.</p>" }, "provider": null, "name": { "fi": "Kino Kuutamo: Mummola (7) – Maksuttomat maanantait", "sv": "Kino Kuutamo: Mummola (7) – Kostnadsfria måndagar", "en": "Kino Kuutamo: Mummola (7) – Free Mondays" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63678/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63679", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151928, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-26T10:14:34.005401Z", "last_modified_time": "2024-07-26T10:14:34.005417Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752010.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151928/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-26T10:14:33.969993Z", "last_modified_time": "2024-12-20T01:14:19.432948Z", "date_published": null, "start_time": "2024-12-09T12:45:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F0F8F92638A08FF7ED641013768E9012/Kino_Kuutamo_Mummola_7_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F0F8F92638A08FF7ED641013768E9012/Kino_Kuutamo_Mummola_7_", "en": "http://www.kanneltalo.fi/en/events/event/F0F8F92638A08FF7ED641013768E9012/Kino_Kuutamo_Mummola_7_" }, "provider_contact_info": null, "short_description": { "fi": "Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.", "sv": "Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.", "en": "The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships." }, "description": { "fi": "<p>Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.</p><p>Matineanäytös klo 14.45.</p><p>Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona. Kuten tavallista, isoisä Lasse (Tom Wentzel) juo liikaa, isoäiti Ella (Leena Uotila) on huolissaan kaikista ja sisarukset lankeavat vanhoihin riitoihinsa. Vain lapsilla tuntuu olevan kivaa. Joulun jälkeen jokainen lähtee omille teilleen ja palaa arkeen.</p><p>Tia Kouvon purevan humoristinen, elämänmakuinen elokuvadebyytti on tragikoominen tutkielma perhedynamiikasta, yksinäisyydestä ja yhdessäolosta — kuinka yritämme löytää yhteyden, mutta emme aina onnistu siinä.</p><p>Mummola sai vuoden 2024 Jussi-gaalassa yhteensä kolme Jussi-palkintoa: Vuoden elokuvan, Vuoden ohjaajan ja Vuoden käsikirjoituksen palkinnot. Mummola on Suomen Oscar-raadin ehdokas parhaaksi kansainväliseksi elokuvaksi.</p><p>”Mummola on Tia Kouvon hieno debyytti. Elokuva on kaikin puolin eheä ja onnistunut. Ohjaus on rauhallinen ja maadoittunut, mutta suurimmat kehut on säästettävä käsikirjoitukselle, josta näyttelijät saavat kaiken irti.” ★★★★ Jesse Raatikainen / Episodi</p><p>Valmistusvuosi: 2023<br>Ikäraja: 7 (sisältää väkivaltaa)<br>Pituus: 115 min.<br>Käsikirjoitus ja ohjaus: Tia Kouvo<br>Näyttelijät: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä ja Jarkko Pajunen.<br>Vapaa pääsy</p>", "sv": "<p>Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.</p><p>Matiné kl. 14.45.</p><p>Varje år vid jul besöker systrarna Susanna (Ria Kataja) och Helena (Elina Knihtilä) sina föräldrar med sina familjer. Som vanligt dricker morfar Lasse (Tom Wentzel) för mycket, mormor Ella (Leena Uotila) oroar sig för alla och syskonen faller in i sina gamla gräl. Bara barnen verkar ha roligt. Efter julen går alla skilda vägar och återgår till vardagen.</p><p>Tia Kouvos bitande humoristiska och livsbejakande filmdebut är en tragikomisk studie av familjedynamik, ensamhet och samvaro – hur vi försöker få kontakt men inte alltid lyckas.</p><p>Mummola belönades med totalt tre Jussi-priser vid 2024 års Jussi-gala: Årets film, Årets regissör och Årets manus.</p><p>\"Mummola är en fantastisk debut för Tia Kouvo. Filmen är sammanhängande och lyckad i alla avseenden. Regin är lugn och jordnära, men det största berömmet måste reserveras för manuset, som skådespelarna får ut det mesta av.\" ★★★★ Jesse Raatikainen / Episodi</p><p>År: 2023<br>Åldersgräns: 7 (innehåller våld)<br>Längd: 115 min.<br>Manus och regi: Tia Kouvo<br>I rollerna: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä och Jarkko Pajunen.<br>Fritt inträde</p>", "en": "<p>The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships.</p><p>Matinee show at 2:45 pm.</p><p>Every year at Christmas, sisters Susanna (Ria Kataja) and Helena (Elina Knihtilä) and their parents visit their parents. As usual, Grandpa Lasse (Tom Wentzel) drinks too much, Grandma Ella (Leena Uotila) is worried about everyone and the sisters fall back into their old quarrels. Only the children seem to be having fun. After Christmas, everyone goes their separate ways and to their everyday lives.</p><p>Tia Kouvo's bitingly humorous film debut is a tragicomic treatise on family dynamics, loneliness and togetherness — how we try to find a connection but don't always succeed.</p><p>Mummola received a total of three Jussi awards at the Jussi Gala in 2024: Film of the Year, Director of the Year and Screenplay of the Year.</p><p>“Mummola is a fantastic debut by Tia Kouvo. The film is solid and successful in all respects. The direction is calm and grounded, but the script, which the actors make the most of, is definitely its most significant highlight.“★★★★Jesse Raatikainen / Episodi</p><p>Release year: 2023<br>Age limit: 7 (includes violence)<br>Length: 115 mins.<br>Script and direction: Tia Kouvo<br>Cast: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä and Jarkko Pajunen.<br>Free of charge</p><p>Film history expert PhD Harri Kilpi introduces the film at 17.00–17.45. The free screening of the film starts after the lecture at 18.00. The lecture is in Finnish.</p>" }, "provider": null, "name": { "fi": "Kino Kuutamo: Mummola (7) – Maksuttomat maanantait", "sv": "Kino Kuutamo: Mummola (7) – Kostnadsfria måndagar", "en": "Kino Kuutamo: Mummola (7) – Free Mondays" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63679/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64718", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152825, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-16T10:15:56.718879Z", "last_modified_time": "2024-10-16T10:15:56.718899Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759323.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152825/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-16T10:15:56.670320Z", "last_modified_time": "2024-12-20T01:14:19.342298Z", "date_published": null, "start_time": "2024-12-09T07:00:00Z", "end_time": "2024-12-09T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/663AA080A1B779BBA3FB4C854D2BCB7B/Seniorien_palvelutori_loyda_oma_tapasi_liikkua_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/663AA080A1B779BBA3FB4C854D2BCB7B/Servicetorget_for_aldre_hitta_ditt_satt_att_motionera_", "en": "http://www.malmitalo.fi/en/events/event/663AA080A1B779BBA3FB4C854D2BCB7B/The_Palvelutori_senior_service_event_" }, "provider_contact_info": null, "short_description": { "fi": "Maksuton palvelutori tarjoaa kohtaamisia, mielekästä tekemistä ja tietoa vapaa-ajan mahdollisuuksista alueella. Laita päivä kalenteriin ja tule mukaan!", "sv": "Det avgiftsfria evenemanget bjuder på möten, meningsfulla aktiviteter och information om fritidsmöjligheter i området.", "en": "The free Palvelutori service concept offers encounters, meaningful activities and information on leisure opportunities in the area." }, "description": { "fi": "<p>Maksuton palvelutori tarjoaa kohtaamisia, mielekästä tekemistä ja tietoa vapaa-ajan mahdollisuuksista alueella. Laita päivä kalenteriin ja tule mukaan!</p><p>Alueen yhdistykset ja toimijat esittelevät palveluitaan, pääset kysymään ja kokeilemaan. Tule mukaan ja tuo kaverisikin!</p><p><b>Tapahtuman aikataulu</b><br>9.30–9.45 Tuolijumppa (Tanssisali)<br>9.40–10.00 Kaija Rädyn tanssiopetus (Malmisali)<br>10.00–10.15 Tasapainojumppa (Tanssisali)<br>10.00–11.00 DJ Börjen SenioriDisco (Malmisali)<br>10.00–13.00 Jouluisia koristeita -työpaja (Työväenopisto, 2. krs, käsityöluokka)<br>10.30–10.45 Kehonhuolto (Tanssisali)<br>11.00–11.15 Tasapainojumppa (Tanssisali)<br>11.30–12.30 Jorma Uotisen puheenvuoro (Malmisali)<br>12.00–12.15 SenioriKarate (Tanssisali)<br>13.00–14.00 DJ Börjen SenioriDisco (Malmisali)<br>13.30–13.45 SenioriKarate (Tanssisali)<br>14.30–15.00 Etätuolijumppa (Työväenopisto, 2. krs, luokka 1)</p><p>HUOM! Jorma Uotisen puheenvuoroa mahtuu kuuntelemaan 200 henkilöä.</p><p>Lisäksi n. 20 eri näytteilleasettajaa Malmitalon 1. ja 2. kerroksen aulatiloissa. Valoinstallaation avajaiset Malmitalon 2. kerroksen aulassa.</p><p>Ikääntyneiden palvelutori maanantaina 9.12.2024 klo 9–14 <br>Malmitalo, Ala-Malmin tori 1<br>Vapaa pääsy!</p><p><b>Yhteistyössä</b><br>Malmitalo, Liikuntapalveluiden Alueliikunta ja Liikuntaluotsit, Syystien palvelukeskus, Seniori-info, Naapuruuspiiri, Hyvinvoiva Helsinki –hanke, Työväenopisto, Yhteisötalot, KauKo-hanke, Forum Virium, Urheiluhallit, Malmin uimahalli, Miina Sillanpää –säätiö, SenioriKamu- hanke, Jade-yhteisö, Vanhustyön keskusliitto, Koillis-Helsingin lähimmäistyö Milja ry, Mereo ry, Helsingin seudun 4H-yhdistys, Käpyrinne, Lilinkotisäätiö, Tapanilan EräKarate, Seniorikarate, Helsingin NMKY, Lääkäriasema Medipulssi, Malmin Nova, Malmin Varustamo, Malmin seurakunta, Helsingin seurakuntayhtymä ja Stadin AO.</p>", "sv": "<p>Det avgiftsfria evenemanget bjuder på möten, meningsfulla aktiviteter och information om fritidsmöjligheter i området.</p><p>Områdets föreningar och aktörer presenterar sina tjänster, du får fråga och prova. Kom med och ta med dina kompisar!</p><p><b>Inspirerande program:</b><br>Jorma Uotinens tal<br>SeniorDisco med DJ Börje<br>Dansstunder med dansartist Kaija Räty <br>SeniorKarate<br>Stolgymnastik<br>Arbetarinstitutets hantarbetsverkstad<br>Motionstips<br>Aktiviteter i område<br>Idéer för vardagen<br>Samtalspartner och kompisar<br>Kaffe och te</p><p>Servicetorg för äldre måndagen 9.12 kl. 9–14<br>Malms kulturhus – Nedre Malms torg 1<br>Fritt inträde!</p>", "en": "<p>The free Palvelutori service concept offers encounters, meaningful activities and information on leisure opportunities in the area.</p><p>Associations and operators in the area present their services, and you have the chance to ask them questions and try out the options they offer. Come and see, and bring your friend with you!</p><p><b>Inspiring programme:</b><br>Speech by Jorma Uotinen<br>Senior disco by DJ Börje<br>Moments of dance by dance artist Kaija Räty<br>Karate for seniors<br>Chair exercises<br>Handcrafting workshop by the Adult Education Centre<br>Tips for physical activities<br>Things to do in your area<br>Ideas for everyday life<br>People to talk and spend time with<br>Coffee and tea</p><p>The Palvelutori senior service event on Monday, 9 December from 9 a.m. to 2 p.m.<br>Malmitalo, Ala-Malmin tori 1<br>Free entrance!</p>" }, "provider": null, "name": { "fi": "Seniorien palvelutori – löydä oma tapasi liikkua!", "sv": "Servicetorget för äldre – hitta ditt sätt att motionera!", "en": "The Palvelutori senior service event" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64718/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19452, "next": "